This commit is contained in:
thecreatoroflava 2026-02-16 22:28:17 -05:00 committed by GitHub
commit a03607d1dc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 20 additions and 0 deletions

20
lava_mod.js Normal file
View File

@ -0,0 +1,20 @@
can i have my mod in the game its lava // lava_mod.js
elements.lava = {
color: "#ff4500",
behavior: behaviors.MOLTEN,
category: "liquids",
state: "liquid",
density: 2500,
temp: 1200,
reactions: {
"water": { "elem1": "steam", "elem2": "rock" },
"ice": { "elem1": "steam", "elem2": "rock" },
"snow": { "elem1": "steam", "elem2": "rock" },
"rock": { "elem1": null, "elem2": "basalt", chance: 0.1 }
},
tempLow: 800,
stateLow: "basalt",
conduct: 0.01,
heatConduct: 0.3,
};