Difference between revisions of "ModTweaker:Botania Support"

From MineTweaker 3
Jump to: navigation, search
m (25 revisions imported)
 
(12 intermediate revisions by one other user not shown)
Line 2: Line 2:
  
 
The following handlers are supported:
 
The following handlers are supported:
 +
* Botanical Brewing
 
* Elven Trade
 
* Elven Trade
 +
* Lexica Botania: [[ModTweaker:Botania Support:Lexica Botania|Lexica Botania Support]]
 
* Mana Infusion
 
* Mana Infusion
* Orechid (0.5+)
+
* Orechid
* Petal Apothecary
+
* Pure Daisy
 
* Rune Altar
 
* Rune Altar
* 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:  
  
  // Elven Trade
+
Parameters marked as <span style="color:red">red</span> are optional and can be left out
 +
 +
//Botanical Brewing
 +
//InputArray, BrewString
 +
mods.botania.Brew.addRecipe([<minecraft:nether_wart>, <minecraft:reeds>, <minecraft:redstone>], "speed");
 +
//BrewString
 +
mods.botania.Brew.removeRecipe("absorption");
 +
 +
  //Elven Trade
 
  //OutputStack, InputArray
 
  //OutputStack, InputArray
  mods.botania.ElvenTrade.addRecipe(<minecraft:dirt>, [<Botania:manaCookie>, <ore:oreIron>]);
+
  mods.botania.ElvenTrade.addRecipe(<Botania:flower:4>, [<minecraft:yellow_flower>]);
 
  //OutputStack
 
  //OutputStack
  mods.botania.ElvenTrade.removeRecipe(<minecraft:stick>);
+
  mods.botania.ElvenTrade.removeRecipe(<Botania:dreamwood>);
 
   
 
   
  // Mana Infusion
+
  //Mana Infusion/Alchemy/Conjuration
 
  //OutputStack, InputStack, ManaCost
 
  //OutputStack, InputStack, ManaCost
  mods.botania.ManaInfusion.addInfusion(<minecraft:fishing_rod>, <minecraft:dirt>, 2000);
+
  mods.botania.ManaInfusion.addInfusion(<minecraft:golden_apple:1>, <minecraft:golden_apple>, 50000);
  mods.botania.ManaInfusion.addAlchemy(<minecraft:planks>, <minecraft:stone>, 150);
+
  mods.botania.ManaInfusion.addAlchemy(<minecraft:sand> * 4, <minecraft:sandstone:*>, 10);
  mods.botania.ManaInfusion.addConjuration(<Botania:manaCookie>, <minecraft:fishing_rod>, 1500);
+
  mods.botania.ManaInfusion.addConjuration(<minecraft:sand:1> * 2, <minecraft:sand:1>, 5);
 
  //OutputStack
 
  //OutputStack
  mods.botania.ManaInfusion.removeRecipe(<minecraft:planks>);
+
mods.botania.ManaInfusion.removeRecipe(<Botania:manaResource>); //Infusion
 +
mods.botania.ManaInfusion.removeRecipe(<minecraft:leather>); //Alchemy
 +
  mods.botania.ManaInfusion.removeRecipe(<minecraft:redstone> * 2); //Conjuration
 
   
 
   
  // Petal Apothecary - Note only petals/runes are actual valid input items
+
//Orechid
 +
//InputOredict, Weight
 +
mods.botania.Orechid.addOre(<ore:logWood>, 5000);
 +
//InputOredict
 +
mods.botania.Orechid.removeOre(<ore:oreIron>);
 +
 +
  //Petal Apothecary - Everything is a valid input item except seeds that complete the crafting process
 
  //OutputStack, InputArray
 
  //OutputStack, InputArray
  mods.botania.Apothecary.addRecipe(<minecraft:dirt:*>, [<ore:petalYellow>, <ore:petalWhite>]);
+
  mods.botania.Apothecary.addRecipe("bubbell", [<ore:petalCyan>, <ore:petalBlue>, <Botania:manaResource:6>, <Botania:manaResource:10> * 1]);
 +
mods.botania.Apothecary.addRecipe(<minecraft:melon>, [<ore:petalLime>, <ore:petalRed>, <minecraft:wheat_seeds>]);
 
  //OutputStack OR String (String is for subtiled Botania Flowers)
 
  //OutputStack OR String (String is for subtiled Botania Flowers)
 
  mods.botania.Apothecary.removeRecipe("daybloom");
 
  mods.botania.Apothecary.removeRecipe("daybloom");
 +
 +
