Перейти к содержимому
Mineforgian

KubeJS TFMG

KubeJS intergration for Create: The Factory Must Grow

Загрузки
28K
Подписчики
12
Обновлён
3 августа 2026 г.
Лицензия
MIT

Опубликован 2 декабря 2024 г.

Create: TFMG integration for KubeJS. It allows you to create the current recipes:

  • Casting
  • Coking
  • Distillation
  • Industrial Blasting
  • Polarizing
  • Winding
  • Vats

CurseForge: CurseForge Downloads
Modrinth: Modrinth Downloads

Examples of the recipes in action:

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)
})

Remember: More features will be released in the future.

Ченджлог

1.21.1-1.0.2Релиз1.21.1 · 3 августа 2026 г.

Version 1.0.2

  • Add event.recieps.tfmg.vat shorthand for event.recipes.tfmg.vat_machine_recipe
1.21.1-1.0.1Релиз1.21.1 · 20 июля 2026 г.

Neoforge Version Requirement Change

  • Accidentally forced it on 21.1.233 only. Now it's `21.1.233 and above
1.21.1-1.0.0Релиз1.21.1 · 18 июля 2026 г.

1.21.1 version for release!

  • Compatible with TFMG Versions 1.2.0 and 1.2.2 (and above)
  • Switch over to recipe JSON schemas
  • Add support for vat pressure (1.2.2 and above only)
1.20.1-1.3.2Релиз1.20.1 · 23 сентября 2025 г.

I forgot to do this one thing :( The embarrassing patch

1.20.1-1.3.1Релиз1.20.1 · 13 сентября 2025 г.

Fix the chemical vat recipe generation from failing

1.20.1-1.3.0Релиз1.20.1 · 10 сентября 2025 г.
1.19.2-1.0.0Релиз1.19.2 · 24 декабря 2024 г.

First release for 1.19.2

1.20.1-1.2.0Релиз1.20.1 · 14 декабря 2024 г.

Fix NeoForge and Forge not loading

Комментарии

Загружаем…