Difference between revisions of "ModTweaker:Botania Support"

From MineTweaker 3
Jump to: navigation, search
Line 7: Line 7:
 
* Petal Apothecary
 
* Petal Apothecary
 
* Rune Altar
 
* Rune Altar
* Lexica Botania(0.7+) : [[ModTweaker:Botania Support:Lexica Botania|Lexica Botania Support]]
+
* Lexica Botania (0.7+) : [[ModTweaker:Botania Support:Lexica Botania|Lexica Botania Support]]
  
 
Each of these handlers can have recipes added or removed:
 
Each of these handlers can have recipes added or removed:

Revision as of 17:35, 24 January 2015

Handlers Supported

The following handlers are supported:

  • Elven Trade
  • Mana Infusion
  • Orechid
  • Petal Apothecary
  • Rune Altar
  • Lexica Botania (0.7+) : Lexica Botania Support

Each of these handlers can have recipes added or removed:

// Elven Trade
//OutputStack, InputArray
mods.botania.ElvenTrade.addRecipe(<minecraft:dirt>, [<Botania:manaCookie>, <ore:oreIron>]);
//OutputStack
mods.botania.ElvenTrade.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.addConjuration(<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");

//Rune Altar
//OutputStack, InputArray, ManaCost
mods.botania.RuneAltar.addRecipe(<minecraft:fishing_rod>, [<minecraft:planks>, <ore:petalYellow>], 50);
//OutputStack
mods.botania.RuneAltar.removeRecipe(<minecraft:planks>);

// Orechid
// Ore Dictionary Entry, Weight
mods.botania.Orechid.addOre("blockNetherStar", 9000);
mods.botania.Orechid.addOre(<ore:shardElemental>, 9000);
// Ore Dictionary Entry
mods.botania.Orechid.removeOre("oreCoal");
mods.botania.Orechid.removeOre(<ore:oreIron>);



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