Difference between revisions of "Mods:Blood Magic Support"
From MineTweaker 3
m (36 revisions imported) |
|||
(3 intermediate revisions by one other user not shown) | |||
Line 6: | Line 6: | ||
* Alchemical Chemistry Set | * Alchemical Chemistry Set | ||
* Rituals : [[Mods:Blood Magic Support:Rituals|Blood Magic Ritual Support]] | * Rituals : [[Mods:Blood Magic Support:Rituals|Blood Magic Ritual Support]] | ||
+ | |||
+ | '''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: | ||
Line 17: | Line 19: | ||
mods.bloodmagic.Altar.removeRecipe(<AWWayofTime:blankSlate>); | mods.bloodmagic.Altar.removeRecipe(<AWWayofTime:blankSlate>); | ||
− | //Blood Orb Shaped and Shapeless | + | //Blood Orb Shaped and Shapeless Recipes |
//OutputStack, InputArray | //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>]]); | 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>]]); | ||
Line 23: | Line 25: | ||
mods.bloodmagic.BloodOrb.addShapeless(<AWWayofTime:demonBloodShard> * 5, [<AWWayofTime:archmageBloodOrb>, <AWWayofTime:demonBloodShard>, <AWWayofTime:bloodMagicBaseItems:27>]); | mods.bloodmagic.BloodOrb.addShapeless(<AWWayofTime:demonBloodShard> * 5, [<AWWayofTime:archmageBloodOrb>, <AWWayofTime:demonBloodShard>, <AWWayofTime:bloodMagicBaseItems:27>]); | ||
− | //Alchemical Chemistry Set | + | //Alchemical Chemistry Set |
//OutputStack, InputArray, TierRequired, LPRequired | //OutputStack, InputArray, TierRequired, LPRequired | ||
mods.bloodmagic.Alchemy.addRecipe(<minecraft:clay> * 2, [<minecraft:hardened_clay>, <minecraft:hardened_clay>, <minecraft:water_bucket>], 1, 100); | mods.bloodmagic.Alchemy.addRecipe(<minecraft:clay> * 2, [<minecraft:hardened_clay>, <minecraft:hardened_clay>, <minecraft:water_bucket>], 1, 100); | ||
//OutputStack | //OutputStack | ||
mods.bloodmagic.Alchemy.removeRecipe(<minecraft:ice>); | mods.bloodmagic.Alchemy.removeRecipe(<minecraft:ice>); |
Latest revision as of 14:36, 12 September 2023
Handlers Supported
The following handlers are supported:
- Blood Altar
- Orb Shaped/Shapeless Recipes
- Alchemical Chemistry Set
- Rituals : Blood Magic Ritual Support
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>);