Difference between revisions of "Mods:Blood Magic Support"

From MineTweaker 3
Jump to: navigation, search
(Handlers Supported)
m (36 revisions imported)
 
(27 intermediate revisions by 3 users not shown)
Line 3: Line 3:
 
The following handlers are supported:
 
The following handlers are supported:
 
* Blood Altar
 
* Blood Altar
 +
* Orb Shaped/Shapeless Recipes
 
* Alchemical Chemistry Set
 
* Alchemical Chemistry Set
* Ritual of Binding
+
* Rituals : [[Mods:Blood Magic Support:Rituals|Blood Magic Ritual Support]]
* Orb Shaped/Shapeless Recipes (0.5+)
+
 
 +
'''NOTE: If a recipe calls for a TierRequired the blood orb tier that you give and the ones above it will be used.'''
  
 
Each of these handlers can have recipes added or removed:
 
Each of these handlers can have recipes added or removed:
  
  // Blood Altar Recipes
+
  Parameters marked as <span style="color:red">red</span> are optional and can be left out
//InputStack, OutputStack, TierRequired, LPRequired, DrainRate, ConsumptionRate
+
mods.bloodmagic.Altar.addRecipe(<minecraft:planks>, <minecraft:stick>, 5, 5000, 20, 20); //The last two are optional
+
//OutputStack
+
mods.bloodmagic.Altar.removeRecipe(<minecraft:stick>);
+
 
   
 
   
  // Alchemical Chemistry Set Recipes
+
  //Blood Altar
  //OutputStack, ArrayInputStacks, TierRequired, LPRequired
+
  //InputStack, OutputStack, TierRequired, LPRequired, <span style="color:red">UsageRate</span>, <span style="color:red">DrainRate</span>
  mods.bloodmagic.Alchemy.addRecipe(<minecraft:planks>, [<minecraft:stick>, <minecraft:fishing_rod>], 5, 5000);
+
  mods.bloodmagic.Altar.addRecipe(<minecraft:glowstone_dust>, <minecraft:redstone>, 3, 5000, 20, 20);
 
  //OutputStack
 
  //OutputStack
  mods.bloodmagic.Alchemy.removeRecipe(<minecraft:planks>);
+
  mods.bloodmagic.Altar.removeRecipe(<AWWayofTime:blankSlate>);
 +
 +
//Blood Orb Shaped and Shapeless Recipes
 +
//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>]);
 
   
 
   
  // Ritual of Binding Recipes
+
  //Alchemical Chemistry Set
  //InputStack, OutputStack
+
  //OutputStack, InputArray, TierRequired, LPRequired
  mods.bloodmagic.Binding.addRecipe(<minecraft:planks>, <minecraft:fishing_rod>);
+
  mods.bloodmagic.Alchemy.addRecipe(<minecraft:clay> * 2, [<minecraft:hardened_clay>, <minecraft:hardened_clay>, <minecraft:water_bucket>], 1, 100);
 
  //OutputStack
 
  //OutputStack
  mods.bloodmagic.Binding.removeRecipe(<minecraft:fishing_rod>);
+
  mods.bloodmagic.Alchemy.removeRecipe(<minecraft:ice>);
{{ModTweakerNavigation}}
+

Latest revision as of 14:36, 12 September 2023

Handlers Supported

The following handlers are supported:

NOTE: If a recipe calls for a TierRequired the blood orb tier that you give and the ones above it will be used.

Each of these handlers can have recipes added or removed:

Parameters marked as red are optional and can be left out

//Blood Altar
//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 Recipes
//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
//OutputStack, InputArray, 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>);