This commit is contained in:
borisflagell 2022-05-29 21:17:04 +02:00
parent 6f017bf4f6
commit 2f1d47b466

@ -1221,7 +1221,7 @@ export class Sleeve extends Person {
this.hp -= amt; this.hp -= amt;
if (this.hp <= 0) { if (this.hp <= 0) {
this.shock += 0.5; this.shock = Math.min(1, this.shock - 0.5);
this.hp = this.max_hp; this.hp = this.max_hp;
return true; return true;
} else { } else {