Create Unuennium.js

Will it Work?
This commit is contained in:
hithereinene 2025-04-23 19:46:09 +03:00 committed by GitHub
parent 5f8e1751c9
commit 732c6b6203
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 41 additions and 0 deletions

41
mods/Unuennium.js Normal file
View File

@ -0,0 +1,41 @@
var modName = "mods/ununennium.js";
var libraryMod = "mods/code_library.js";
if (enabledMods.includes(libraryMod)) {
elements.ununennium = {
color: "#d1d1ff", // pale bluish tone
behavior: behaviors.LIQUID,
reactions: {
"hydrogen": { elem1: "oxygen", elem2: null }
},
tempHigh: -156, // Celsius
stateHigh: "gaseous_ununennium",
tempLow: -231,
stateLow: "solid_ununennium",
category: "liquids",
state: "liquid",
density: 13500, // Heavy synthetic element
};
elements.solid_ununennium = {
color: "#a8a8ff",
behavior: behaviors.SOLID,
temp: -232,
category: "solids",
state: "solid",
density: 13800,
hidden: true
};
elements.gaseous_ununennium = {
color: "#e0e0ff",
behavior: behaviors.GAS,
temp: -155,
category: "gases",
state: "gas",
density: 0.05,
hidden: true
};
}