CraftTweaker support
desht opened this issue ยท 4 comments
Following machines' recipes need CraftTweaker support for modifying them:
- Pressure Chamber
- Thermopneumatic Processing Plant
- Assembly controller
- Refinery?
Once PNC:R has its first release (pretty soon!), I'll see if I can get this information into the wiki at https://crafttweaker.readthedocs.io/.
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()
PR raised at CraftTweaker/CraftTweaker-Documentation#27 for docs inclusion. Waiting on that, then this issue can be closed.
Docs are now available at http://crafttweaker.readthedocs.io/