Difference between revisions of "Mods:Blood Magic Support"
From MineTweaker 3
(→Handlers Supported) |
(→Handlers Supported) |
||
Line 8: | Line 8: | ||
Each of these handlers can have recipes added or removed: | Each of these handlers can have recipes added or removed: | ||
− | |||
− | |||
− | |||
− | |||
// Blood Altar Recipes | // Blood Altar Recipes | ||
//InputStack, OutputStack, TierRequired, LPRequired, DrainRate, ConsumptionRate | //InputStack, OutputStack, TierRequired, LPRequired, DrainRate, ConsumptionRate | ||
− | Altar.addRecipe(<minecraft:planks>, <minecraft:stick>, 5, 5000, 20, 20); //The last two are optional | + | mods.bloodmagic.Altar.addRecipe(<minecraft:planks>, <minecraft:stick>, 5, 5000, 20, 20); //The last two are optional |
//OutputStack | //OutputStack | ||
− | Altar.removeRecipe(<minecraft:stick>); | + | mods.bloodmagic.Altar.removeRecipe(<minecraft:stick>); |
// Alchemical Chemistry Set Recipes | // Alchemical Chemistry Set Recipes | ||
//OutputStack, ArrayInputStacks, TierRequired, LPRequired | //OutputStack, ArrayInputStacks, TierRequired, LPRequired | ||
− | Alchemy.addRecipe(<minecraft:planks>, [<minecraft:stick>, <minecraft:fishing_rod>], 5, 5000); | + | mods.bloodmagic.Alchemy.addRecipe(<minecraft:planks>, [<minecraft:stick>, <minecraft:fishing_rod>], 5, 5000); |
//OutputStack | //OutputStack | ||
− | Alchemy.removeRecipe(<minecraft:planks>); | + | mods.bloodmagic. Alchemy.removeRecipe(<minecraft:planks>); |
// Ritual of Binding Recipes | // Ritual of Binding Recipes | ||
//InputStack, OutputStack | //InputStack, OutputStack | ||
− | Binding.addRecipe(<minecraft:planks>, <minecraft:fishing_rod>); | + | mods.bloodmagic.Binding.addRecipe(<minecraft:planks>, <minecraft:fishing_rod>); |
//OutputStack | //OutputStack | ||
− | Binding.removeRecipe(<minecraft:fishing_rod>); | + | mods.bloodmagic.Binding.removeRecipe(<minecraft:fishing_rod>); |
{{ModTweakerNavigation}} | {{ModTweakerNavigation}} |
Revision as of 20:27, 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:
// Blood Altar Recipes //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 //OutputStack, ArrayInputStacks, TierRequired, LPRequired mods.bloodmagic.Alchemy.addRecipe(<minecraft:planks>, [<minecraft:stick>, <minecraft:fishing_rod>], 5, 5000); //OutputStack mods.bloodmagic. Alchemy.removeRecipe(<minecraft:planks>); // Ritual of Binding Recipes //InputStack, OutputStack mods.bloodmagic.Binding.addRecipe(<minecraft:planks>, <minecraft:fishing_rod>); //OutputStack mods.bloodmagic.Binding.removeRecipe(<minecraft:fishing_rod>);
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 |