Merge pull request #306 from Jayd-Rubies/main

Weapons.js missile optimization
This commit is contained in:
slweeb 2024-01-25 22:29:38 -05:00 committed by GitHub
commit fc667dd8b3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 9 additions and 9 deletions

View File

@ -25,7 +25,7 @@ elements.little_boy = {
cooldown: defaultCooldown
},
elements.fat_man = {
color: ["#ffff00","#000000"],
color: ["#ffff00","#333333"],
behavior: [
"XX|EX:28>plasma|XX",
"XX|XX|XX",
@ -69,20 +69,20 @@ elements.fat_man = {
category: "weapons"
},
elements.left_missile = {
color: "#4c4e42",
color: "#4c4e42",
behavior: [
"XX|EX:10|XX",
"CR:left_missile AND EX:10|CH:fire|EX:10",
"M2|M1 AND EX:10|M2",
"M2|EX:10|XX",
"M1 AND EX:10|XX|EX:10",
"M2|EX:10|XX",
],
category:"weapons",
},
elements.right_missile = {
color: "#4c4e42",
color: "#4c4e42",
behavior: [
"XX|EX:10|XX",
"EX:10|CH:fire|EX:10 AND CR:right_missile",
"M2|M1 AND EX:10|M2",
"XX|EX:10|M2",
"EX:10|XX|M1 AND EX:10",
"XX|EX:10|M2",
],
category:"weapons",
},