diff options
author | zephyrus <zephyrus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-09-01 19:23:57 +0000 |
---|---|---|
committer | zephyrus <zephyrus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-09-01 19:23:57 +0000 |
commit | de683beed6af67c57efd4b762a9797f98d4e28c6 (patch) | |
tree | 6939979299976a6f9cec9bbb3668973cb2b1ecd8 /src/map/status.h | |
parent | f6949cdf82ae995c013d96c1ce6510ff87dfa850 (diff) | |
download | hercules-de683beed6af67c57efd4b762a9797f98d4e28c6.tar.gz hercules-de683beed6af67c57efd4b762a9797f98d4e28c6.tar.bz2 hercules-de683beed6af67c57efd4b762a9797f98d4e28c6.tar.xz hercules-de683beed6af67c57efd4b762a9797f98d4e28c6.zip |
- Mercenary Bonus Status (currently activated each mob kill for testing).
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@13182 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/status.h')
-rw-r--r-- | src/map/status.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/map/status.h b/src/map/status.h index 8d9940b0f..ae26c499e 100644 --- a/src/map/status.h +++ b/src/map/status.h @@ -295,6 +295,14 @@ typedef enum sc_type { SC_DEF_RATE, SC_SPREGEN, SC_WALKSPEED, + + // Mercenary Only Bonus Effects + SC_MERC_FLEEUP, + SC_MERC_ATKUP, + SC_MERC_HPUP, + SC_MERC_SPUP, + SC_MERC_HITUP, + SC_MAX, //Automatically updated max, used in for's to check we are within bounds. } sc_type; @@ -457,6 +465,14 @@ enum si_type { //SI_FOODDEX = 274, //Same as 244 //SI_FOODINT = 275, //Same as 245 //SI_FOODLUK = 276, //Same as 246 + + // Mercenary Only + SI_MERC_FLEEUP = 277, + SI_MERC_ATKUP = 278, + SI_MERC_HPUP = 279, + SI_MERC_SPUP = 280, + SI_MERC_HITUP = 281, + SI_SLOWCAST = 282, SI_CRITICALWOUND = 286, SI_DEF_RATE = 290, |