This commit is contained in:
Lao1ei 2026-02-08 14:52:44 -05:00 committed by GitHub
commit 868d0d516a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 22 additions and 0 deletions

22
mods/cold_gas.js Normal file
View File

@ -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")
}
}