2026年1月25日小於 1 分鐘
物品融化
語法
melting(result, ingredient)參數說明
| 參數 | 類型 | 說明 | 預設值 |
|---|---|---|---|
result | FluidStack | 流體輸出 | 必填 |
ingredient | ItemStack | 物品輸入 | 必填 |
方法說明
無特殊方法
ServerEvents.recipes((event) => {
const { tconstruct } = event.recipes;
tconstruct.melting("tconstruct:molten_gold", "minecraft:gold_ingot");
tconstruct.melting("tconstruct:molten_gold", "minecraft:gold_ingot")
.temperature(1200);
.time(200);
});