import mods.modularmachinery.RecipeBuilder; import scripts.enchantwrapper.EnchantUtil.EnchantMap; import scripts.enchantwrapper.EnchantWrapper.SuperEnchantedItem; val enchlistMjolnirWrapped as EnchantMap = EnchantMap() .add("minecraft:sharpness",31) .add("minecraft:mending",1) .add("minecraft:unbreaking",3) .add("minecraft:sweeping",4); val bot1 = RecipeBuilder.newBuilder("erefor1","cold_iron_forge",200); bot1.addItemInput(*4); bot1.addItemInput(); bot1.addItemOutput(); bot1.build(); val bot2 = RecipeBuilder.newBuilder("erefor2","cold_iron_forge",200); bot2.addItemInput(*4); bot2.addItemInput(); bot2.addItemOutput(); bot2.build(); val bot3 = RecipeBuilder.newBuilder("erefor3","cold_iron_forge",200); bot3.addItemInput(); bot3.addItemInput(); bot3.addItemOutput(); bot3.build(); val bot4 = RecipeBuilder.newBuilder("erefor4","cold_iron_forge",200); bot4.addItemInput(*4); bot4.addItemInput(); bot4.addItemOutput(); bot4.build(); val bot5 = RecipeBuilder.newBuilder("erefor5","cold_iron_forge",2000); bot5.addItemInput(*64); bot5.addItemInput(); bot5.addItemInput(*64); bot5.addItemInput(*32); bot5.addItemInput(*4); bot5.addItemInput(*2); bot5.addItemOutput(SuperEnchantedItem(.withTag({display: {Name:"§6§oMjolnir§r",Lore:["§d§oSuper-Enchanted§r"]}}), enchlistMjolnirWrapped).getItem()); bot5.build(); val bot6 = RecipeBuilder.newBuilder("erefor6","cold_iron_forge",2000); bot6.addItemInput(*64); bot6.addItemInput(); bot6.addItemOutput(.withTag({ChickenType: {id: "contenttweaker:cold_iron_chicken"}})); bot6.build(); val bot7 = RecipeBuilder.newBuilder("erefor7","cold_iron_forge",60); bot7.addItemInput(); bot7.addItemInput(); bot7.addItemOutput(); bot7.build(); val bot8 = RecipeBuilder.newBuilder("erefor8","cold_iron_forge",120); bot8.addItemInput(*2); bot8.addItemInput(); bot8.addItemInput(); bot8.addItemOutput(); bot8.build(); val bot9 = RecipeBuilder.newBuilder("erefor9","cold_iron_forge",60); bot9.addItemInput(*2); bot9.addItemInput(); bot9.addItemOutput(); bot9.build();