Add files via upload

This commit is contained in:
tobycoding-html 2025-06-08 11:18:34 -05:00 committed by GitHub
parent 388b6f17eb
commit 614cee14ea
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 63 additions and 0 deletions

63
mods/Reactor_Supplies.js Normal file
View File

@ -0,0 +1,63 @@
elements.Reactor_Water = {
color: "#00FFCB",
behavior: behaviors.LIQUID,
category: "reactor_supplies",
state: "liquid",
density: 1050,
tempHigh:200,
tempLow:-40,
stateHigh: "Reactor_Water_Steam",
stateLow: "Reactor_Water_Ice",
};
elements.Reactor_Container_Body_User = {
color: "#676767",
behavior: behaviors.SOLID,
category: "reactor_supplies",
state: "solid",
tempHigh: 700,
tempLow: -200,
temp: 50,
stateHigh: "Molten_Reactor_Conatainer",
stateLow: "Frozen_Reactor_Container",
};
elements.Molten_Reactor_Conatainer = {
color: "#FF5000",
behavior: behaviors.LIQUID,
category: "reactor_supplies",
state: "liquid",
tempLow: 50,
temp: 700,
stateLow: "Reactor_Container_Body_User",
};
elements.Frozen_Reactor_Container = {
color: "#7FA0A8",
behavior: behaviors.SOLID,
category: "reactor_supplies",
state: "solid",
tempHigh: 50,
temp: -200,
stateHigh: "Reactor_Container_Body_User",
};
elements.Reactor_Water_Steam = {
color: "#8CF193",
behavior: behaviors.GAS,
category: "reactor_supplies",
state: "gas",
tempLow: 150,
temp: 200,
stateLow: "Reactor_Water",
}
elements.Reactor_Water_Ice = {
color: "#BBF5E6",
behavior: behaviors.SOLID,
category: "reactor_supplies",
state: "solid",
tempHigh: 20,
stateHigh: "Reactor_Water",
temp: -40,
}