PneumaticCraft Support
Handlers Supported
The following handlers are supported:
- Assembly
- Pressure Chamber Each of these handlers can have recipes added or removed:
//Assembly//Drill//InputStack, OutputStackmods.pneumaticcraft.Assembly.addDrillRecipe(<minecraft:diamond>, <minecraft:dye:6> * 6);//OutputStackmods.pneumaticcraft.Assembly.removeDrillRecipe(<minecraft:dye:1>);//Laser//InputStack, OutputStackmods.pneumaticcraft.Assembly.addLaserRecipe(<PneumaticCraft:fuelBucket>, <minecraft:lava_bucket>);//OutputStackmods.pneumaticcraft.Assembly.removeLaserRecipe(<PneumaticCraft:aphorismTile>);//Laser Drill//InputStack, OutputStackmods.pneumaticcraft.Assembly.addLaserDrillRecipe(<PneumaticCraft:airCompressor>, <PneumaticCraft:advancedAirCompressor>);//OutputStackmods.pneumaticcraft.Assembly.removeLaserDrillRecipe(<PneumaticCraft:advancedPressureTube>);
//Pressure Chamber//InputArray, PressureRequired, OutputArray, asBlockmods.pneumaticcraft.Pressure.addRecipe([<minecraft:iron_ingot>, <minecraft:iron_bars> * 4], 2, [<PneumaticCraft:compressedIronGear>], true);//OutputArraymods.pneumaticcraft.Pressure.removeRecipe([<minecraft:diamond>]);