Difference between revisions of "ModTweaker:Railcraft Support"
From MineTweaker 3
m (5 revisions imported) |
|||
(2 intermediate revisions by one other user not shown) | |||
Line 9: | Line 9: | ||
Each of these handlers can have recipes added or removed: | Each of these handlers can have recipes added or removed: | ||
− | //Blast Furnace | + | Parameters marked as <span style="color:red">red</span> are optional and can be left out |
− | //InputStack, matchDamage, matchNBT, | + | |
− | mods.railcraft.BlastFurnace.addRecipe(< | + | //Blast Furnace |
+ | //InputStack, matchDamage, matchNBT, Time in Ticks, OutputStack | ||
+ | mods.railcraft.BlastFurnace.addRecipe(<Railcraft:lantern.metal>, false, false, 130, <Railcraft:lantern.metal:5>); | ||
+ | //OutputStack | ||
+ | mods.railcraft.BlastFurnace.removeRecipe(<Railcraft:cube:2>); | ||
+ | //InputStack | ||
+ | furnace.setFuel(<minecraft:tnt>, 200000); | ||
+ | mods.railcraft.BlastFurnace.addFuel(<minecraft:tnt>) | ||
//OutputStack | //OutputStack | ||
− | mods.railcraft.BlastFurnace. | + | mods.railcraft.BlastFurnace.removeFuel(<Railcraft:fuel.coke>); |
− | //Coke | + | //Coke Oven |
− | // | + | //OutputStack, OutputFluid, InputStack, Time in Ticks |
− | mods.railcraft.CokeOven.addRecipe(< | + | mods.railcraft.CokeOven.addRecipe(<Railcraft:post>, <liquid:creosote> * 100, <minecraft:fence>, 400); |
//OutputStack | //OutputStack | ||
− | mods.railcraft.CokeOven.removeRecipe(< | + | mods.railcraft.CokeOven.removeRecipe(<minecraft:coal:1>); |
− | // | + | //Rock Crusher |
− | //InputStack, matchDamage, matchNBT, | + | //InputStack, matchDamage, matchNBT, OutputArray, ChanceArray |
− | mods.railcraft.RockCrusher.addRecipe(<minecraft: | + | mods.railcraft.RockCrusher.addRecipe(<minecraft:piston>, false, false, [<minecraft:cobblestone> * 3, <minecraft:planks> * 2, <minecraft:redstone>, <minecraft:iron_ingot>], [0.9, 0.8, 0.4, 0.4]); |
//InputStack | //InputStack | ||
mods.railcraft.RockCrusher.removeRecipe(<minecraft:stone>); | mods.railcraft.RockCrusher.removeRecipe(<minecraft:stone>); | ||
− | //Rolling | + | //Rolling Machine |
− | //OutputStack, | + | //OutputStack, InputArray |
− | mods.railcraft.Rolling.addShaped(<minecraft: | + | mods.railcraft.Rolling.addShaped(<minecraft:light_weighted_pressure_plate>, [[<minecraft:gold_nugget>, <minecraft:gold_nugget>, null], |
− | <minecraft: | + | [<minecraft:gold_nugget>, <minecraft:gold_nugget>, null], |
+ | [null, null, null]]); | ||
+ | //OutputStack, InputArray | ||
+ | mods.railcraft.Rolling.addShapeless(<Railcraft:routing.ticket.gold> * 2, [<minecraft:paper>, <minecraft:gold_nugget>]); | ||
//OutputStack | //OutputStack | ||
− | mods.railcraft.Rolling.removeRecipe(<Railcraft:part. | + | mods.railcraft.Rolling.removeRecipe(<Railcraft:part.plate:1>); |
+ | == Commands Supported == | ||
+ | Prints are stored in the minetweaker log in the minecraft directory. | ||
+ | /minetweaker railcraft[HANDLER] - Outputs a list of all Railcraft recipes | ||
{{ModTweakerNavigation}} | {{ModTweakerNavigation}} |
Latest revision as of 14:36, 12 September 2023
Handlers Supported
The following handlers are supported:
- Blast Furnace
- Coke Oven
- Rock Crusher
- Rolling Machine
Each of these handlers can have recipes added or removed:
Parameters marked as red are optional and can be left out
//Blast Furnace
//InputStack, matchDamage, matchNBT, Time in Ticks, OutputStack
mods.railcraft.BlastFurnace.addRecipe(<Railcraft:lantern.metal>, false, false, 130, <Railcraft:lantern.metal:5>);
//OutputStack
mods.railcraft.BlastFurnace.removeRecipe(<Railcraft:cube:2>);
//InputStack
furnace.setFuel(<minecraft:tnt>, 200000);
mods.railcraft.BlastFurnace.addFuel(<minecraft:tnt>)
//OutputStack
mods.railcraft.BlastFurnace.removeFuel(<Railcraft:fuel.coke>);
//Coke Oven
//OutputStack, OutputFluid, InputStack, Time in Ticks
mods.railcraft.CokeOven.addRecipe(<Railcraft:post>, <liquid:creosote> * 100, <minecraft:fence>, 400);
//OutputStack
mods.railcraft.CokeOven.removeRecipe(<minecraft:coal:1>);
//Rock Crusher
//InputStack, matchDamage, matchNBT, OutputArray, ChanceArray
mods.railcraft.RockCrusher.addRecipe(<minecraft:piston>, false, false, [<minecraft:cobblestone> * 3, <minecraft:planks> * 2, <minecraft:redstone>, <minecraft:iron_ingot>], [0.9, 0.8, 0.4, 0.4]);
//InputStack
mods.railcraft.RockCrusher.removeRecipe(<minecraft:stone>);
//Rolling Machine
//OutputStack, InputArray
mods.railcraft.Rolling.addShaped(<minecraft:light_weighted_pressure_plate>, [[<minecraft:gold_nugget>, <minecraft:gold_nugget>, null],
[<minecraft:gold_nugget>, <minecraft:gold_nugget>, null],
[null, null, null]]);
//OutputStack, InputArray
mods.railcraft.Rolling.addShapeless(<Railcraft:routing.ticket.gold> * 2, [<minecraft:paper>, <minecraft:gold_nugget>]);
//OutputStack
mods.railcraft.Rolling.removeRecipe(<Railcraft:part.plate:1>);
Commands Supported
Prints are stored in the minetweaker log in the minecraft directory.
/minetweaker railcraft[HANDLER] - Outputs a list of all Railcraft recipes
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 |