Skip to content

Commit fa6fc2e

Browse files
qol(sword-slitter): Added custom game log for the second sword slitter
1 parent efd57f1 commit fa6fc2e

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

src/abilities/Bounty-Hunter.ts

+5-4
Original file line numberDiff line numberDiff line change
@@ -146,8 +146,6 @@ export default (G: Game) => {
146146
const targetOriginalHealth = target.health;
147147

148148
const ability = this;
149-
ability.end();
150-
G.Phaser.camera.shake(0.01, 150, true, G.Phaser.camera.SHAKE_HORIZONTAL, true);
151149

152150
const damage = new Damage(
153151
ability.creature, // Attacker
@@ -157,18 +155,21 @@ export default (G: Game) => {
157155
G,
158156
);
159157
target.takeDamage(damage);
158+
G.Phaser.camera.shake(0.01, 150, true, G.Phaser.camera.SHAKE_HORIZONTAL, true);
160159
/** damage dealt is original health - current health
161160
* if current health is lower than damage dealt,
162161
* and the ability is upgraded,
163162
* make a second attack
164163
*/
165164
if (targetOriginalHealth - target.health >= target.health && this.isUpgraded()) {
166-
// Added a delay for the second attack
165+
// Added a delay for the second attack with a custom game log
167166
setTimeout(() => {
168167
G.Phaser.camera.shake(0.01, 150, true, G.Phaser.camera.SHAKE_HORIZONTAL, true);
169168
target.takeDamage(damage);
169+
ability.end(true);
170+
G.log('%CreatureName' + ability.creature.id + '% used ' + ability.title + ' twice');
170171
}, 1000);
171-
}
172+
} else ability.end();
172173
},
173174
},
174175

0 commit comments

Comments
 (0)