Difference between revisions of "ModTweaker:Botania Support"
From MineTweaker 3
(Created page with "== Handlers Supported == The following handlers are supported: * Elven Trade * Mana Infusion * Petal Apothecary * Rune Altar Each of these handlers can have recipes added or...") |
(→Handlers Supported) |
||
Line 9: | Line 9: | ||
Each of these handlers can have recipes added or removed: | Each of these handlers can have recipes added or removed: | ||
− | // Elven Trade | + | // Elven Trade |
//OutputStack, InputArray | //OutputStack, InputArray | ||
− | mods.botania.ElevenTrade.addRecipe(<minecraft:dirt | + | mods.botania.ElevenTrade.addRecipe(<minecraft:dirt>, [<Botania:manaCookie>, <ore:oreIron>]); |
//OutputStack | //OutputStack | ||
mods.botania.ElevenTrade.removeRecipe(<minecraft:stick>); | mods.botania.ElevenTrade.removeRecipe(<minecraft:stick>); | ||
− | // Mana Infusion | + | // Mana Infusion |
//OutputStack, InputStack, ManaCost | //OutputStack, InputStack, ManaCost | ||
mods.botania.ManaInfusion.addInfusion(<minecraft:fishing_rod>, <minecraft:dirt>, 2000); | mods.botania.ManaInfusion.addInfusion(<minecraft:fishing_rod>, <minecraft:dirt>, 2000); | ||
Line 23: | Line 23: | ||
mods.botania.ManaInfusion.removeRecipe(<minecraft:planks>); | mods.botania.ManaInfusion.removeRecipe(<minecraft:planks>); | ||
− | // Petal Apothecary | + | // Petal Apothecary - Note only petals/runes are actual valid input items |
//OutputStack, InputArray | //OutputStack, InputArray | ||
mods.botania.Apothecary.addRecipe(<minecraft:dirt:*>, [<ore:petalYellow>, <ore:petalWhite>]); | mods.botania.Apothecary.addRecipe(<minecraft:dirt:*>, [<ore:petalYellow>, <ore:petalWhite>]); | ||
Line 29: | Line 29: | ||
mods.botania.Apothecary.removeRecipe("daybloom"); | mods.botania.Apothecary.removeRecipe("daybloom"); | ||
{{ModTweakerNavigation}} | {{ModTweakerNavigation}} | ||
+ | |||
+ | //Rune Altar | ||
+ | //OutputStack, InputArray, ManaCost | ||
+ | mods.botania.RuneAltar.addRecipe(<minecraft:fishing_rod>, [<minecraft:planks>, <ore:petalYellow>], 50); | ||
+ | //OutputStack | ||
+ | mods.botania.RuneAltar.removeRecipe(<minecraft:planks>); |
Revision as of 22:11, 10 July 2014
Handlers Supported
The following handlers are supported:
- Elven Trade
- Mana Infusion
- Petal Apothecary
- Rune Altar
Each of these handlers can have recipes added or removed:
// Elven Trade //OutputStack, InputArray mods.botania.ElevenTrade.addRecipe(<minecraft:dirt>, [<Botania:manaCookie>, <ore:oreIron>]); //OutputStack mods.botania.ElevenTrade.removeRecipe(<minecraft:stick>); // Mana Infusion //OutputStack, InputStack, ManaCost mods.botania.ManaInfusion.addInfusion(<minecraft:fishing_rod>, <minecraft:dirt>, 2000); mods.botania.ManaInfusion.addAlchemy(<minecraft:planks>, <minecraft:stone>, 150); mods.botania.ManaInfusion.addAlchemy(<Botania:manaCookie>, <minecraft:fishing_rod>, 1500); //OutputStack mods.botania.ManaInfusion.removeRecipe(<minecraft:planks>); // Petal Apothecary - Note only petals/runes are actual valid input items //OutputStack, InputArray mods.botania.Apothecary.addRecipe(<minecraft:dirt:*>, [<ore:petalYellow>, <ore:petalWhite>]); //OutputStack OR String (String is for subtiled Botania Flowers) mods.botania.Apothecary.removeRecipe("daybloom");
ModTweaker Supported Mods |
---|
Applied Energistics 2 | Aura Cascade | Botania | Chisel 2 | Ex Nihilo | Extra Utilities | Factorization | Flaxbeard's Steam Power Support | Forestry | Mariculture | Mekanism | Metallurgy 4 | PneumaticCraft | Railcraft | Thaumcraft 4 | Thermal Expansion | Tinker's Construct |
//Rune Altar
//OutputStack, InputArray, ManaCost mods.botania.RuneAltar.addRecipe(<minecraft:fishing_rod>, [<minecraft:planks>, <ore:petalYellow>], 50); //OutputStack mods.botania.RuneAltar.removeRecipe(<minecraft:planks>);