Add files via upload

This commit is contained in:
idk73248 2024-01-27 15:10:36 +00:00 committed by GitHub
parent eb020e72bc
commit 2a36c0968f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 71 additions and 0 deletions

71
all_around_fillers.js Normal file
View File

@ -0,0 +1,71 @@
elements.top_filler = {
color: "#ae4cd9",
behavior: [
["XX","CL","XX"],
["XX","XX","XX"],
["XX","XX","XX"]
],
category:"special",
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:"special",
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:"special",
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:"special",
excludeRandom: true,
reactions: {
"neutron": { elem1:"lattice" },
"proton": { elem1:"vertical" },
"electric": { elem1:"horizontal" },
"positron": { elem1:"vertical" },
"plasma": { elem1:"armageddon", tempMin:500, charged:true },
}
}