Files
meatballcraft/scripts/MythicProcessorFurnace.zs
2026-07-25 16:20:42 -05:00

55 lines
2.3 KiB
Plaintext

import mods.modularmachinery.RecipeBuilder;
val mythfurn1 = RecipeBuilder.newBuilder("mythfurn1","mythic_processor_furnace",2);
mythfurn1.addEnergyPerTickInput(60000);
mythfurn1.addItemInput(<materialpart:vibranium:ingot>);
mythfurn1.addItemInput(<materialpart:myrmitite:ingot>);
mythfurn1.addItemInput(<draconicevolution:draconic_ingot>*4);
mythfurn1.addItemInput(<iceandfire:dragonsteel_ice_ingot>);
mythfurn1.addItemInput(<iceandfire:dragonsteel_fire_ingot>);
mythfurn1.addItemOutput(<materialpart:hot_vibranium_alloy:ingot>*6);
mythfurn1.build();
val mythfurn2 = RecipeBuilder.newBuilder("mythfurn2","mythic_processor_furnace",2);
mythfurn2.addEnergyPerTickInput(60000);
mythfurn2.addItemInput(<materialpart:vibranium:ingot>);
mythfurn2.addItemInput(<contenttweaker:arc_residue>*3);
mythfurn2.addItemInput(<iceandfire:dragonsteel_ice_ingot>);
mythfurn2.addItemInput(<iceandfire:dragonsteel_fire_ingot>);
mythfurn2.addItemInput(<ore:ingotAluminum>*6);
mythfurn2.addItemOutput(<materialpart:hot_vibranium_alloy:ingot>*12);
mythfurn2.build();
val mythfurn3 = RecipeBuilder.newBuilder("mythfurn3","mythic_processor_furnace",2);
mythfurn3.addEnergyPerTickInput(60000);
mythfurn3.addItemInput(<contenttweaker:sacrifice_metal_clump>);
mythfurn3.addItemOutput(<materialpart:sacrifice_metal:ingot>);
mythfurn3.build();
val mythfurn4 = RecipeBuilder.newBuilder("mythfurn4","mythic_processor_furnace",2);
mythfurn4.addEnergyPerTickInput(60000);
mythfurn4.addItemInput(<divinerpg:shadow_bar>*16);
mythfurn4.addItemOutput(<contenttweaker:shadow_steel>*16);
mythfurn4.build();
val mythfurn5 = RecipeBuilder.newBuilder("mythfurn5","mythic_processor_furnace",2);
mythfurn5.addEnergyPerTickInput(60000);
mythfurn5.addItemInput(<ore:dustPlutonium>);
mythfurn5.addItemOutput(<ore:ingotPlutonium>);
mythfurn5.build();
val mythfurn6 = RecipeBuilder.newBuilder("mythfurn6","mythic_processor_furnace",2);
mythfurn6.addEnergyPerTickInput(60000);
mythfurn6.addItemInput(<contenttweaker:draconian_metal_clump>);
mythfurn6.addItemOutput(<contenttweaker:draconian_metal_ingot>);
mythfurn6.build();
val mythfurn7 = RecipeBuilder.newBuilder("mythfurn7","mythic_processor_furnace",2);
mythfurn7.addEnergyPerTickInput(60000);
mythfurn7.addItemInput(<ore:logWood>);
mythfurn7.addItemOutput(<minecraft:coal:1>);
mythfurn7.build();