#Custom Fuel Recipes with Thermal and Create Diesel Generators

19 messages · Page 1 of 1 (latest)

proud abyss
#

I need some help with custom fuel recipes. I want to remove the recipes that produce Refined fuel, and creosote from thermal.
Secondly I want the distillation process from Create Diesel generators, to produce Gasoline and Creosote in stead of Gasoline and Diesel.

Any help would be appreciated.

cosmic solarBOT
#

Once your ticket has been resolved, please close it with </ticket close:1054771505520717835> command!

median lantern
#

Is this a recpipe?

#

or you making an addon?

proud abyss
#

Just a recipe change

median lantern
#

Please remove the addon related as its not related. To remove recipies, you need to know the recipe type

proud abyss
#

How do I find the recipe type?

median lantern
fair light
#

Diesel generator fuels are tag based and the tags are used in a datapack recipe. Super easy to change, just look at the mods' examples

#

Distilation is also easy, just look at the base recipe and make a new one.

#
ServerEvents.recipes(event => {
  event.custom({
  "type": "createdieselgenerators:distillation",
  "ingredients": [
    {
      "fluidTag": "forge:crude_oil",
      "amount": 100
    }
  ],
  "heatRequirement": "heated",
  "processingTime": 100,
  "results": [
    {
      "fluid": "createdieselgenerators:diesel",
      "amount": 50
    },
    {
      "fluid": "createdieselgenerators:gasoline",
      "amount": 50
    }
  ]
  });
});

Something like that should get you started.

#

Create a file in kubejs/data/createdieselgenerators/diesel_engine_fuel_types/diesel.json
And make your own.

#

This is literally what I was doing for a couple hours this morning.

#

Even made a spreadsheet to visualize the numbers for my needs.

median lantern
fair light
#

See the image 🙂

proud abyss
#

Thank you, will try this. 🎉