This commit is contained in:
hithereinene 2026-02-18 00:12:34 +01:00 committed by GitHub
commit 8c4219ab22
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
};
}