diff options
author | cookiecrumbs <cookiecrumbs@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-07-20 03:35:52 +0000 |
---|---|---|
committer | cookiecrumbs <cookiecrumbs@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-07-20 03:35:52 +0000 |
commit | bb874f80b45fa36bd2bc50a26c0324da2561c2ad (patch) | |
tree | 5e2af9c066d9a8868dc9c2c124c36db587d6da50 /src/map/status.h | |
parent | cf6f0ee71e978691de28579ad33c0b30fdc8be09 (diff) | |
download | hercules-bb874f80b45fa36bd2bc50a26c0324da2561c2ad.tar.gz hercules-bb874f80b45fa36bd2bc50a26c0324da2561c2ad.tar.bz2 hercules-bb874f80b45fa36bd2bc50a26c0324da2561c2ad.tar.xz hercules-bb874f80b45fa36bd2bc50a26c0324da2561c2ad.zip |
Added new status bonuses: SC_INCMHP and SC_INCMSP to increase maximum HP and SP by a FIXED amount.
Fixed the following items in the /db/*re/item_db.txt and /sql-files/item_db.sql: Increase HP Potion (Small), Increase HP Potion (Medium), Increase HP Potion (Large). bugreport:5790
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16454 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/status.h')
-rw-r--r-- | src/map/status.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/map/status.h b/src/map/status.h index b5a00b91e..b6d55cbb6 100644 --- a/src/map/status.h +++ b/src/map/status.h @@ -617,7 +617,9 @@ typedef enum sc_type { SC_ANGRIFFS_MODUS, SC_GOLDENE_FERSE, SC_ERASER_CUTTER, - + /* Max HP & SP */ + SC_INCMHP, + SC_INCMSP, SC_MAX, //Automatically updated max, used in for's to check we are within bounds. } sc_type; |