summaryrefslogtreecommitdiff
path: root/src/config
diff options
context:
space:
mode:
authormalufett <malufett.eat.my.binaries@gmail.com>2013-06-13 01:56:21 +0800
committerEuphy <euphy@rathena.org>2013-06-15 15:50:38 -0400
commit7c31f8720d8bd47c5ef134fc8dbe3bee54424af7 (patch)
tree2c492dcb9cb879dd9007ca48b193f45ccabefe5a /src/config
parent76d70688e9129f29f28ec6c838ddfbcf4be9b6fb (diff)
downloadhercules-7c31f8720d8bd47c5ef134fc8dbe3bee54424af7.tar.gz
hercules-7c31f8720d8bd47c5ef134fc8dbe3bee54424af7.tar.bz2
hercules-7c31f8720d8bd47c5ef134fc8dbe3bee54424af7.tar.xz
hercules-7c31f8720d8bd47c5ef134fc8dbe3bee54424af7.zip
Hercules Renewal Phase : Renewal
Rename SC names to eagis standard. Implement SC Configuration.(see db/sc_config.txt) Skill updates and fixes. Some code optimization. Signed-off-by: malufett <malufett.eat.my.binaries@gmail.com>
Diffstat (limited to 'src/config')
-rw-r--r--src/config/const.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/config/const.h b/src/config/const.h
index 756c681c1..7acdea688 100644
--- a/src/config/const.h
+++ b/src/config/const.h
@@ -60,8 +60,8 @@
/* ATCMD_FUNC(mobinfo) HIT and FLEE calculations */
#ifdef RENEWAL
- #define MOB_FLEE(mob) ( mob->lv + mob->status.agi + mob->status.luk/5 + 100 )
- #define MOB_HIT(mob) ( mob->lv + mob->status.dex + mob->status.luk/3 + 175 )
+ #define MOB_FLEE(mob) ( mob->lv + mob->status.agi + 100 )
+ #define MOB_HIT(mob) ( mob->lv + mob->status.dex + 150 )
#else
#define MOB_FLEE(mob) ( mob->lv + mob->status.agi )
#define MOB_HIT(mob) ( mob->lv + mob->status.dex )