diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-06-23 22:41:38 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-06-23 22:41:38 -0300 |
commit | 102e5a02609eb8cf3739589ea120647215e6d2c2 (patch) | |
tree | 695d6d0eda5e6ed894db79ca1f0866497510f185 /npc | |
parent | e854197f23ce2a0d818e1935ea1246d0e48e4327 (diff) | |
download | serverdata-102e5a02609eb8cf3739589ea120647215e6d2c2.tar.gz serverdata-102e5a02609eb8cf3739589ea120647215e6d2c2.tar.bz2 serverdata-102e5a02609eb8cf3739589ea120647215e6d2c2.tar.xz serverdata-102e5a02609eb8cf3739589ea120647215e6d2c2.zip |
Boost the HP option bonuses
Diffstat (limited to 'npc')
-rw-r--r-- | npc/craft/options.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/npc/craft/options.txt b/npc/craft/options.txt index 6d572f5bd..fd484a60a 100644 --- a/npc/craft/options.txt +++ b/npc/craft/options.txt @@ -395,11 +395,12 @@ function script csys_Multiplier { case IOPT_SCRESIST_CURSE: case IOPT_SCRESIST_BLIND: return 15; - case VAR_MAXHPAMOUNT: case VAR_MAXSPAMOUNT: case VAR_ITEMDEFPOWER: case VAR_MDEFPOWER: return 25; + case VAR_MAXHPAMOUNT: + return 35; default: return 10; } |