Create lattice_filler.js

This commit is contained in:
Suss 2025-01-01 16:33:09 +11:00 committed by GitHub
parent 317be1a461
commit 38d5f33b9a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 29 additions and 0 deletions

29
mods/lattice_filler.js Normal file
View File

@ -0,0 +1,29 @@
elements.lattice_filler = {
behavior: [
"XX|CL|XX",
"CL|DL|CL",
"XX|CL|XX",
],
category: "special",
state: "solid",
density: 1834,
color: "#ff266e",
reactions: {
"lightning": {elem1: "destructive_lattice_filler", elem2: null}
}
};
elements.destructive_lattice_filler = {
behavior: [
"DL|CL|DL",
"CL|DL|CL",
"DL|CL|DL",
],
category: "special",
state: "solid",
density: 1834,
color: "#ff0037",
hidden: true,
};
elements.filler.reactions.laser = { "elem1":"lattice_filler", "elem2": "lattice_filler" }