diff options
author | Haru <haru@dotalux.com> | 2015-12-14 21:30:42 +0100 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2015-12-28 18:35:58 +0100 |
commit | 08fc3deb0234208b0abf3ed7fb4eadba44456fdf (patch) | |
tree | 62d7441328502a236bffe5d862f60996793fc543 /src/map/mob.c | |
parent | 943daa9da6610bd900aee9134951561e8e663a93 (diff) | |
download | hercules-08fc3deb0234208b0abf3ed7fb4eadba44456fdf.tar.gz hercules-08fc3deb0234208b0abf3ed7fb4eadba44456fdf.tar.bz2 hercules-08fc3deb0234208b0abf3ed7fb4eadba44456fdf.tar.xz hercules-08fc3deb0234208b0abf3ed7fb4eadba44456fdf.zip |
Added Splendide, Manuk and Mora mobs to the mob_id enum
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'src/map/mob.c')
-rw-r--r-- | src/map/mob.c | 27 |
1 files changed, 24 insertions, 3 deletions
diff --git a/src/map/mob.c b/src/map/mob.c index 5950758a0..21ebea650 100644 --- a/src/map/mob.c +++ b/src/map/mob.c @@ -5010,9 +5010,30 @@ int do_final_mob(void) void mob_defaults(void) { // 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 }; + const int mob_manuk[8] = { + MOBID_TATACHO, + MOBID_CENTIPEDE, + MOBID_NEPENTHES, + MOBID_HILLSRION, + MOBID_HARDROCK_MOMMOTH, + MOBID_G_TATACHO, + MOBID_G_HILLSRION, + MOBID_CENTIPEDE_LARVA, + }; + const int mob_splendide[5] = { + MOBID_TENDRILRION, + MOBID_CORNUS, + MOBID_NAGA, + MOBID_LUCIOLA_VESPA, + MOBID_PINGUICULA, + }; + const int mob_mora[5] = { + MOBID_POM_SPIDER, + MOBID_ANGRA_MANTIS, + MOBID_PARUS, + MOBID_LITTLE_FATUM, + MOBID_MIMING, + }; mob = &mob_s; |