This commit is contained in:
PietroSainaghi
2023-03-14 21:03:51 -07:00
parent ac93e323d2
commit 2a6cdb591d
2543 changed files with 171586 additions and 2726 deletions
+13
View File
@@ -0,0 +1,13 @@
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();