fix(tests): lint, expects, correct downscoring for Gold

This commit is contained in:
Kalista Payne
2026-03-19 19:02:56 -05:00
parent 2204885833
commit 6343f32f79
3 changed files with 6 additions and 5 deletions
+2 -1
View File
@@ -263,7 +263,8 @@ spells.healer = {
notes: t('spellHealerHealAllNotes'),
cast (user, target) {
each(target, member => {
member.stats.hp += Math.ceil((statsComputed(user).con + statsComputed(user).int + 5) * 0.04);
member.stats.hp += Math.ceil(
(statsComputed(user).con + statsComputed(user).int + 5) * 0.04);
if (member.stats.hp > 50) member.stats.hp = 50;
});
},