Difference between revisions of "Mods:Blood Magic Support"
From MineTweaker3 Wiki
| Line 1: | Line 1: | ||
| − | == | + | == Handlers Supported == |
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| + | The following handlers are supported: | ||
| + | * Blood Altar | ||
| + | * Alchemical Chemistry Set | ||
| + | * Ritual of Binding | ||
| − | + | Each of these handlers can have recipes added or removed: | |
| − | + | import mods.bloodmagic.Altar; | |
| − | + | import mods.bloodmagic.Alchemy; | |
| − | + | import mods.bloodmagic.Binding; | |
| − | + | ||
| − | + | // Blood Altar Recipes | |
| − | + | //InputStack, OutputStack, TierRequired, LPRequired, DrainRate, ConsumptionRate | |
| − | + | Altar.addRecipe(<minecraft:planks>, <minecraft:stick>, 5, 5000, 20, 20); //The last two are optional | |
| − | + | //OutputStack | |
| − | + | Altar.removeRecipe(<minecraft:stick>); | |
| − | + | ||
| − | + | // Alchemical Chemistry Set Recipes | |
| − | + | //OutputStack, ArrayInputStacks, TierRequired, LPRequired | |
| − | + | Alchemy.addRecipe(<minecraft:planks>, [<minecraft:stick>, <minecraft:fishing_rod>], 5, 5000); | |
| − | + | //OutputStack | |
| − | + | Alchemy.removeRecipe(<minecraft:planks>); | |
| − | + | ||
| − | + | // Ritual of Binding Recipes | |
| − | + | //InputStack, OutputStack | |
| − | + | Binding.addRecipe(<minecraft:planks>, <minecraft:fishing_rod>); | |
| − | + | //OutputStack | |
| − | + | Binding.removeRecipe(<minecraft:fishing_rod>); | |
Revision as of 14:21, 10 July 2014
Handlers Supported
The following handlers are supported:
- Blood Altar
- Alchemical Chemistry Set
- Ritual of Binding
Each of these handlers can have recipes added or removed:
import mods.bloodmagic.Altar; import mods.bloodmagic.Alchemy; import mods.bloodmagic.Binding; // Blood Altar Recipes //InputStack, OutputStack, TierRequired, LPRequired, DrainRate, ConsumptionRate Altar.addRecipe(<minecraft:planks>, <minecraft:stick>, 5, 5000, 20, 20); //The last two are optional //OutputStack Altar.removeRecipe(<minecraft:stick>); // Alchemical Chemistry Set Recipes //OutputStack, ArrayInputStacks, TierRequired, LPRequired Alchemy.addRecipe(<minecraft:planks>, [<minecraft:stick>, <minecraft:fishing_rod>], 5, 5000); //OutputStack Alchemy.removeRecipe(<minecraft:planks>); // Ritual of Binding Recipes //InputStack, OutputStack Binding.addRecipe(<minecraft:planks>, <minecraft:fishing_rod>); //OutputStack Binding.removeRecipe(<minecraft:fishing_rod>);