From f4f3085fd584277b4bbc0812bb26b8003d05d303 Mon Sep 17 00:00:00 2001 From: wala_bingung <112078996+wala-bingung@users.noreply.github.com> Date: Wed, 7 Feb 2024 12:44:30 +0700 Subject: [PATCH] Create walamod.js --- mods/walamod.js | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 mods/walamod.js diff --git a/mods/walamod.js b/mods/walamod.js new file mode 100644 index 00000000..4e2912da --- /dev/null +++ b/mods/walamod.js @@ -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 +};