diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-10-07 21:35:41 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-10-07 21:35:41 -0300 |
commit | c3bdfce989c9964dc1ba3688f35dc2fb8b8a84ac (patch) | |
tree | b5ef83f0e06de1d1ae9a1f1a93b135f39cde2eb6 /src/emap/init.c | |
parent | e24e5c9b3f954d8d7707c2c859a2de94ab412ded (diff) | |
download | evol-hercules-c3bdfce989c9964dc1ba3688f35dc2fb8b8a84ac.tar.gz evol-hercules-c3bdfce989c9964dc1ba3688f35dc2fb8b8a84ac.tar.bz2 evol-hercules-c3bdfce989c9964dc1ba3688f35dc2fb8b8a84ac.tar.xz evol-hercules-c3bdfce989c9964dc1ba3688f35dc2fb8b8a84ac.zip |
REWRITE Healing Formula.
It now relies on Defense and MATK; It will use whatever is higher.
When healing self only, healing others still follow previous formula.
Diffstat (limited to 'src/emap/init.c')
-rw-r--r-- | src/emap/init.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/emap/init.c b/src/emap/init.c index 57f2e35..aa928c3 100644 --- a/src/emap/init.c +++ b/src/emap/init.c @@ -393,6 +393,7 @@ HPExport void plugin_init (void) addHookPost(mob, spawn_dataset, emob_spawn_dataset_post); addHookPost(skill, check_condition_castend, eskill_check_condition_castend_post); addHookPost(skill, get_index, eskill_get_index_post); + addHookPost(skill, calc_heal, eskill_calc_heal_post); addHookPost(pc, additem, epc_additem_post); addHookPost(pc, isequip, epc_isequip_post); addHookPost(pc, isUseitem, epc_isequip_post); |