2025-06-08 15:54:27 -04:00
|
|
|
elements.reactor_water = {
|
2025-06-08 15:34:20 -04:00
|
|
|
color: "#00FFCB",
|
|
|
|
|
behavior: behaviors.LIQUID,
|
|
|
|
|
category: "reactor_supplies",
|
|
|
|
|
state: "liquid",
|
|
|
|
|
density: 1050,
|
|
|
|
|
tempHigh:200,
|
|
|
|
|
tempLow:-40,
|
2025-06-08 15:54:27 -04:00
|
|
|
stateHigh: "reactor_water_steam",
|
|
|
|
|
stateLow: "reactor_water_ice",
|
2025-06-08 15:34:20 -04:00
|
|
|
};
|
|
|
|
|
|
2025-06-08 15:54:27 -04:00
|
|
|
elements.reactor_container_body_user = {
|
2025-06-08 15:34:20 -04:00
|
|
|
color: "#676767",
|
|
|
|
|
behavior: behaviors.SOLID,
|
|
|
|
|
category: "reactor_supplies",
|
|
|
|
|
state: "solid",
|
|
|
|
|
tempHigh: 700,
|
|
|
|
|
tempLow: -200,
|
|
|
|
|
temp: 50,
|
2025-06-08 16:06:24 -04:00
|
|
|
stateHigh: "molten_reactor_conatainer",
|
|
|
|
|
stateLow: "frozen_reactor_container",
|
2025-06-08 15:34:20 -04:00
|
|
|
};
|
|
|
|
|
|
2025-06-08 15:54:27 -04:00
|
|
|
elements.molten_reactor_container = {
|
2025-06-08 15:34:20 -04:00
|
|
|
color: "#FF5000",
|
|
|
|
|
behavior: behaviors.LIQUID,
|
|
|
|
|
category: "reactor_supplies",
|
|
|
|
|
state: "liquid",
|
|
|
|
|
tempLow: 50,
|
|
|
|
|
temp: 700,
|
2025-06-08 15:54:27 -04:00
|
|
|
stateLow: "reactor_container_body_user",
|
2025-06-08 15:34:20 -04:00
|
|
|
};
|
|
|
|
|
|
2025-06-08 15:54:27 -04:00
|
|
|
elements.frozen_reactor_container = {
|
2025-06-08 15:34:20 -04:00
|
|
|
color: "#7FA0A8",
|
|
|
|
|
behavior: behaviors.SOLID,
|
|
|
|
|
category: "reactor_supplies",
|
|
|
|
|
state: "solid",
|
|
|
|
|
tempHigh: 50,
|
|
|
|
|
temp: -200,
|
2025-06-08 15:54:27 -04:00
|
|
|
stateHigh: "reactor_container_body_user",
|
2025-06-08 15:34:20 -04:00
|
|
|
};
|
|
|
|
|
|
2025-06-08 15:54:27 -04:00
|
|
|
elements.reactor_water_steam = {
|
2025-06-08 15:34:20 -04:00
|
|
|
color: "#8CF193",
|
|
|
|
|
behavior: behaviors.GAS,
|
|
|
|
|
category: "reactor_supplies",
|
|
|
|
|
state: "gas",
|
|
|
|
|
tempLow: 150,
|
|
|
|
|
temp: 200,
|
2025-06-08 16:06:24 -04:00
|
|
|
stateLow: "reactor_water",
|
2025-06-08 15:34:20 -04:00
|
|
|
};
|
|
|
|
|
|
2025-06-08 15:54:27 -04:00
|
|
|
elements.reactor_water_ice = {
|
2025-06-08 15:34:20 -04:00
|
|
|
color: "#BBF5E6",
|
|
|
|
|
behavior: behaviors.SOLID,
|
|
|
|
|
category: "reactor_supplies",
|
|
|
|
|
state: "solid",
|
|
|
|
|
tempHigh: 20,
|
2025-06-08 15:54:27 -04:00
|
|
|
stateHigh: "reactor_water",
|
2025-06-08 15:34:20 -04:00
|
|
|
temp: -40,
|
|
|
|
|
};
|
|
|
|
|
|
2025-06-08 15:54:27 -04:00
|
|
|
elements.the_fun_tool = {
|
2025-06-08 15:34:20 -04:00
|
|
|
color: "#FF0000",
|
|
|
|
|
category: "reactor_supplies",
|
|
|
|
|
tool: function(pixel) {
|
2025-06-08 15:54:27 -04:00
|
|
|
if (pixel.elemet == "reactor_water") {
|
2025-06-08 15:34:20 -04:00
|
|
|
pixel.element = "explosion";
|
|
|
|
|
};
|
2025-06-08 15:54:27 -04:00
|
|
|
if (pixel.element == "reactor_water_ice") {
|
2025-06-08 15:34:20 -04:00
|
|
|
pixel.element = "explosion";
|
|
|
|
|
};
|
2025-06-08 15:54:27 -04:00
|
|
|
if (pixel.element == "reactor_water_steam") {
|
2025-06-08 15:34:20 -04:00
|
|
|
pixel.element = "explosion";
|
|
|
|
|
};
|
2025-06-08 15:54:27 -04:00
|
|
|
if (pixel.element == "molten_reactor_container") {
|
2025-06-08 15:34:20 -04:00
|
|
|
pixel.element = "explosion";
|
|
|
|
|
};
|
2025-06-08 15:54:27 -04:00
|
|
|
if (pixel.element == "frozen_reactor_container") {
|
2025-06-08 15:34:20 -04:00
|
|
|
pixel.element = "explosion";
|
|
|
|
|
};
|
2025-06-08 15:54:27 -04:00
|
|
|
if (pixel.element == "reactor_container_body_user") {
|
2025-06-08 15:34:20 -04:00
|
|
|
pixel.element = "explosion";
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
};
|