KubeJS TFMG
模组属性评比

距离显示结果还剩5票~

路过的这位少侠,你觉得这款Mod怎么样,可否愿意来评一评它呢?登录并评比
更新日志
  • 暂无日志..

历史编辑记录更多
    管理组

      暂无管理组..

    编辑组

      暂无编辑组..

    开发组申请

      暂无开发组..

    活跃
    开源

    KubeJS TFMG

    • 支持平台: JAVA版 (JAVA Edition)
    • 运作方式: Forge
    • 运行环境: 客户端需装, 服务端需装
    • 收录时间: 1月前
    • 编辑次数: 2次
    • 最后编辑: 16天前
    • 最后推荐: 9天前
    • 支持的MC版本:
    • Mod作者/开发团队:
      显示更多成员

    0.0

    无人问津

    昨日指数: 6
    昨日平均指数: 75.469

    792

    总浏览

    --

    资料填充率


    如何下载?
    • 允许玩家使用 KubeJS 添加新的 TFMG 配方,包括铸造、蒸馏等。

      配方示例:

      ServerEvents.recipes(event => {    // Casting supports ONE input fluid, up to THREE item outputs.
          // The last argument (the "100" at the end) is processing time in ticks
          // This recipe generates cobblestone from lava in the cast
          event.recipes.tfmg.casting(Fluid.of("minecraft:lava", 1), ["minecraft:cobblestone"], 100)    // Coking supports ONE input item.
          // NOTE: Second argument must be one item and one fluid. (TFMG thing)
          // The last argument (the "100" at the end) is processing time in ticks
          // This recipe uses mud to create dirt and water
          event.recipes.tfmg.coking("minecraft:mud", ["minecraft:dirt", Fluid.of("minecraft:water", 5)], 100)    // Distillation supports ONE input item, and up to 6 output fluids.
          // This example uses 500 mB of water to create 400 mB of water and 100 mB of lava
          event.recipes.tfmg.distillation(Fluid.of("minecraft:water", 500), [Fluid.of("minecraft:water", 400), Fluid.of("minecraft:lava", 100)])    // Industrial Blasting supports ONE input item, and up to TWO fluid outputs.
          // This example uses dirt to make 300mB of water and 200mB of lava
          event.recipes.tfmg.industrial_blasting("minecraft:dirt", [Fluid.of("minecraft:water", 300), Fluid.of("minecraft:lava", 200)], 1)    // Polarizing supports ONE input item, and ONE output item.
          // NOTE: Third argument is the amount of FE (energy) the recipe needs/uses
          // This example makes one mud from dirt with 400 FE
          event.recipes.tfmg.polarizing("minecraft:dirt", "minecraft:mud", 400)
      })

    短评加载中..