ComputerCraft Archive

Items

computer utility Caitlin-Sykes github

Description

-----------------------------------------------------------------------------

Installation

Copy one of these commands into your ComputerCraft terminal:

wget:wget https://raw.githubusercontent.com/Caitlin-Sykes/ComputerCraft-Scripts/main/PotionAutoBrewer/Items.lua items
Archive:wget https://cc.shobie.xyz/cc/get/gh-Caitlin-Sykes-ComputerCraft-Scripts-potionautobrewer-items items
Quick Install: wget https://cc.shobie.xyz/cc/get/gh-Caitlin-Sykes-ComputerCraft-Scripts-potionautobrewer-items Items

Usage

Run: Items

Tags

none

Source

View Original Source

Code Preview

-- ----------------------------------------------------------------------------- 
-- Items 
-- These contain dictionaries with the items that are craftable 
-- Unlike potions, these use bog standard recipes
-- -----------------------------------------------------------------------------

-- Do not edit line 6 
local Items = {}

-- Vanilla Potions Base 
Items.CREATE_UTILITIES_ITEMS = { 
    { 
        -- Void Steel Ingot
        result = "createutilities:void_steel_ingot", 
        ingredient = {"minecraft:netherite_ingot", "minecraft:ender_pearl"},
    }
}


return Items