Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #priority 10
- #loader gregtech
- import mods.gregtech.machine.MachineBuilder;
- import mods.gregtech.recipe.RecipeMapBuilder;
- import mods.gregtech.recipe.RecipeMaps;
- import mods.gregtech.recipe.RecipeMap;
- import mods.gregtech.material.MaterialStack;
- import mods.gregtech.material.Material;
- import mods.gregtech.material.MaterialRegistry;
- import mods.gregtech.StoneType;
- import mods.gregtech.material.MaterialBuilder;
- import mods.gregtech.ore.OrePrefix;
- import mods.gregtech.material.IMaterialPredicate;
- import mods.gregtech.MaterialFlag;
- import mods.gregtech.MaterialFlagBuilder;
- //Machine Init
- val equivalentExchangerRecipes as RecipeMap = RecipeMapBuilder.create("equivalent_exchanger")
- .setInputs(3)
- .setOutputs(1)
- /*.setHidden(false)
- .setDurationBar()*/
- .setFluidInputs(1)
- .setFluidOutputs(1)
- .build();
- MachineBuilder.create(32015, "equivalent_exchanger")
- .setRecipeMap(equivalentExchangerRecipes)
- .setRenderer("machines/extruder")
- .addTierRange(1, 8)
- .buildAndRegister();
- //Recipe Script
- <recipemap:equivalent_exchanger>.recipeBuilder().inputs([<contenttweaker:matter_dough>*1])
- .notConsumable([<contenttweaker:pattern_ingot>]).circuit(0)
- .outputs([<tconstruct:ingots>*1])
- .duration(80).EUt(20).buildAndRegister();
Advertisement
Add Comment
Please, Sign In to add comment