fix(tests): lint, expects, correct downscoring for Gold
This commit is contained in:
@@ -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;
|
||||
});
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user