▶️ ЗАБЕРИ СВОИ 8 ПОДАРКОВ 🎁 ПРИ СОЗДАНИИ СВОЕГО МАЙНКРАФТ СЕРВЕРА
Моды/KubeJS Diesel Generators
KubeJS Diesel Generators

KubeJS Diesel Generators

Create: Diesel Generators integration for KubeJS

18.6K
9
Все версииKubeJS Diesel Generators 1.20.1-1.2.1

KubeJS Diesel Generators 1.20.1-1.2.1

Release1 г. назад

Список изменений

This is a Update for Create: Diesel Generators v1.3

In this Update i have changed the Syntax to:

ServerEvents.recipes((e) => {
    // Bulk Fermenting
    // Syntax bulk_fermenting(output[], input[])
    // supports multiple inputs and outputs
    // supports .heated() and .superheated()
    // supports chance-based output
  e.recipes.createdieselgenerators
    .bulk_fermenting(["minecraft:magma_cream", Item.of("minecraft:slime_ball").withChance(0.5)], [
      "minecraft:slime_ball",
      Fluid.of("minecraft:lava", 100),
    ])
    .processingTime(200)
    .superheated();

    // Basin Fermenting
    // Syntax basin_fermenting(output[], input[])
    // supports multiple inputs and outputs
    // supports .heated() and .superheated()
    // supports chance-based output
  e.recipes.createdieselgenerators
    .basin_fermenting(["minecraft:magma_cream", Item.of("minecraft:slime_ball").withChance(0.5)], [
      "minecraft:slime_ball",
      Fluid.of("minecraft:lava", 100),
    ])
    .processingTime(200)
    .superheated();

    // Distillation
    // Syntax distillation(output[], input)
    // Distillation can only have 1 Fluid input
    // supports up to 6 Fluid outputs
    // supports .heated() and .superheated()
  e.recipes.createdieselgenerators
    .distillation(
      [
        Fluid.of("createdieselgenerators:diesel", 50),
        Fluid.of("createdieselgenerators:gasoline", 50),
      ],
      Fluid.of("createdieselgenerators:crude_oil", 100)
    )
    .processingTime(100).heated();

    // Casting
    // Syntax casting(output, input, mold)
  e.recipes.createdieselgenerators.casting(
    "minecraft:milk_bucket",
    Fluid.of("minecraft:milk", 144),
    "createdieselgenerators:bowl"
  );

  // Compression Molding
  // Syntax compression_molding(output, input, mold)
  // supports .heated() and .superheated()
  e.recipes.createdieselgenerators
    .compression_molding(
      "minecraft:milk_bucket",
      Fluid.of("minecraft:milk", 144),
      "createdieselgenerators:bowl"
    )
    .heated();

  e.remove({ output: "create:copper_sheet" });

  // Hammering
  // Syntax hammering(output with count, input)
  e.recipes.createdieselgenerators.hammering(
    "4x create:copper_sheet",
    "minecraft:copper_ingot"
  );

  // Wire Cutting
  // Syntax wire_cutting(output with count, input)
  e.recipes.createdieselgenerators.wire_cutting(
    "4x immersiveengineering:wire_copper",
    "minecraft:copper_ingot"
  );
});

Файлы

dg_js-1.20.1-1.2.1.jar(68.48 KiB)
Основной
Скачать

Метаданные

Канал релиза

Release

Номер версии

1.20.1-1.2.1

Загрузчики

Forge

Версии игры

1.20.1

Загрузок

2.4K

Дата публикации

1 г. назад

Загрузил

ID версии

Главная