pilot wave adjustments

pilot is back to it's previous speed, and spawning at mouse
pilot wave uses 50% less energy when you are low on energy, but it uses more energy then normal when you have more energy
pilot wave tech
  lost: time crystals, Lorentz transformation, annihilation
  gained: degenerate matter - 60% harm reduction while field is active
tech: potential well - blocks in pilot wave drift into the center of the field with a much higher force
  this lets you hold larger blocks and flick them much faster
This commit is contained in:
landgreen
2021-05-15 07:01:22 -07:00
parent 33ed7dddfa
commit feeba5156c
7 changed files with 60 additions and 38 deletions

View File

@@ -2500,7 +2500,7 @@ const b = {
if (Vector.magnitude(Vector.sub(this.position, player.position)) < 250 && m.immuneCycle < m.cycle) { //give energy
Matter.Body.setAngularVelocity(this, this.spin)
if (this.isUpgraded) {
m.energy += 0.11
m.energy += 0.1
simulation.drawList.push({ //add dmg to draw queue
x: this.position.x,
y: this.position.y,
@@ -3111,7 +3111,7 @@ const b = {
}
}
},
range: 190 + 60 * tech.isOrbitBotUpgrade, //range is set in bot upgrade too! //150 + (80 + 100 * tech.isOrbitBotUpgrade) * Math.random(), // + 5 * tech.orbitBotCount,
range: 190 + 100 * tech.isOrbitBotUpgrade, //range is set in bot upgrade too! //150 + (80 + 100 * tech.isOrbitBotUpgrade) * Math.random(), // + 5 * tech.orbitBotCount,
orbitalSpeed: 0,
phase: 2 * Math.PI * Math.random(),
do() {