recipes & more

This commit is contained in:
2024-09-15 14:58:52 +02:00
parent c62597984d
commit 3f4d5c95ac
25 changed files with 150 additions and 86 deletions

View File

@@ -0,0 +1,16 @@
ServerEvents.recipes(event => {
event.recipes.enderio.sag_milling(["createsifter:dust"], "sand")
.energy(500)
.bonus(EnderIOBonusType.CHANCE_ONLY);
event.recipes.enderio.sag_milling(["createsifter:crushed_end_stone"], "end_stone")
.energy(500)
.bonus(EnderIOBonusType.CHANCE_ONLY);
event.recipes.enderio.alloy_smelting(
Item.of("create:brass_ingot"),
[Ingredient.of("minecraft:copper_ingot"), "create:zinc_ingot"]
).energy(10000);//.experience(3);
})