Update Science_mod.js

This commit is contained in:
ThatOtherProto 2024-04-07 18:04:07 +01:00 committed by GitHub
parent 00e3b9b61f
commit 20d8ce51c5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 14 additions and 6 deletions

View File

@ -411,10 +411,10 @@ element.Selenium = {
} }
element.Bromine = { element.Bromine = {
behavior: behaviors.GAS, behavior: behaviors.LIQUID,
color:"FFFFFF", color:"FFFFFF",
category:"gases", category:"liquids",
state:"gas", state:"liquid",
hidden:false hidden:false
} }
@ -771,10 +771,10 @@ element.Gold = {
} }
element.Mercury = { element.Mercury = {
behavior: behaviors.WALL, behavior: behaviors.LIQUID,
color:"00FFFF", color:"00FFFF",
category:"land", category:"liquids",
state:"solid", state:"liquid",
hidden:false hidden:false
} }
@ -1092,3 +1092,11 @@ substance.Polystyrene = {
state:"solid", state:"solid",
hidden:true hidden:true
} }
substance.Styrene = {
behavior: behaviors.LIQUID,
color:"00FF00",
category:"liquids",
state:"liquid",
hidden:true
}