diff options
author | zephyrus <zephyrus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-05-08 16:58:57 +0000 |
---|---|---|
committer | zephyrus <zephyrus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-05-08 16:58:57 +0000 |
commit | b6f1b6b9a11bdb8a5001dbc042d54fce0a963705 (patch) | |
tree | cd37827a952867c4dc561f2961d3687561582e31 /src/map/status.h | |
parent | ffa877bd248a6f6a014dd29e4c158b7399cb0a98 (diff) | |
download | hercules-b6f1b6b9a11bdb8a5001dbc042d54fce0a963705.tar.gz hercules-b6f1b6b9a11bdb8a5001dbc042d54fce0a963705.tar.bz2 hercules-b6f1b6b9a11bdb8a5001dbc042d54fce0a963705.tar.xz hercules-b6f1b6b9a11bdb8a5001dbc042d54fce0a963705.zip |
- Added some new items and headgears.
- Changed the way DEF Potion and MDEF potion works to official.
- Cleanups to Barricade Engine. It now can be used in WoE 2.0, i will release optional scripts soon.
- Fixes to @noks. Now if the mob is targeting someone else the protection get lost.
- Added new status effects icons to cash items.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12693 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/status.h')
-rw-r--r-- | src/map/status.h | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/src/map/status.h b/src/map/status.h index 0cc5435a5..276cd1b1c 100644 --- a/src/map/status.h +++ b/src/map/status.h @@ -282,7 +282,7 @@ typedef enum sc_type { SC_INCDEF, SC_INCBASEATK, SC_FASTCAST, - SC_INCMDEFRATE, + SC_MDEF_RATE, SC_HPREGEN, SC_INCHEALRATE, SC_PNEUMA, @@ -292,6 +292,7 @@ typedef enum sc_type { SC_SPCOST_RATE, SC_COMMONSC_RESIST, SC_SEVENWIND, + SC_DEF_RATE, SC_MAX, //Automatically updated max, used in for's to check we are within bounds. } sc_type; @@ -456,6 +457,15 @@ enum si_type { //SI_FOODLUK = 276, //Same as 246 SI_SLOWCAST = 282, SI_CRITICALWOUND = 286, + SI_DEF_RATE = 290, + SI_MDEF_RATE = 291, + SI_INCCRI = 292, + SI_INCHEALRATE = 293, + SI_HPREGEN = 294, + // 295 Sword ? + SI_SPCOST_RATE = 300, + SI_COMMONSC_RESIST = 301, + SI_ARMOR_RESIST = 302, }; // JOINTBEAT stackable ailments |