This commit is contained in:
wala_bingung 2026-03-01 20:49:35 +00:00 committed by GitHub
commit a8ae90e10a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 24 additions and 0 deletions

24
mods/walamod.js Normal file
View File

@ -0,0 +1,24 @@
elements.UNBREAKABLE = {
color: "#7f7f7f",
behavior: behaviors.WALL,
category: "WALA MOD",
state: "solid",
hardness: 1,
burn: 0,
density: 127
};
elements.ALWAYSBREAK = {
color: "#ff0000",
behavior: behaviors.POWDER,
category: "WALA MOD",
state: "powder",
hardness: 0,
burn: 100,
density: 0,
tempHigh: -127,
stateHigh: null,
tempLow: 127,
stateLow: null,
breakInto: null
};