ModTweaker/test_scripts/botania.zs
Brennan Ward fbb7b33866 Botania Support (#556)
* It turns on and it might work idk

* actually register

might need to be moved to @ZenRegister but I don't really understand
that rn

* move to @ZenRegister

* names

* fix removals being broken entirely and add tests

I think jared is going to hit me with a hammer for not using the late
system in place, but I tried rewriting the IActions to work like that
and uh... Fire everywhere.

* runnable was a better idea

* manually log stuff

* remove printlns from commands

also format because everything is a mess right now between old/new
formats.  Only formats the botania package.

* Add describes

also switches messages to links to the crt log

* minor issue
2017-12-13 13:08:18 +02:00

39 lines
No EOL
2.2 KiB
Text

mods.botania.Apothecary.addRecipe(<minecraft:apple>, [<minecraft:stone>, <minecraft:nether_star>]);
mods.botania.Apothecary.addRecipe("hydroangeas", [<minecraft:apple>, <minecraft:cobblestone>]);
mods.botania.Apothecary.removeRecipe(<botania:specialflower>.withTag({type: "fallenKanade"}));
mods.botania.Apothecary.removeRecipe("thermalily");
mods.botania.Brew.addRecipe([<minecraft:apple>, <minecraft:nether_star>], "healing");
mods.botania.Brew.removeRecipe("resistance");
mods.botania.ElvenTrade.addRecipe([<minecraft:apple>], [<minecraft:nether_star>]);
mods.botania.ElvenTrade.removeRecipe(<botania:quartz:5>);
mods.botania.ManaInfusion.addInfusion(<minecraft:apple>, <minecraft:nether_star>, 140);
mods.botania.ManaInfusion.addAlchemy(<minecraft:stone>, <minecraft:bookshelf>, 40);
mods.botania.ManaInfusion.addConjuration(<minecraft:bookshelf>, <minecraft:book>, 500);
mods.botania.ManaInfusion.removeRecipe(<minecraft:ice>);
mods.botania.Orechid.addOre(<ore:blockIron>, 40000);
mods.botania.Orechid.addOre("blockQuartz", 99999);
mods.botania.Orechid.removeOre(<ore:oreCopper>);
mods.botania.Orechid.removeOre("oreRedstone");
mods.botania.PureDaisy.addRecipe(<minecraft:leaves>, <minecraft:red_flower>, 4);
mods.botania.PureDaisy.addRecipe(<minecraft:beacon>, <minecraft:torch>);
mods.botania.PureDaisy.removeRecipe(<botania:livingwood>);
mods.botania.RuneAltar.addRecipe(<minecraft:apple>, [<minecraft:nether_star>, <minecraft:beacon>, <minecraft:stone>], 40);
mods.botania.RuneAltar.removeRecipe(<botania:rune>);
mods.botania.Lexicon.addCategory("mtdev");
mods.botania.Lexicon.addEntry("deventry", "mtdev", <minecraft:nether_star>);
mods.botania.Lexicon.setEntryKnowledgeType("deventry", "alfheim");
mods.botania.Lexicon.addTextPage("devpage", "deventry", 0);
mods.botania.Lexicon.addRunePage("devpage2", "deventry", 1, [<minecraft:apple>], [[<minecraft:nether_star>, <minecraft:beacon>, <minecraft:stone>]], [40]);
mods.botania.Lexicon.addPetalPage("devpage3", "deventry", 2, [<minecraft:apple>], [[<minecraft:stone>, <minecraft:nether_star>]]);
mods.botania.Lexicon.removeCategory("botania.category.generationFlowers");
mods.botania.Lexicon.removeEntry("botania.entry.relics");
//This lexicon stuff is tiring. So it's unfinished.