Skip to content

Commit

Permalink
fix client heal values
Browse files Browse the repository at this point in the history
  • Loading branch information
Await-0x committed Mar 5, 2025
1 parent cb53c53 commit 533cbde
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions client/src/battle/deathUtils.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ export const deathEffect = ({

else if (creature.cardId === 33) {
if (values.monsterType === tags.BRUTE) {
healHero(1);
healHero(2);
}

updateBoard(tags.MAGICAL, 1, 0);
Expand Down Expand Up @@ -110,7 +110,7 @@ export const deathEffect = ({

else if (creature.cardId === 48) {
if (board.magicalCount > 1) {
healHero(1);
healHero(2);
}
}

Expand All @@ -128,7 +128,7 @@ export const deathEffect = ({

else if (creature.cardId === 60) {
if (values.monsterType === tags.HUNTER) {
healHero(1);
healHero(2);
}
}

Expand All @@ -140,7 +140,7 @@ export const deathEffect = ({

else if (creature.cardId === 64) {
if (values.monsterType === tags.BRUTE) {
healHero(1);
healHero(2);
}
}

Expand Down

0 comments on commit 533cbde

Please sign in to comment.