From 68d6cedb6acea62f4157094ca08c5d705488d5ff Mon Sep 17 00:00:00 2001 From: idk73248 <86132722+idk73248@users.noreply.github.com> Date: Sat, 27 Jan 2024 16:47:00 +0000 Subject: [PATCH] added it again... hopefully it worked this time uhhh i dunno --- mods/all_around_fillers.js | 73 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 73 insertions(+) create mode 100644 mods/all_around_fillers.js diff --git a/mods/all_around_fillers.js b/mods/all_around_fillers.js new file mode 100644 index 00000000..972b5476 --- /dev/null +++ b/mods/all_around_fillers.js @@ -0,0 +1,73 @@ +elements.top_filler = { + color: "#ae4cd9", + behavior: [ + ["XX","CL","XX"], + ["XX","XX","XX"], + ["XX","XX","XX"] + ], + category:"fillers", + excludeRandom: true, + reactions: { + "neutron": { elem1:"lattice" }, + "proton": { elem1:"vertical" }, + "electric": { elem1:"horizontal" }, + "positron": { elem1:"vertical" }, + "plasma": { elem1:"armageddon", tempMin:500, charged:true }, + } +}, + +elements.bottom_filler = { + color: "#ae4cd9", + behavior: [ + ["XX","XX","XX"], + ["XX","XX","XX"], + ["XX","CL","XX"] + ], + category:"fillers", + excludeRandom: true, + reactions: { + "neutron": { elem1:"lattice" }, + "proton": { elem1:"vertical" }, + "electric": { elem1:"horizontal" }, + "positron": { elem1:"vertical" }, + "plasma": { elem1:"armageddon", tempMin:500, charged:true }, + } +}, + +elements.right_filler = { + color: "#ae4cd9", + behavior: [ + ["XX","XX","XX"], + ["XX","XX","CL"], + ["XX","XX","XX"] + ], + category:"fillers", + excludeRandom: true, + reactions: { + "neutron": { elem1:"lattice" }, + "proton": { elem1:"vertical" }, + "electric": { elem1:"horizontal" }, + "positron": { elem1:"vertical" }, + "plasma": { elem1:"armageddon", tempMin:500, charged:true }, + } +}, + +elements.left_filler = { + color: "#ae4cd9", + behavior: [ + ["XX","XX","XX"], + ["CL","XX","XX"], + ["XX","XX","XX"] + ], + category:"fillers", + excludeRandom: true, + reactions: { + "neutron": { elem1:"lattice" }, + "proton": { elem1:"vertical" }, + "electric": { elem1:"horizontal" }, + "positron": { elem1:"vertical" }, + "plasma": { elem1:"armageddon", tempMin:500, charged:true }, + } +} + +elements.filler.category = "fillers" \ No newline at end of file