level boss health rework

level bosses will do about 50% less damage on collisions, but they will take about 33% more to kill

fixed and renamed the new drone tech
This commit is contained in:
landgreen
2021-03-16 20:33:14 -07:00
parent 05fcb823b2
commit 4b50f08056
7 changed files with 37 additions and 40 deletions

View File

@@ -2109,11 +2109,11 @@ const b = {
powerUp.splice(i, 1);
if (tech.isDroneGrab) {
this.isImproved = true;
const SCALE = 2.5
const SCALE = 2.25
Matter.Body.scale(this, SCALE, SCALE);
this.lookFrequency = 30;
this.endCycle += 2500
this.frictionAir = 0
this.lookFrequency = 30 + Math.floor(11 * Math.random());
this.endCycle += 3000 * tech.droneCycleReduction * tech.isBulletsLastLonger
// this.frictionAir = 0
}
break;
}