//Pure Daisy
 +
//InputBlock, OutputBlock
 +
mods.botania.PureDaisy.addRecipe(<minecraft:emerald_block>, <minecraft:diamond_block>);
 +
//OutputBlock
 +
mods.botania.PureDaisy.removeRecipe(<minecraft:obsidian>);
 
   
 
   
 
  //Rune Altar
 
  //Rune Altar
 
  //OutputStack, InputArray, ManaCost
 
  //OutputStack, InputArray, ManaCost
  mods.botania.RuneAltar.addRecipe(<minecraft:fishing_rod>, [<minecraft:planks>, <ore:petalYellow>], 50);
+
  mods.botania.RuneAltar.addRecipe(<minecraft:stonebrick:2>, [<minecraft:stonebrick>, <minecraft:gunpowder>], 5);
 
  //OutputStack
 
  //OutputStack
  mods.botania.RuneAltar.removeRecipe(<minecraft:planks>);
+
  mods.botania.RuneAltar.removeRecipe(<Botania:rune>);
 
+
===ModTweaker 0.5+===
+
// 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>);
+
  
 +
== Commands Supported ==
 +
Prints are stored in the minetweaker log in the minecraft directory.
 +
/minetweaker botania [HANDLER] - Outputs a list of all Botania recipes
 +
/minetweaker botaniaBrews - Outputs a list of keys for botania brews
 +
/minetweaker botaniaOrechid - Outputs a list of keys for botania orechid weights
 
{{ModTweakerNavigation}}
 
{{ModTweakerNavigation}}

Latest revision as of 14:36, 12 September 2023

Handlers Supported

The following handlers are supported:

  • Botanical Brewing
  • Elven Trade
  • Lexica Botania: Lexica Botania Support
  • Mana Infusion
  • Orechid
  • Pure Daisy
  • Rune Altar

Each of these handlers can have recipes added or removed:

Parameters marked as red are optional and can be left out

//Botanical Brewing
//InputArray, BrewString
mods.botania.Brew.addRecipe([<minecraft:nether_wart>, <minecraft:reeds>, <minecraft:redstone>], "speed");
//BrewString
mods.botania.Brew.removeRecipe("absorption"); 

//Elven Trade
//OutputStack, InputArray
mods.botania.ElvenTrade.addRecipe(<Botania:flower:4>, [<minecraft:yellow_flower>]);
//OutputStack
mods.botania.ElvenTrade.removeRecipe(<Botania:dreamwood>);

//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

//Orechid
//InputOredict, Weight
mods.botania.Orechid.addOre(<ore:logWood>, 5000);
//InputOredict
mods.botania.Orechid.removeOre(<ore:oreIron>);

//Petal Apothecary - Everything is a valid input item except seeds that complete the crafting process
//OutputStack, InputArray
mods.botania.Apothecary.addRecipe("bubbell", [<ore:petalCyan>, <ore:petalBlue>, <Botania:manaResource:6>, <Botania:manaResource:10> * 1]);
mods.botania.Apothecary.addRecipe(<minecraft:melon>, [<ore:petalLime>, <ore:petalRed>, <minecraft:wheat_seeds>]);
//OutputStack OR String (String is for subtiled Botania Flowers)
mods.botania.Apothecary.removeRecipe("daybloom");

//Pure Daisy
//InputBlock, OutputBlock
mods.botania.PureDaisy.addRecipe(<minecraft:emerald_block>, <minecraft:diamond_block>);
//OutputBlock
mods.botania.PureDaisy.removeRecipe(<minecraft:obsidian>);

//Rune Altar
//OutputStack, InputArray, ManaCost
mods.botania.RuneAltar.addRecipe(<minecraft:stonebrick:2>, [<minecraft:stonebrick>, <minecraft:gunpowder>], 5);
//OutputStack
mods.botania.RuneAltar.removeRecipe(<Botania:rune>);

Commands Supported

Prints are stored in the minetweaker log in the minecraft directory.

/minetweaker botania [HANDLER] - Outputs a list of all Botania recipes
/minetweaker botaniaBrews - Outputs a list of keys for botania brews
/minetweaker botaniaOrechid - Outputs a list of keys for botania orechid weights



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