Skip to content

Commit 61be16c

Browse files
Archergod relaly bad now
1 parent 209b174 commit 61be16c

2 files changed

Lines changed: 6 additions & 3 deletions

File tree

server/src/game/components/CardSystem.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -445,6 +445,9 @@ class CardSystem {
445445
p.sword.flyDuration.multiplier *= 0.7;
446446
if (p.sword.isFlying) {
447447
p.sword.damage.multiplier *= 0.65;
448+
if (p.evolutions && p.evolutions.evolution === Types.Evolution.SuperArcher) {
449+
p.sword.damage.multiplier *= 0.4;
450+
}
448451
}
449452
}
450453

server/src/game/evolutions/SuperArcher.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@ module.exports = class SuperArcher extends Evolution {
1414

1515
update(dt) {
1616
super.update(dt);
17-
this.player.shape.setScale(0.925);
17+
this.player.shape.setScale(0.85);
1818

1919
this.player.modifiers.scaleThrow = true;
2020
this.player.modifiers.throwDamage = 1.4;
2121

2222
this.player.health.max.multiplier *= 1;
23-
this.player.health.regenWait.multiplier = 0.7;
23+
this.player.health.regenWait.multiplier = 1.25;
2424
this.player.health.regen.multiplier *= 0.85;
25-
this.player.speed.multiplier *= 0.925;
25+
this.player.speed.multiplier *= 0.85;
2626

2727
this.player.sword.damage.multiplier *= 0.45;
2828
this.player.modifiers.chestPower = 2.2;

0 commit comments

Comments
 (0)