Files
meatballcraft/scripts/MythicProcessorDryAF.zs
T
sainagh 0a09116c6e 0.16
2024-08-18 18:25:41 -07:00

20 lines
754 B
Plaintext

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