跳至主要內容

芒果凍布丁2026/7/28小於 1 分鐘

鑄件台/鑄造盆 藥水澆鑄

語法
casting_table_potion(result, bottle, fluid, cooling_time);
casting_basin_potion(result, bottle, fluid, cooling_time);
範例
ServerEvents.recipes((event) => {
  const { tconstruct } = event.recipes;

  tconstruct.casting_table_potion(
    "minecraft:potion",
    "minecraft:glass_bottle",
    "tconstruct:molten_gold",
  ); 
  tconstruct
    .casting_table_potion(
      "minecraft:potion",
      "minecraft:glass_bottle",
      "tconstruct:molten_gold",
    ) 
    .cooling_time(1.5); 

  tconstruct.casting_basin_potion(
    "minecraft:potion",
    "minecraft:glass_bottle",
    "tconstruct:molten_gold",
  ); 
  tconstruct
    .casting_basin_potion(
      "minecraft:potion",
      "minecraft:glass_bottle",
      "tconstruct:molten_gold",
    ) 
    .cooling_time(1.5); 
});
最近更新:
貢獻者: Evan Hsieh