Minecraft Modpack
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

17 lines
1.0 KiB

// priority: 0
onEvent("recipes", event => {
event.custom({
type: "tconstruct:casting_table",
cast: { tag: "forge:leather" }, cast_consumed: true,
fluid: { tag: "forge:ender", amount: 250 },
result: "minecraft:phantom_membrane",
cooling_time: 100,
});
// event.recipes.createMixing("minecraft:phantom_membrane", [ "#forge:leather", Fluid.of("#forge:ender", 250) ]).heated();
event.recipes.createMixing("minecraft:phantom_membrane", [ "#forge:leather", Fluid.of("thermal:ender", 250) ]).heated();
event.recipes.createMixing("minecraft:phantom_membrane", [ "#forge:leather", Fluid.of("tconstruct:molten_ender", 250) ]).heated();
// event.recipes.thermal.bottler("minecraft:phantom_membrane", [ "#forge:leather", Fluid.of("#forge:ender", 250) ]);
event.recipes.thermal.bottler("minecraft:phantom_membrane", [ "#forge:leather", Fluid.of("thermal:ender", 250) ]);
event.recipes.thermal.bottler("minecraft:phantom_membrane", [ "#forge:leather", Fluid.of("tconstruct:molten_ender", 250) ]);
});