33 lines
668 B
JavaScript
33 lines
668 B
JavaScript
console.log("run mod")
|
|
elements.turbine = { color: "#524945",
|
|
behavior: behaviors.WALL
|
|
category: "solids",
|
|
state: "solid",
|
|
density: 720,
|
|
};
|
|
elements.coolant = { color: "#16c1db",
|
|
behavior: behaviors.WALL
|
|
category: "liquids",
|
|
state: "liquid",
|
|
density: 720,
|
|
tempHigh: 1000,
|
|
};
|
|
elements.unstable_coolant = { color: "#16c1db",
|
|
behavior: behaviors.DGAS,
|
|
category: "gases",
|
|
state: "gas",
|
|
};
|
|
elements.hello_world = {
|
|
color: "#ff0000",
|
|
behavior: behaviors.WALL,
|
|
category: "land",
|
|
state: "solid",
|
|
};
|
|
|
|
elements.hello_world = {
|
|
color: "#ff0000",
|
|
behavior: behaviors.WALL,
|
|
category: "land",
|
|
state: "solid",
|
|
};
|