neuralgia/kubejs/server_scripts/railways/recipes.locometal.js
Gustavo f3dfa471ec
Refactor & update to gt7
* gt7 removed credits/coins

* port gregtech additions to java

* add eslint locally

* add style linting

* switch target ECMA standard

* run linter

* clean up a bunch of linter errors

* remove outdated greate API calls

* forgot about the TFC multi compat issue

* reverted greate recipe removals

* some more linting stuff

* fix some issues with greenhouse recipes

* fix up some material stuff

* fix recipe types

* - Fixed single block machine rendering (#1465)

* minor fixes and changes

---------

Signed-off-by: Pyritie <pyritie@gmail.com>
Co-authored-by: Pyritie <pyritie@gmail.com>
Co-authored-by: Redeix <59435925+Redeix@users.noreply.github.com>
2025-07-28 12:27:06 +10:00

188 lines
No EOL
8.4 KiB
JavaScript

"use strict";
const locometalDyeGroups = {
slashed_locometal: '#railways:palettes/dye_groups/slashed',
riveted_locometal: '#railways:palettes/dye_groups/riveted',
locometal_pillar: '#railways:palettes/dye_groups/pillar',
locometal_smokebox: '#railways:palettes/dye_groups/smokebox',
plated_locometal: '#railways:palettes/dye_groups/plated',
flat_slashed_locometal: '#railways:palettes/dye_groups/flat_slashed',
flat_riveted_locometal: '#railways:palettes/dye_groups/flat_riveted'
}
const locometalBase = {
slashed_locometal: 'slashed_locometal',
riveted_locometal: 'riveted_locometal',
locometal_pillar: 'locometal_pillar',
locometal_smokebox: 'locometal_smokebox',
plated_locometal: 'plated_locometal',
flat_slashed_locometal: 'flat_slashed_locometal',
flat_riveted_locometal: 'flat_riveted_locometal'
}
const registerRailwaysLocometalRecipes = (event) => {
for (let locometal in locometalBase) {
event.recipes.create.cutting(`8x railways:${locometal}`, '#forge:storage_blocks/iron').processingTime(200);
event.recipes.create.cutting(`16x railways:${locometal}`, '#forge:storage_blocks/wrought_iron').processingTime(200);
event.recipes.create.cutting(`24x railways:${locometal}`, '#forge:storage_blocks/steel').processingTime(200);
event.recipes.create.cutting(`railways:${locometal}`, `#railways:palettes/cycle_groups/base`).processingTime(20);
event.recipes.gtceu.chemical_bath(`tfg:undying/locometal/${locometal}`)
.itemInputs(Item.of(locometalDyeGroups[`${locometal}`], 1))
.inputFluids(Fluid.of(`gtceu:chlorine`, 18))
.itemOutputs(Item.of(`railways:${locometal}`))
.duration(20)
.EUt(24)
.category(GTRecipeCategories.CHEM_DYES)
}
event.recipes.create.item_application(`railways:iron_wrapped_locometal`, [`#railways:palettes/cycle_groups/base`, '#forge:plates/wrought_iron']);
event.recipes.create.item_application(`railways:copper_wrapped_locometal`, [`#railways:palettes/cycle_groups/base`, '#forge:plates/copper']);
event.recipes.create.item_application(`railways:brass_wrapped_locometal`, [`#railways:palettes/cycle_groups/base`, '#forge:plates/brass'])
event.recipes.gtceu.chemical_bath(`tfg:undying/brass_wrapped_locometal`)
.itemInputs('#railways:palettes/dye_groups/brass_wrapped_slashed')
.inputFluids(Fluid.of(`gtceu:chlorine`, 18))
.itemOutputs(`railways:brass_wrapped_locometal`)
.duration(20)
.EUt(24)
.category(GTRecipeCategories.CHEM_DYES);
event.recipes.gtceu.chemical_bath(`tfg:undying/copper_wrapped_locometal`)
.itemInputs('#railways:palettes/dye_groups/copper_wrapped_slashed')
.inputFluids(Fluid.of(`gtceu:chlorine`, 18))
.itemOutputs(`railways:copper_wrapped_locometal`)
.duration(20)
.EUt(24)
.category(GTRecipeCategories.CHEM_DYES);
event.recipes.gtceu.chemical_bath(`tfg:undying/iron_wrapped_locometal`)
.itemInputs('#railways:palettes/dye_groups/iron_wrapped_slashed')
.inputFluids(Fluid.of(`gtceu:chlorine`, 18))
.itemOutputs(`railways:iron_wrapped_locometal`)
.duration(20)
.EUt(24)
.category(GTRecipeCategories.CHEM_DYES)
event.recipes.gtceu.chemical_bath('tfg:undying/boiler')
.itemInputs('#railways:palettes/dye_groups/boiler')
.inputFluids(Fluid.of(`gtceu:chlorine`, 72))
.itemOutputs(`railways:locometal_boiler`)
.duration(20)
.EUt(24)
.category(GTRecipeCategories.CHEM_DYES)
event.recipes.gtceu.chemical_bath(`tfg:undying/brass_wrapped_boiler`)
.itemInputs('#railways:palettes/dye_groups/brass_wrapped_boiler')
.inputFluids(Fluid.of(`gtceu:chlorine`, 72))
.itemOutputs(`railways:brass_wrapped_locometal_boiler`)
.duration(20)
.EUt(24)
.category(GTRecipeCategories.CHEM_DYES)
event.recipes.gtceu.chemical_bath(`tfg:undying/copper_wrapped_boiler`)
.itemInputs('#railways:palettes/dye_groups/copper_wrapped_boiler')
.inputFluids(Fluid.of(`gtceu:chlorine`, 72))
.itemOutputs(`railways:copper_wrapped_locometal_boiler`)
.duration(20)
.EUt(24)
.category(GTRecipeCategories.CHEM_DYES)
event.recipes.gtceu.chemical_bath(`tfg:undying/iron_wrapped_boiler`)
.itemInputs('#railways:palettes/dye_groups/iron_wrapped_boiler')
.inputFluids(Fluid.of(`gtceu:chlorine`, 72))
.itemOutputs(`railways:iron_wrapped_locometal_boiler`)
.duration(20)
.EUt(24)
.category(GTRecipeCategories.CHEM_DYES)
global.MINECRAFT_DYE_NAMES.forEach(dye => {
for (let locometal in locometalBase) {
event.recipes.gtceu.chemical_bath(`tfg:chemical_dying_locometal/${locometal}/${dye}`)
.itemInputs(Item.of(locometalDyeGroups[`${locometal}`], 1))
.inputFluids(Fluid.of(`tfc:${dye}_dye`, 18))
.itemOutputs(Item.of(`railways:${dye}_${locometal}`))
.duration(20)
.EUt(24)
.category(GTRecipeCategories.CHEM_DYES);
};
event.recipes.create.item_application(`railways:${dye}_iron_wrapped_locometal`, [`#railways:palettes/cycle_groups/${dye}`, '#forge:plates/wrought_iron']);
event.recipes.create.item_application(`railways:${dye}_copper_wrapped_locometal`, [`#railways:palettes/cycle_groups/${dye}`, '#forge:plates/copper']);
event.recipes.create.item_application(`railways:${dye}_brass_wrapped_locometal`, [`#railways:palettes/cycle_groups/${dye}`, '#forge:plates/brass']);
event.recipes.gtceu.chemical_bath(`tfg:brass_locometal_bathing/${dye}`)
.itemInputs('#railways:palettes/dye_groups/brass_wrapped_slashed')
.inputFluids(Fluid.of(`tfc:${dye}_dye`, 18))
.itemOutputs(`railways:${dye}_brass_wrapped_locometal`)
.duration(20)
.EUt(24)
.category(GTRecipeCategories.CHEM_DYES);
event.recipes.gtceu.chemical_bath(`tfg:copper_locometal_bathing/${dye}`)
.itemInputs('#railways:palettes/dye_groups/copper_wrapped_slashed')
.inputFluids(Fluid.of(`tfc:${dye}_dye`, 18))
.itemOutputs(`railways:${dye}_copper_wrapped_locometal`)
.duration(20)
.EUt(24)
.category(GTRecipeCategories.CHEM_DYES);
event.recipes.gtceu.chemical_bath(`tfg:locometal_bathing/${dye}`)
.itemInputs('#railways:palettes/dye_groups/iron_wrapped_slashed')
.inputFluids(Fluid.of(`tfc:${dye}_dye`, 18))
.itemOutputs(`railways:${dye}_iron_wrapped_locometal`)
.duration(20)
.EUt(24)
.category(GTRecipeCategories.CHEM_DYES);
event.recipes.gtceu.chemical_bath(`tfg:railways/locometal_boiler/color/${dye}`)
.itemInputs('#railways:palettes/dye_groups/boiler')
.inputFluids(Fluid.of(`tfc:${dye}_dye`, 72))
.itemOutputs(`railways:${dye}_locometal_boiler`)
.duration(300)
.EUt(4)
.category(GTRecipeCategories.CHEM_DYES)
event.recipes.gtceu.chemical_bath(`tfg:railways/brass_wrapped_locometal_boiler/color/${dye}`)
.itemInputs('#railways:palettes/dye_groups/brass_wrapped_boiler')
.inputFluids(Fluid.of(`tfc:${dye}_dye`, 72))
.itemOutputs(`railways:${dye}_brass_wrapped_locometal_boiler`)
.duration(300)
.EUt(4)
.category(GTRecipeCategories.CHEM_DYES)
event.recipes.gtceu.chemical_bath(`tfg:railways/copper_wrapped_locometal_boiler/color/${dye}`)
.itemInputs('#railways:palettes/dye_groups/copper_wrapped_boiler')
.inputFluids(Fluid.of(`tfc:${dye}_dye`, 72))
.itemOutputs(`railways:${dye}_copper_wrapped_locometal_boiler`)
.duration(300)
.EUt(4)
.category(GTRecipeCategories.CHEM_DYES)
event.recipes.gtceu.chemical_bath(`tfg:railways/iron_wrapped_locometal_boiler/color/${dye}`)
.itemInputs('#railways:palettes/dye_groups/iron_wrapped_boiler')
.inputFluids(Fluid.of(`tfc:${dye}_dye`, 72))
.itemOutputs(`railways:${dye}_iron_wrapped_locometal_boiler`)
.duration(300)
.EUt(4)
.category(GTRecipeCategories.CHEM_DYES)
})
// Locometal Boiler
event.recipes.gtceu.assembler(`tfg:railways/locometal_boiler`)
.itemInputs('#railways:palettes/cycle_groups/base', `create:fluid_tank`)
.circuit(1)
.itemOutputs(`railways:locometal_boiler`)
.duration(200)
.EUt(28)
// Brass Wrapped Locometal Boiler
event.recipes.gtceu.assembler(`tfg:railways/brass_wrapped_locometal_boiler`)
.itemInputs(`railways:brass_wrapped_locometal`, `create:fluid_tank`)
.circuit(1)
.itemOutputs(`railways:brass_wrapped_locometal_boiler`)
.duration(200)
.EUt(28)
// Copper Wrapped Locometal Boiler
event.recipes.gtceu.assembler(`tfg:railways/copper_wrapped_locometal_boiler`)
.itemInputs(`railways:copper_wrapped_locometal`, `create:fluid_tank`)
.circuit(1)
.itemOutputs(`railways:copper_wrapped_locometal_boiler`)
.duration(200)
.EUt(28)
// Iron Wrapped Locometal Boiler
event.recipes.gtceu.assembler(`tfg:railways/iron_wrapped_locometal_boiler`)
.itemInputs(`railways:iron_wrapped_locometal`, `create:fluid_tank`)
.circuit(1)
.itemOutputs(`railways:iron_wrapped_locometal_boiler`)
.duration(200)
.EUt(28)
}