Difference between revisions of "ModTweaker:Botania Support"
From MineTweaker3 Wiki
| Line 2: | Line 2: | ||
The following handlers are supported: | The following handlers are supported: | ||
| − | * | + | * Petal Apothecary |
* Mana Infusion | * Mana Infusion | ||
| + | * Rune Altar | ||
* Orechid | * Orechid | ||
| − | * | + | * Elven Trade |
| − | + | ||
* 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: | ||
| − | // | + | //Petal Apothecary - Note only petals/runes are actual valid input items |
//OutputStack, InputArray | //OutputStack, InputArray | ||
| − | mods.botania. | + | mods.botania.Apothecary.addRecipe(<minecraft:melon>, [<ore:petalGreen>, <ore:petalRed>, <ore:petalRed>]); |
| − | //OutputStack | + | //OutputStack OR String (String is for subtiled Botania Flowers) |
| − | mods.botania. | + | mods.botania.Apothecary.removeRecipe("daybloom"); |
| − | // Mana Infusion | + | //Mana Infusion/Alchemy/Conjuration |
//OutputStack, InputStack, ManaCost | //OutputStack, InputStack, ManaCost | ||
| − | mods.botania.ManaInfusion.addInfusion(<minecraft: | + | mods.botania.ManaInfusion.addInfusion(<minecraft:golden_apple:1>, <minecraft:golden_apple>, 50000); |
| − | mods.botania.ManaInfusion.addAlchemy(<minecraft: | + | mods.botania.ManaInfusion.addAlchemy(<minecraft:sand> * 4, <minecraft:sandstone:*>, 10); |
| − | mods.botania.ManaInfusion.addConjuration(< | + | mods.botania.ManaInfusion.addConjuration(<minecraft:sand:1> * 2, <minecraft:sand:1>, 5); |
//OutputStack | //OutputStack | ||
| − | mods.botania.ManaInfusion.removeRecipe(< | + | mods.botania.ManaInfusion.removeRecipe(<Botania:manaResource>); //Infusion |
| − | + | mods.botania.ManaInfusion.removeRecipe(<minecraft:leather>); //Alchemy | |
| − | + | mods.botania.ManaInfusion.removeRecipe(<minecraft:redstone> * 2); //Conjuration | |
| − | + | ||
| − | mods.botania. | + | |
| − | + | ||
| − | mods.botania. | + | |
//Rune Altar | //Rune Altar | ||
//OutputStack, InputArray, ManaCost | //OutputStack, InputArray, ManaCost | ||
| − | mods.botania.RuneAltar.addRecipe(<minecraft: | + | mods.botania.RuneAltar.addRecipe(<minecraft:stonebrick:2>, [<minecraft:stonebrick>, <minecraft:gunpowder>], 5); |
//OutputStack | //OutputStack | ||
| − | mods.botania.RuneAltar.removeRecipe(< | + | mods.botania.RuneAltar.removeRecipe(<Botania:rune>); |
| − | // Orechid | + | //Orechid |
| − | // | + | //OreDictString, Weight //Coal Ore's Weight is 46525, Iron Ore's is 20665, Diamond Ore's is 1265 |
| − | mods.botania.Orechid.addOre(" | + | mods.botania.Orechid.addOre("plankWood", 20000); |
| − | mods.botania.Orechid.addOre(<ore: | + | mods.botania.Orechid.addOre(<ore:logWood>, 5000); |
| − | // | + | //OreDictString |
| − | mods.botania.Orechid.removeOre("oreCoal"); | + | #mods.botania.Orechid.removeOre("oreCoal"); |
| − | mods.botania.Orechid.removeOre(<ore:oreIron>); | + | #mods.botania.Orechid.removeOre(<ore:oreIron>); |
| − | + | ||
| + | //Elven Trade | ||
| + | //OutputStack, InputArray | ||
| + | mods.botania.ElvenTrade.addRecipe(<Botania:flower:4>, [<minecraft:yellow_flower>]); | ||
| + | //OutputStack | ||
| + | mods.botania.ElvenTrade.removeRecipe(<Botania:dreamwood>); | ||
{{ModTweakerNavigation}} | {{ModTweakerNavigation}} | ||
Revision as of 10:33, 1 February 2015
Handlers Supported
The following handlers are supported:
- Petal Apothecary
- Mana Infusion
- Rune Altar
- Orechid
- Elven Trade
- Lexica Botania (0.7+) : Lexica Botania Support
Each of these handlers can have recipes added or removed:
//Petal Apothecary - Note only petals/runes are actual valid input items
//OutputStack, InputArray
mods.botania.Apothecary.addRecipe(<minecraft:melon>, [<ore:petalGreen>, <ore:petalRed>, <ore:petalRed>]);
//OutputStack OR String (String is for subtiled Botania Flowers)
mods.botania.Apothecary.removeRecipe("daybloom");
//Mana Infusion/Alchemy/Conjuration
//OutputStack, InputStack, ManaCost
mods.botania.ManaInfusion.addInfusion(<minecraft:golden_apple:1>, <minecraft:golden_apple>, 50000);
mods.botania.ManaInfusion.addAlchemy(<minecraft:sand> * 4, <minecraft:sandstone:*>, 10);
mods.botania.ManaInfusion.addConjuration(<minecraft:sand:1> * 2, <minecraft:sand:1>, 5);
//OutputStack
mods.botania.ManaInfusion.removeRecipe(<Botania:manaResource>); //Infusion
mods.botania.ManaInfusion.removeRecipe(<minecraft:leather>); //Alchemy
mods.botania.ManaInfusion.removeRecipe(<minecraft:redstone> * 2); //Conjuration
//Rune Altar
//OutputStack, InputArray, ManaCost
mods.botania.RuneAltar.addRecipe(<minecraft:stonebrick:2>, [<minecraft:stonebrick>, <minecraft:gunpowder>], 5);
//OutputStack
mods.botania.RuneAltar.removeRecipe(<Botania:rune>);
//Orechid
//OreDictString, Weight //Coal Ore's Weight is 46525, Iron Ore's is 20665, Diamond Ore's is 1265
mods.botania.Orechid.addOre("plankWood", 20000);
mods.botania.Orechid.addOre(<ore:logWood>, 5000);
//OreDictString
#mods.botania.Orechid.removeOre("oreCoal");
#mods.botania.Orechid.removeOre(<ore:oreIron>);
//Elven Trade
//OutputStack, InputArray
mods.botania.ElvenTrade.addRecipe(<Botania:flower:4>, [<minecraft:yellow_flower>]);
//OutputStack
mods.botania.ElvenTrade.removeRecipe(<Botania:dreamwood>);
| 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 |