File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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 ;
You can’t perform that action at this time.
0 commit comments