/* SevTech: Ages Pneumatic Craft Script This script handles custom integration control to a mod. Note: These scripts are created and for the usage in SevTech: Ages and other modpacks curated by DarkPacks. You can use these scripts for reference and for learning but not for copying and pasting and claiming as your own. */ import mods.pneumaticcraft.assembly as Assembly; import mods.pneumaticcraft.liquidfuel as LiquidFuel; import mods.pneumaticcraft.refinery as Refinery; import mods.pneumaticcraft.thermopneumaticprocessingplant as ThermopneumaticProcessingPlant; import mods.pneumaticcraft.pressurechamber as PressureChamber; /* Support: Fuels: http://crafttweaker.readthedocs.io/en/latest/#Mods/PneumaticCraft_Repressurized/LiquidFuels/ Assemby: http://crafttweaker.readthedocs.io/en/latest/#Mods/PneumaticCraft_Repressurized/Assembly/ */ function init() { // Remove all recipes from the plant. ThermopneumaticProcessingPlant.removeAllRecipes(); // Remove all recipes from the refinery. Refinery.removeAllRecipes(); /* Fuel (Default) Notes: LPG - 1800 Gasoline - 1500 Kerosene - 1100 Diesel - 700 */ // Remove all the Fuels. LiquidFuel.removeAllFuels(); // Add back the fuels with our values. LiquidFuel.addFuel(, 1500 * 1000); LiquidFuel.addFuel(, 1100 * 1000); LiquidFuel.addFuel(, 700 * 1000); // Presses available in stage 4 Assembly.addDrillRecipe(, ); // Inscriber Logic Press Assembly.addDrillRecipe(, ); // Insciber Silicon Press Assembly.addDrillRecipe(, ); // Inscriber Engineering Press Assembly.addDrillRecipe(, ); // Inscriber Calculation Press // Remove Rose Red recipe Assembly.removeDrillRecipe(); // Removing coal to diamond in pressure chamber PressureChamber.removeRecipe([]); // Slime Ingot (IF) PressureChamber.addRecipe([ * 4, metals.steel.ingot.firstItem * 1], 3.5, [ * 1]); }