diff options
author | Jedzkie <jedzkie13@rocketmail.com> | 2015-12-15 00:43:36 +0800 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2015-12-14 18:28:35 +0100 |
commit | 8924522fe29079a66f4d9b6d88b50bcdadf7df9a (patch) | |
tree | bf625568a7f1873e0d85540d20234c8ef2ccaaca /src/map/mob.c | |
parent | 9bafc4a5a02e2fb3f48bb9abefaf41ea452929d5 (diff) | |
download | hercules-8924522fe29079a66f4d9b6d88b50bcdadf7df9a.tar.gz hercules-8924522fe29079a66f4d9b6d88b50bcdadf7df9a.tar.bz2 hercules-8924522fe29079a66f4d9b6d88b50bcdadf7df9a.tar.xz hercules-8924522fe29079a66f4d9b6d88b50bcdadf7df9a.zip |
Added official effect of Mora Berry.
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'src/map/mob.c')
-rw-r--r-- | src/map/mob.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/map/mob.c b/src/map/mob.c index a6e2c7c21..e06a16317 100644 --- a/src/map/mob.c +++ b/src/map/mob.c @@ -4981,9 +4981,10 @@ int do_final_mob(void) } void mob_defaults(void) { - //Defines the Manuk/Splendide mob groups for the status reductions [Epoque] + // Defines the Manuk/Splendide/Mora mob groups for the status reductions [Epoque & Frost] const int mob_manuk[8] = { 1986, 1987, 1988, 1989, 1990, 1997, 1998, 1999 }; const int mob_splendide[5] = { 1991, 1992, 1993, 1994, 1995 }; + const int mob_mora[5] = { 2137, 2136, 2134, 2133, 2132 }; mob = &mob_s; @@ -4993,6 +4994,8 @@ void mob_defaults(void) { memcpy(mob->manuk, mob_manuk, sizeof(mob->manuk)); memcpy(mob->splendide, mob_splendide, sizeof(mob->splendide)); + memcpy(mob->mora, mob_mora, sizeof(mob->mora)); + /* */ mob->reload = mob_reload; mob->init = do_init_mob; |