/* SevTech: Ages Table Chemical Mixer Recipes 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.modularmachinery.RecipeBuilder; import scripts.crafttweaker.utils; function init() { // Machine name var machineName = "auto_cauldron"; RecipeBuilder.newBuilder(utils.createRecipeName(machineName, "rfglue"), machineName, 128) .addEnergyPerTickInput(40) .addItemInput( * 3) .addItemOutput() .addFluidInput( * 50) .build(); RecipeBuilder.newBuilder(utils.createRecipeName(machineName, "pigmglue"), machineName, 128) .addEnergyPerTickInput(40) .addItemInput() .addItemOutput( * 2) .addFluidInput( * 50) .build(); RecipeBuilder.newBuilder(utils.createRecipeName(machineName, "wdglue"), machineName, 128) .addEnergyPerTickInput(40) .addItemInput() .addItemOutput() .addFluidInput( * 50) .build(); RecipeBuilder.newBuilder(utils.createRecipeName(machineName, "bglue"), machineName, 128) .addEnergyPerTickInput(40) .addItemInput() .addItemOutput( * 2) .addFluidInput( * 50) .build(); RecipeBuilder.newBuilder(utils.createRecipeName(machineName, "psglue"), machineName, 128) .addEnergyPerTickInput(40) .addItemInput() .addItemOutput() .addFluidInput( * 50) .build(); RecipeBuilder.newBuilder(utils.createRecipeName(machineName, "pmglue"), machineName, 128) .addEnergyPerTickInput(40) .addItemInput() .addItemOutput() .addFluidInput( * 50) .build(); RecipeBuilder.newBuilder(utils.createRecipeName(machineName, "plglue"), machineName, 128) .addEnergyPerTickInput(40) .addItemInput() .addItemOutput( * 2) .addFluidInput( * 50) .build(); RecipeBuilder.newBuilder(utils.createRecipeName(machineName, "nsludge"), machineName, 128) .addEnergyPerTickInput(40) .addItemInput() .addItemInput( * 4) .addItemOutput( * 8) .addFluidInput( * 50) .build(); RecipeBuilder.newBuilder(utils.createRecipeName(machineName, "chellfire"), machineName, 128) .addEnergyPerTickInput(40) .addItemInput( * 8) .addItemOutput() .addFluidInput( * 50) .build(); RecipeBuilder.newBuilder(utils.createRecipeName(machineName, "donut"), machineName, 128) .addEnergyPerTickInput(40) .addItemInput() .addItemInput() .addItemOutput( * 4) .addFluidInput( * 50) .build(); RecipeBuilder.newBuilder(utils.createRecipeName(machineName, "meatballs"), machineName, 128) .addEnergyPerTickInput(40) .addItemInput() .addItemOutput() .addFluidInput( * 50) .build(); }