added fission components to kjs

This commit is contained in:
Pyritie 2025-10-25 15:22:18 +01:00
parent 4bc380ff46
commit 4ec4b71649
2 changed files with 17 additions and 10 deletions

View file

@ -1,10 +0,0 @@
["Cooking Settings"]
#Cook Time: Time in ticks needed for one cooking cycle
#Range: > 1
cooktime = 200
["Construction Settings"]
#Shearable: Allow jumbo furnaces to be cleanly dismantled with shears
shearable = true

View file

@ -6,4 +6,21 @@ function registerDeaFissionRecipes(event) {
event.remove({ id: 'deafission:fission_reactor_fuel/thorium' })
event.remove({ id: 'deafission:fission_reactor_coolant/thorium/nak_to_plasma' })
event.remove({ id: 'deafission:fission_reactor_coolant/uranium/water_to_steam' })
let component = function (type, block, value) {
event.custom({
type: 'deafission:fission_component',
componentType: type,
block: block,
data: {
value: value
}
});
};
component("HEAT", "minecraft:blue_ice", 0.5)
component("HEAT", "tfg:glacian_wool_frame", 2);
component("HEAT", "tfg:aes_insulation_frame", 1);
component("HEAT", "tfg:moderate_core_frame", 10);
component("HEAT", "tfg:impure_moderate_core_frame", 5);
}