MIRV
tech: MIRV - now effects grenades and super balls in addition to missiles no change for super balls and missiles, but this is a new tech for grenades undetonated mines are returned at the end of a level removed tech: mine reclamation mine gun has 30% less ammo laser mines do 7% less damage booby trap now comes with 53 JUNK (up from 33) but it's mines can be returned for ammo removed ctx.clip() from metamaterial cloaking field for performance reasons the graphics look a bit different now, maybe not as good, maybe it's just different iceIX bullets last 50% less time, but do 50% more damage and have 25% more thrust so it's more of a close range bullet ice-shot has 2 fewer bullets
This commit is contained in:
145
js/tech.js
145
js/tech.js
@@ -344,7 +344,7 @@
|
||||
frequency: 2,
|
||||
frequencyDefault: 2,
|
||||
allowed() {
|
||||
return (tech.isDamageForGuns || tech.isFireRateForGuns) && b.inventory.length + 5 < b.guns.length
|
||||
return (tech.isDamageForGuns || tech.isFireRateForGuns) && b.inventory.length < b.guns.length - 5 //12-5 guns total
|
||||
},
|
||||
requires: "arsenal or active cooling and less than 7 guns",
|
||||
effect() {
|
||||
@@ -470,7 +470,7 @@
|
||||
},
|
||||
{
|
||||
name: "desublimated ammunition",
|
||||
description: "use <strong>50%</strong> less <strong class='color-g'>ammo</strong> when <strong>crouching</strong><<br>strong>+6</strong> <strong class='color-j'>JUNK</strong> to the potential <strong class='color-m'>tech</strong> pool",
|
||||
description: "use <strong>50%</strong> less <strong class='color-g'>ammo</strong> when <strong>crouching</strong><br><strong>+6</strong> <strong class='color-j'>JUNK</strong> to the potential <strong class='color-m'>tech</strong> pool",
|
||||
maxCount: 1,
|
||||
count: 0,
|
||||
frequency: 2,
|
||||
@@ -2695,7 +2695,7 @@
|
||||
powerUps.research.changeRerolls(0)
|
||||
}, 1000);
|
||||
},
|
||||
description: "once per level, instead of <strong>dying</strong><br>consume <strong>1</strong> <strong class='color-r'>research</strong> and spawn <strong>6</strong> <strong class='color-h'>heals</strong>",
|
||||
description: "once per level, instead of <strong>dying</strong><br>consume <strong>1</strong> <strong class='color-r'>research</strong> and spawn <strong>5</strong> <strong class='color-h'>heals</strong>",
|
||||
maxCount: 1,
|
||||
count: 0,
|
||||
frequency: 2,
|
||||
@@ -4042,7 +4042,7 @@
|
||||
},
|
||||
{
|
||||
name: "ice-shot",
|
||||
description: "<strong>shotgun</strong> grows <strong>18</strong> freezing <strong class='color-s'>ice IX</strong> crystals",
|
||||
description: "<strong>shotgun</strong> grows <strong>15</strong> freezing <strong class='color-s'>ice IX</strong> crystals",
|
||||
isGunTech: true,
|
||||
maxCount: 1,
|
||||
count: 0,
|
||||
@@ -4059,25 +4059,6 @@
|
||||
tech.isIceShot = false;
|
||||
}
|
||||
},
|
||||
{
|
||||
name: "super duper",
|
||||
description: "fire <strong>1</strong> additional <strong>super ball</strong>",
|
||||
isGunTech: true,
|
||||
maxCount: 9,
|
||||
count: 0,
|
||||
frequency: 2,
|
||||
frequencyDefault: 2,
|
||||
allowed() {
|
||||
return tech.haveGunCheck("super balls") && !tech.oneSuperBall
|
||||
},
|
||||
requires: "super balls, but not the tech super ball",
|
||||
effect() {
|
||||
tech.superBallNumber++
|
||||
},
|
||||
remove() {
|
||||
tech.superBallNumber = 3;
|
||||
}
|
||||
},
|
||||
{
|
||||
name: "supertemporal",
|
||||
description: "fire <strong>super ball</strong> from the same point in <strong>space</strong><br> but separated by <strong>0.1</strong> seconds in <strong>time</strong>",
|
||||
@@ -4114,7 +4095,7 @@
|
||||
frequency: 2,
|
||||
frequencyDefault: 2,
|
||||
allowed() {
|
||||
return tech.haveGunCheck("super balls") && tech.superBallNumber === 3 && !tech.superBallDelay
|
||||
return tech.haveGunCheck("super balls") && tech.missileCount === 1 && !tech.superBallDelay
|
||||
},
|
||||
requires: "super balls, but not super duper or supertemporal",
|
||||
effect() {
|
||||
@@ -4134,7 +4115,7 @@
|
||||
},
|
||||
{
|
||||
name: "super sized",
|
||||
description: `<strong>super balls</strong> are <strong>20%</strong> larger<br>increases mass and physical <strong class='color-d'>damage</strong>`,
|
||||
description: `increase <strong>super ball</strong> radius by <strong>17%</strong><br>increases <strong class='color-d'>damage</strong> by about <strong>35%</strong>`,
|
||||
isGunTech: true,
|
||||
maxCount: 9,
|
||||
count: 0,
|
||||
@@ -4145,7 +4126,7 @@
|
||||
},
|
||||
requires: "super balls",
|
||||
effect() {
|
||||
tech.bulletSize += 0.15
|
||||
tech.bulletSize += 0.17
|
||||
},
|
||||
remove() {
|
||||
tech.bulletSize = 1;
|
||||
@@ -4321,25 +4302,6 @@
|
||||
tech.missileSize = false
|
||||
}
|
||||
},
|
||||
{
|
||||
name: "MIRV",
|
||||
description: "missile <strong class='color-g'>gun</strong> and <strong>bot</strong> launch <strong>+1</strong> <strong>missile</strong><br>decrease <strong>size</strong> and <strong>fire rate</strong> by <strong>10%</strong>",
|
||||
isGunTech: true,
|
||||
maxCount: 9,
|
||||
count: 0,
|
||||
frequency: 2,
|
||||
frequencyDefault: 2,
|
||||
allowed() {
|
||||
return tech.haveGunCheck("missiles") || tech.missileBotCount
|
||||
},
|
||||
requires: "missiles",
|
||||
effect() {
|
||||
tech.missileCount++;
|
||||
},
|
||||
remove() {
|
||||
tech.missileCount = 1;
|
||||
}
|
||||
},
|
||||
{
|
||||
name: "missile-bot",
|
||||
description: "remove your <strong>missile gun</strong><br>gain a <strong class='color-bot'>bot</strong> that fires <strong>missiles</strong> at mobs",
|
||||
@@ -4368,6 +4330,25 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
name: "MIRV",
|
||||
description: "fire <strong>+1</strong> <strong>missile</strong>, <strong>grenade</strong>, and <strong>super ball</strong><br>decrease <strong class='color-e'>explosion</strong> <strong>radius</strong> up to <strong>10%</strong>",
|
||||
isGunTech: true,
|
||||
maxCount: 9,
|
||||
count: 0,
|
||||
frequency: 2,
|
||||
frequencyDefault: 2,
|
||||
allowed() {
|
||||
return tech.haveGunCheck("missiles") || tech.missileBotCount || tech.haveGunCheck("grenades") || (tech.haveGunCheck("super balls") && !tech.oneSuperBall)
|
||||
},
|
||||
requires: "missiles, grenades, super balls, not super ball",
|
||||
effect() {
|
||||
tech.missileCount++;
|
||||
},
|
||||
remove() {
|
||||
tech.missileCount = 1;
|
||||
}
|
||||
},
|
||||
{
|
||||
name: "rocket-propelled grenade",
|
||||
description: "<strong>grenades</strong> rapidly <strong>accelerate</strong> forward<br>map <strong>collisions</strong> trigger an <strong class='color-e'>explosion</strong>",
|
||||
@@ -4421,7 +4402,7 @@
|
||||
allowed() {
|
||||
return tech.isVacuumBomb && !tech.isExplodeRadio
|
||||
},
|
||||
requires: "vacuum bomb && not iridium-192",
|
||||
requires: "vacuum bomb, not iridium-192",
|
||||
effect() {
|
||||
tech.isBlockExplode = true; //chain reaction
|
||||
},
|
||||
@@ -4469,6 +4450,28 @@
|
||||
tech.isNeutronSlow = false
|
||||
}
|
||||
},
|
||||
{
|
||||
name: "booby trap",
|
||||
description: "drop a <strong>mine</strong> after picking up a <strong>power up</strong><br><strong>+53</strong> <strong class='color-j'>JUNK</strong> to the potential <strong class='color-m'>tech</strong> pool",
|
||||
isGunTech: true,
|
||||
maxCount: 1,
|
||||
count: 0,
|
||||
frequency: 2,
|
||||
frequencyDefault: 2,
|
||||
allowed() {
|
||||
return tech.haveGunCheck("mine")
|
||||
},
|
||||
requires: "mines, not mine reclamation",
|
||||
effect() {
|
||||
tech.isMineDrop = true;
|
||||
if (tech.isMineDrop) b.mine(m.pos, { x: 0, y: 0 }, 0)
|
||||
tech.addJunkTechToPool(53)
|
||||
},
|
||||
remove() {
|
||||
tech.isMineDrop = false;
|
||||
if (this.count > 0) tech.removeJunkTechFromPool(53)
|
||||
}
|
||||
},
|
||||
{
|
||||
name: "laser-mines",
|
||||
description: "<strong>mines</strong> laid while you are <strong>crouched</strong><br>use <strong class='color-f'>energy</strong> to emit <strong>3</strong> unaimed <strong class='color-laser'>lasers</strong>",
|
||||
@@ -4488,25 +4491,6 @@
|
||||
tech.isLaserMine = false;
|
||||
}
|
||||
},
|
||||
{
|
||||
name: "mine reclamation",
|
||||
description: "retrieve <strong class='color-g'>ammo</strong> from all undetonated <strong>mines</strong><br>and <strong>20%</strong> of <strong>mines</strong> after detonation",
|
||||
isGunTech: true,
|
||||
maxCount: 1,
|
||||
count: 0,
|
||||
frequency: 2,
|
||||
frequencyDefault: 2,
|
||||
allowed() {
|
||||
return tech.haveGunCheck("mine") && !tech.isMineDrop
|
||||
},
|
||||
requires: "mine, not bobby trap",
|
||||
effect() {
|
||||
tech.isMineAmmoBack = true;
|
||||
},
|
||||
remove() {
|
||||
tech.isMineAmmoBack = false;
|
||||
}
|
||||
},
|
||||
{
|
||||
name: "sentry",
|
||||
description: "instead of detonating, <strong>mines</strong> <strong>target</strong> mobs<br>with a stream of nails for about <strong>17</strong> seconds",
|
||||
@@ -4545,28 +4529,6 @@
|
||||
tech.isMineStun = false;
|
||||
}
|
||||
},
|
||||
{
|
||||
name: "booby trap",
|
||||
description: "drop a <strong>mine</strong> after picking up a <strong>power up</strong><br><strong>+30</strong> <strong class='color-j'>JUNK</strong> to the potential <strong class='color-m'>tech</strong> pool",
|
||||
isGunTech: true,
|
||||
maxCount: 1,
|
||||
count: 0,
|
||||
frequency: 2,
|
||||
frequencyDefault: 2,
|
||||
allowed() {
|
||||
return tech.haveGunCheck("mine") && !tech.isMineAmmoBack
|
||||
},
|
||||
requires: "mines, not mine reclamation",
|
||||
effect() {
|
||||
tech.isMineDrop = true;
|
||||
if (tech.isMineDrop) b.mine(m.pos, { x: 0, y: 0 }, 0, tech.isMineAmmoBack)
|
||||
tech.addJunkTechToPool(30)
|
||||
},
|
||||
remove() {
|
||||
tech.isMineDrop = false;
|
||||
if (this.count > 0) tech.removeJunkTechFromPool(30)
|
||||
}
|
||||
},
|
||||
{
|
||||
name: "mycelial fragmentation",
|
||||
description: "<strong class='color-p' style='letter-spacing: 2px;'>sporangium</strong> release <strong>6</strong> extra <strong class='color-p' style='letter-spacing: 2px;'>spores</strong><br>during their <strong>growth</strong> phase",
|
||||
@@ -4901,7 +4863,7 @@
|
||||
},
|
||||
{
|
||||
name: "uncertainty principle",
|
||||
description: "<strong>foam</strong> bubbles randomly change <strong>position</strong><br>increase <strong>foam</strong> <strong class='color-d'>damage</strong> per second by <strong>55%</strong>",
|
||||
description: "<strong>foam</strong> bubbles randomly change <strong>position</strong><br>increase <strong>foam</strong> <strong class='color-d'>damage</strong> per second by <strong>50%</strong>",
|
||||
isGunTech: true,
|
||||
maxCount: 1,
|
||||
count: 0,
|
||||
@@ -5964,7 +5926,10 @@
|
||||
tech.isIntangible = true;
|
||||
},
|
||||
remove() {
|
||||
tech.isIntangible = false;
|
||||
if (tech.isIntangible) {
|
||||
tech.isIntangible = false;
|
||||
player.collisionFilter.mask = cat.body | cat.map | cat.mob | cat.mobBullet | cat.mobShield //normal collisions
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -7730,7 +7695,6 @@
|
||||
isPiezo: null,
|
||||
isFastDrones: null,
|
||||
isFastSpores: null,
|
||||
superBallNumber: null,
|
||||
oneSuperBall: null,
|
||||
laserReflections: null,
|
||||
laserDamage: null,
|
||||
@@ -7745,7 +7709,6 @@
|
||||
isSporeField: null,
|
||||
isMissileField: null,
|
||||
isIceField: null,
|
||||
isMineAmmoBack: null,
|
||||
isPlasmaRange: null,
|
||||
isFreezeMobs: null,
|
||||
isIceCrystals: null,
|
||||
|
||||
Reference in New Issue
Block a user