From 536ef7b9fac615b799d67119c14e64706caf1f74 Mon Sep 17 00:00:00 2001 From: hppeng Date: Sun, 2 Jan 2022 23:46:25 -0800 Subject: [PATCH] Fix rally heal amount Was nerfed from 10% to 7% awhile ago, we never caught up --- js/damage_calc.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/damage_calc.js b/js/damage_calc.js index 7546f1d..f27e9d0 100644 --- a/js/damage_calc.js +++ b/js/damage_calc.js @@ -218,7 +218,7 @@ const spell_table = { { subtitle: "Total Damage", type: "damage", multiplier: 150, conversion: [60, 0, 0, 0, 40, 0], summary: true } ], RALLY: [ - { subtitle: "Self Heal", type: "heal", strength: 0.1, summary: true }, + { subtitle: "Self Heal", type: "heal", strength: 0.07, summary: true }, { subtitle: "Ally Heal", type: "heal", strength: 0.15 } ] } },