Difference between revisions of "Mods:Blood Magic Support"

From MineTweaker 3
Jump to: navigation, search
(Fixed parameter names for the altar recipes.)
Line 10: Line 10:
  
 
  //Blood Altar Recipes
 
  //Blood Altar Recipes
  //InputStack, OutputStack, TierRequired, LPRequired, UsageRate, DrainRate
+
  //InputStack, OutputStack, TierRequired, LPRequired, <pre style="color: green">UsageRate, DrainRate
  mods.bloodmagic.Altar.addRecipe(<minecraft:glowstone_dust>, <minecraft:redstone>, 3, 5000, 20, 20); //The last two are optional
+
  mods.bloodmagic.Altar.addRecipe(<minecraft:glowstone_dust>, <minecraft:redstone>, 3, 5000, 20, 20);
 
  //OutputStack
 
  //OutputStack
 
  mods.bloodmagic.Altar.removeRecipe(<AWWayofTime:blankSlate>);
 
  mods.bloodmagic.Altar.removeRecipe(<AWWayofTime:blankSlate>);

Revision as of 15:42, 31 August 2015

Handlers Supported

The following handlers are supported:

Each of these handlers can have recipes added or removed:

//Blood Altar Recipes
//InputStack, OutputStack, TierRequired, LPRequired,
UsageRate, DrainRate
 mods.bloodmagic.Altar.addRecipe(<minecraft:glowstone_dust>, <minecraft:redstone>, 3, 5000, 20, 20);
 //OutputStack
 mods.bloodmagic.Altar.removeRecipe(<AWWayofTime:blankSlate>);
 
 //Blood Orb Shaped and Shapeless //Tier equal or above defined Blood Orb will be used
 //OutputStack, InputArray
 mods.bloodmagic.BloodOrb.addShaped(<minecraft:ender_pearl>, [[<AWWayofTime:weakBloodShard>, <AWWayofTime:crystallos>,<AWWayofTime:weakBloodShard>], [<AWWayofTime:magicales>, <AWWayofTime:magicianBloodOrb>, <AWWayofTime:magicales>], [<AWWayofTime:weakBloodShard>, <AWWayofTime:crystallos>, <AWWayofTime:weakBloodShard>]]);
 //OutputStack, InputArray
 mods.bloodmagic.BloodOrb.addShapeless(<AWWayofTime:demonBloodShard> * 5, [<AWWayofTime:archmageBloodOrb>, <AWWayofTime:demonBloodShard>, <AWWayofTime:bloodMagicBaseItems:27>]);
 
 //Alchemical Chemistry Set Recipes //Tier equal or above defined Blood Orb will be used
 //OutputStack, ArrayInputStacks, TierRequired, LPRequired
 mods.bloodmagic.Alchemy.addRecipe(<minecraft:clay> * 2, [<minecraft:hardened_clay>, <minecraft:hardened_clay>, <minecraft:water_bucket>], 1, 100);
 //OutputStack
 mods.bloodmagic.Alchemy.removeRecipe(<minecraft:ice>);