diff --git a/src/game/mouse/dodge/missile.js b/src/game/mouse/dodge/missile.js index 6a64856..3e7a154 100644 --- a/src/game/mouse/dodge/missile.js +++ b/src/game/mouse/dodge/missile.js @@ -156,23 +156,23 @@ Missile.prototype.speedUp = function() { switch(this.speedLevel) { case 1: - this.tint = 0xffffff; + this.tint = 0x88ff88; // green break; case 2: - this.tint = 0xffaaaa; + this.tint = 0x8888ff; // purble break; case 3: - this.tint = 0xaaffaa; + this.tint = 0xc080c0; // purple break; case 4: - this.tint = 0xaaaaff; + this.tint = 0xff8888; // red break; case 5: - this.tint = 0xaaaaaa; + this.tint = 0xfee101; // gold break; } }