Home Getting Started With Scripts Using this wiki Commands CTGUI Global functions Bracket Handlers
Modtweaker

Botania Brewing

The Brew package is used for adding or removing recipes to/from the Botania Brewing Stand.

Calling

You can call the Brew package using mods.botania.Brew

Brew Names

To use this Package, you need to know botania’s registered Brew Names.
You can find them using /ct botbrews.

Recipe addition

script.zs
//mods.botania.Brew.addRecipe(IIngredient[] input, String brewName);
mods.botania.Brew.addRecipe([<minecraft:nether_wart>, <minecraft:reeds>, <minecraft:redstone>], "speed");

Recipe removal

script.zs
//mods.botania.Brew.removeRecipe(String brewName);
mods.botania.Brew.removeRecipe("absorption");