summaryrefslogtreecommitdiff
path: root/npc/items/rand_sc_heal.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/items/rand_sc_heal.txt')
-rw-r--r--npc/items/rand_sc_heal.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/items/rand_sc_heal.txt b/npc/items/rand_sc_heal.txt
index fca290644..57948b94e 100644
--- a/npc/items/rand_sc_heal.txt
+++ b/npc/items/rand_sc_heal.txt
@@ -39,11 +39,11 @@ function script ItHeal2 {
// Calculate healing value in %
.@min=.@rarity * ((.@type*1) + 1);
- .@max=.@rarity * ((.@type*1) + 1);
+ .@max=.@rarity * ((.@type*2) + 1);
// Vitality raises the minimum healing value in 1%, capped at maximum vlaue
// It also raises @max up to double
- .@max = min(.@max*2, .@min+(readparam2(bVit)/50));
+ .@max = min(.@max*2, .@max+(readparam2(bVit)/50));
.@min = min(.@max, .@min+(readparam2(bVit)/30));
// Make these abstract % in absolute values