diff options
author | L0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2010-06-01 23:01:54 +0000 |
---|---|---|
committer | L0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2010-06-01 23:01:54 +0000 |
commit | f1c4780376953eae3c5e38b7615c06e07b178431 (patch) | |
tree | f174d175dbf283294387ae724a01ccb8e3756427 /src/map/mob.c | |
parent | ebab0958bab3daf5834d5805ef3425a11fffc3bb (diff) | |
download | hercules-f1c4780376953eae3c5e38b7615c06e07b178431.tar.gz hercules-f1c4780376953eae3c5e38b7615c06e07b178431.tar.bz2 hercules-f1c4780376953eae3c5e38b7615c06e07b178431.tar.xz hercules-f1c4780376953eae3c5e38b7615c06e07b178431.zip |
* Implemented the Manuk and Splendide item status effects, thanks to Epoque.
* Implemented Manuk and Splendide consumable items.
* Added Splendide and Manuk merchants.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@14327 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/mob.c')
-rw-r--r-- | src/map/mob.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/map/mob.c b/src/map/mob.c index afe8adf5b..80251af1b 100644 --- a/src/map/mob.c +++ b/src/map/mob.c @@ -73,6 +73,10 @@ static struct { #define CLASSCHANGE_BOSS_NUM 21 +//Defines the Manuk/Splendide mob groups for the status reductions [Epoque] +const int mob_manuk[] = { 1986, 1987, 1988, 1989, 1990, 1997, 1998, 1999 }; +const int mob_splendide[] = { 1991, 1992, 1993, 1994, 1995 }; + /*========================================== * Local prototype declaration (only required thing) *------------------------------------------*/ |