Items
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 itemsArchive:
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
Source
View Original SourceCode 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