Added more to testium

This commit is contained in:
StellarX20 2023-07-20 13:14:51 -04:00 committed by GitHub
parent 8190d24e52
commit 7f74dda200
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 39 additions and 0 deletions

View File

@ -11,7 +11,46 @@ elements.test = {
behavior: behaviors.POWDER,
category: "land",
state: "solid",
density: 15,
temp: 22,
tempHigh: 35,
stateHigh: "molten_testium",
reactions: {
"ilitium": { "elem1":"tralphium", "elem2":null },
"nickel": { "elem1":"iron", "elem2":null },
}
};
elements.molten_testium = {
name:"Liquid Testium",
color:"#0000ff",
behavior: behaviors.LIQUID,
category: "liquids",
state: "liquid",
density: 10,
temp: 50,
tempHigh: 450,
stateHigh: "testium_gas",
tempLow: 35,
stateLow: "test",
reactions: {
"ilitium": { "elem1":"tralphium", "elem2":null },
"molten_nickel": { "elem1":"molten_iron", "elem2":null },
},
};
elements.testium_gas = {
name:"Liquid Testium",
color:"#00ff00",
behavior: behaviors.GAS,
category: "gases",
state: "gas",
density: 5,
temp: 525,
tempLow: 450,
stateLow: "molten_testium",
reactions: {
"ilitium": { "elem1":"helium", "elem2":null },
},
};
elements.neutronium = {
name: "Neutronium",