Merge 0c4b804b62 into 9bc10bd391
This commit is contained in:
commit
868d0d516a
|
|
@ -0,0 +1,22 @@
|
||||||
|
// use american spelling
|
||||||
|
elements.cold_gas = {
|
||||||
|
color: "#80a3e0",
|
||||||
|
behavior: behaviors.GAS,
|
||||||
|
category: "cold",
|
||||||
|
state: "gas",
|
||||||
|
temp: -273,
|
||||||
|
tempHigh:-200,
|
||||||
|
stateHigh:"cold_liquid"
|
||||||
|
}
|
||||||
|
elements.cold_liquid = {
|
||||||
|
color: "#80a3e0",
|
||||||
|
behavior: behaviors.LIQUID,
|
||||||
|
category: "cold",
|
||||||
|
state: "liquid",
|
||||||
|
temp: -200,
|
||||||
|
tempLow: -150,
|
||||||
|
stateLow: "cold_gas",
|
||||||
|
tick: function(pixel){
|
||||||
|
changePixel(pixel,"cold_gas")
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue