Files
meatballcraft/scripts/MythicProcessorDryAF.zs
T
2025-01-15 16:18:41 -08:00

25 lines
1000 B
Plaintext

import mods.modularmachinery.RecipeBuilder;
val mythdry1 = RecipeBuilder.newBuilder("mythdry1","mythic_processor_drying_rack",2);
mythdry1.addEnergyPerTickInput(40000);
mythdry1.addItemInput(<minecraft:clay_ball>);
mythdry1.addItemOutput(<tconstruct:materials:2>);
mythdry1.build();
val mythdry2 = RecipeBuilder.newBuilder("mythdry2","mythic_processor_drying_rack",2);
mythdry2.addEnergyPerTickInput(40000);
mythdry2.addItemInput(<minecraft:clay>);
mythdry2.addItemOutput(<tconstruct:dried_clay:0>);
mythdry2.build();
val mythdry3 = RecipeBuilder.newBuilder("mythdry3","mythic_processor_drying_rack",2);
mythdry3.addEnergyPerTickInput(40000);
mythdry3.addFluidInput(<fluid:milk>*1000);
mythdry3.addItemOutput(<contenttweaker:curd>);
mythdry3.build();
val mythdry4 = RecipeBuilder.newBuilder("mythdry4","mythic_processor_drying_rack",2);
mythdry4.addEnergyPerTickInput(40000);
mythdry4.addItemInput(<thaumcraft:vishroom>);
mythdry4.addItemOutput(<contenttweaker:dried_vishroom>);
mythdry4.build();