-
Notifications
You must be signed in to change notification settings - Fork 50
Home
desht edited this page Nov 17, 2017
·
21 revisions
Thanks https://github.com/Zixxl for getting CraftTweaker integrated!
Supported CraftTweaker commands:
-
Assembly - mods.pneumaticcraft.assembly
-
Laser
addLaserRecipe(IItemStack input, IItemStack output)
removeLaserRecipe(IIngredient output)
removeAllLaserRecipes()
-
Drill
addDrillRecipe(IItemStack input, IItemStack output)
removeDrillRecipe(IIngredient output)
removeAllDrillRecipes()
-
DrillLaser
addDrillLaserRecipe(IItemStack input, IItemStack output)
removeDrillLaserRecipe(IIngredient output)
removeAllDrillRecipes()
-
Common
removeAllRecipes()
-
Laser
-
Heat Frame Cooling - mods.pneumaticcraft.heatframecooling
addRecipe(IItemStack input, IItemStack output)
addRecipe(IOreDictEntry input, IItemStack output)
removeRecipe(IIngredient output)
removeAllRecipes()
-
Pressure Chamber - mods.pneumaticcraft.pressurechamber
addRecipe(IIngredient[] input, double pressure, IItemStack[] output)
removeRecipe(IIngredient[] output)
removeAllRecipes()
-
Refinery - mods.pneumaticcraft.refinery
addRecipe(ILiquidStack input, ILiquidStack[] outputs)
removeRecipe(IIngredient[] outputs)
removeRecipes(ILiquidStack input)
removeAllRecipes()
-
Thermopneumatic Processing Plant - mods.pneumaticcraft.thermopneumaticprocessingplant
addRecipe(IItemStack itemInput, double pressure, double temperature, ILiquidStack output)
addRecipe(ILiquidStack liquidInput, IItemStack itemInput, double pressure, double temperature, ILiquidStack output)
removeRecipe(IIngredient output)
removeAllRecipes()
mods.pneumaticcraft.refinery.addRecipe(<liquid:lava> * 10, [<liquid:water> * 5, <liquid:pyrotheum> * 1]);
mods.pneumaticcraft.pressurechamber.addRecipe([<ore:ingotGold> * 2, <item:apple>], 1.5, [<item:golden_apple>]);
mods.pneumaticcraft.assembly.addLaserRecipe(<item:ingot_iron_compressed> * 2, <item:compressed_iron_gear>);
// temperature is in degrees Kelvin: 273K = 0C
mods.pneumaticcraft.thermopneumaticprocessingplant.addRecipe(<liquid:water>, <item:redstone>, 3.0, 473, <liquid:redstone>); // TE destabilized redstone?
mods.pneumaticcraft.heatframecooling.addRecipe(<item:slimeball>, <item:snowball>);