set states
This commit is contained in:
parent
ea8360cbe6
commit
6cc060ea09
|
|
@ -14,6 +14,7 @@ elements.ruthenium = {
|
||||||
behavior: behaviors.WALL,
|
behavior: behaviors.WALL,
|
||||||
tempHigh: 2334,
|
tempHigh: 2334,
|
||||||
category: "solids",
|
category: "solids",
|
||||||
|
state: "solid",
|
||||||
density: 12450,
|
density: 12450,
|
||||||
conduct: 0.45,
|
conduct: 0.45,
|
||||||
hardness: 0.97593,
|
hardness: 0.97593,
|
||||||
|
|
@ -28,6 +29,7 @@ elements.rhodium = {
|
||||||
behavior: behaviors.WALL,
|
behavior: behaviors.WALL,
|
||||||
tempHigh: 1964,
|
tempHigh: 1964,
|
||||||
category: "solids",
|
category: "solids",
|
||||||
|
state: "solid",
|
||||||
density: 12410,
|
density: 12410,
|
||||||
conduct: 0.59,
|
conduct: 0.59,
|
||||||
hardness: 0.94694,
|
hardness: 0.94694,
|
||||||
|
|
@ -42,6 +44,7 @@ elements.palladium = {
|
||||||
behavior: behaviors.WALL,
|
behavior: behaviors.WALL,
|
||||||
tempHigh: 1555,
|
tempHigh: 1555,
|
||||||
category: "solids",
|
category: "solids",
|
||||||
|
state: "solid",
|
||||||
density: 12023,
|
density: 12023,
|
||||||
conduct: 0.38,
|
conduct: 0.38,
|
||||||
hardness: 0.82667,
|
hardness: 0.82667,
|
||||||
|
|
@ -58,6 +61,7 @@ elements.rhenium = {
|
||||||
behavior: behaviors.WALL,
|
behavior: behaviors.WALL,
|
||||||
tempHigh: 3186,
|
tempHigh: 3186,
|
||||||
category: "solids",
|
category: "solids",
|
||||||
|
state: "solid",
|
||||||
density: 21020,
|
density: 21020,
|
||||||
conduct: 0.29,
|
conduct: 0.29,
|
||||||
hardness: 0.96061,
|
hardness: 0.96061,
|
||||||
|
|
@ -72,6 +76,7 @@ elements.osmium = {
|
||||||
behavior: behaviors.WALL,
|
behavior: behaviors.WALL,
|
||||||
tempHigh: 3033,
|
tempHigh: 3033,
|
||||||
category: "solids",
|
category: "solids",
|
||||||
|
state: "solid",
|
||||||
density: 22590,
|
density: 22590,
|
||||||
conduct: 0.40,
|
conduct: 0.40,
|
||||||
hardness: 0.98673,
|
hardness: 0.98673,
|
||||||
|
|
@ -86,6 +91,7 @@ elements.iridium = {
|
||||||
behavior: behaviors.WALL,
|
behavior: behaviors.WALL,
|
||||||
tempHigh: 2446,
|
tempHigh: 2446,
|
||||||
category: "solids",
|
category: "solids",
|
||||||
|
state: "solid",
|
||||||
density: 22560,
|
density: 22560,
|
||||||
conduct: 0.54,
|
conduct: 0.54,
|
||||||
hardness: 0.96886,
|
hardness: 0.96886,
|
||||||
|
|
@ -100,6 +106,7 @@ elements.platinum = {
|
||||||
behavior: behaviors.WALL,
|
behavior: behaviors.WALL,
|
||||||
tempHigh: 1768,
|
tempHigh: 1768,
|
||||||
category: "solids",
|
category: "solids",
|
||||||
|
state: "solid",
|
||||||
density: 21450,
|
density: 21450,
|
||||||
conduct: 0.38,
|
conduct: 0.38,
|
||||||
hardness: 0.83226,
|
hardness: 0.83226,
|
||||||
|
|
@ -118,6 +125,7 @@ elements.mercury = {
|
||||||
stateHigh: "mercury_gas",
|
stateHigh: "mercury_gas",
|
||||||
tempLow: -39,
|
tempLow: -39,
|
||||||
stateLow: "frozen_mercury",
|
stateLow: "frozen_mercury",
|
||||||
|
state: "solid",
|
||||||
category: "liquids",
|
category: "liquids",
|
||||||
density: 13534,
|
density: 13534,
|
||||||
conduct: 0.13,
|
conduct: 0.13,
|
||||||
|
|
@ -133,6 +141,8 @@ elements.frozen_mercury = {
|
||||||
temp: -50,
|
temp: -50,
|
||||||
stateHigh: "mercury",
|
stateHigh: "mercury",
|
||||||
category: "solids",
|
category: "solids",
|
||||||
|
state: "solid",
|
||||||
|
state: "solid",
|
||||||
hidden: true,
|
hidden: true,
|
||||||
hardness: 0.2775, //(desperately scaled Mohs hardness)
|
hardness: 0.2775, //(desperately scaled Mohs hardness)
|
||||||
},
|
},
|
||||||
|
|
@ -147,5 +157,6 @@ elements.mercury_gas = { //hg d@bp extrapolated from density change with tempera
|
||||||
temp: 400,
|
temp: 400,
|
||||||
stateLow: "mercury",
|
stateLow: "mercury",
|
||||||
category: "gases",
|
category: "gases",
|
||||||
|
state: "gas",
|
||||||
hidden: true,
|
hidden: true,
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue