Create lattice_filler.js
This commit is contained in:
parent
317be1a461
commit
38d5f33b9a
|
|
@ -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" }
|
||||
Loading…
Reference in New Issue