#Custom Fuel Recipes with Thermal and Create Diesel Generators
19 messages · Page 1 of 1 (latest)
Once your ticket has been resolved, please close it with </ticket close:1054771505520717835> command!
Just a recipe change
Please remove the addon related as its not related. To remove recipies, you need to know the recipe type
How do I find the recipe type?
For Create: Desial Generators its going to be in here https://github.com/george8188625/Create-Diesel-Generators/tree/1.19.2/src/main/resources/data/createdieselgenerators/recipes
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.
Can I have that please?? 
See the image 🙂
Thank you, will try this. 🎉