From 6f0c254269fdce171514e4c7b6a42db720cb0c02 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E1=84=8B=E1=85=A2=E1=84=91=E1=85=B3=E1=86=AF=20=E1=84=82?= =?UTF-8?q?=E1=85=A9=E1=84=90=E1=85=B3=E1=84=87=E1=85=AE=E1=86=A8?= Date: Thu, 20 Dec 2018 22:58:33 +0900 Subject: [PATCH] Fix: chagne missile color --- src/game/mouse/dodge/missile.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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; } }