diff options
author | blackhole89 <blackhole89@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-03-09 17:15:36 +0000 |
---|---|---|
committer | blackhole89 <blackhole89@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-03-09 17:15:36 +0000 |
commit | a81d4e79c7aa5b519047ee4ee1d59f5ecf27083f (patch) | |
tree | b0df7a38663d229d2aa5f2e099ad879471619948 | |
parent | 3d6011c46f2f556aa0b9ad41c9e6139ba687e90d (diff) | |
download | hercules-a81d4e79c7aa5b519047ee4ee1d59f5ecf27083f.tar.gz hercules-a81d4e79c7aa5b519047ee4ee1d59f5ecf27083f.tar.bz2 hercules-a81d4e79c7aa5b519047ee4ee1d59f5ecf27083f.tar.xz hercules-a81d4e79c7aa5b519047ee4ee1d59f5ecf27083f.zip |
There go the status icons.
What is SI_MAEMI? Or rather, the icon in i_maemi.tga.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@5534 54d463be-8e91-2dee-dedb-b68131a5f0ec
-rw-r--r-- | Changelog-Trunk.txt | 2 | ||||
-rw-r--r-- | src/map/status.c | 10 | ||||
-rw-r--r-- | src/map/status.h | 8 |
3 files changed, 15 insertions, 5 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt index 86abd3c6f..26aba40ca 100644 --- a/Changelog-Trunk.txt +++ b/Changelog-Trunk.txt @@ -5,6 +5,8 @@ IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK. EV GOES INTO TRUNK AND WILL BE MERGED INTO STABLE BY VALARIS AND WIZPUTER. -- VALARIS
2006/03/09
+ * Added Gunslinger/Ninja Status Change icons. Somebody needs to look into
+ them though for not all SCs have a matching SI. [blackhole89]
* Changed ITEM_NAME_LENGTH to 50. [Skotlex]
* Fixed stun's duration not getting reduced by vit + luk/3 [Skotlex]
* Fixed #itemlist not taking into consideration crafted/forged items and
diff --git a/src/map/status.c b/src/map/status.c index 256588265..2d8080811 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -278,16 +278,16 @@ void initChangeTables(void) { set_sc(WZ_SIGHTBLASTER, SC_SIGHTBLASTER, SI_SIGHTBLASTER);
set_sc(DC_WINKCHARM, SC_WINKCHARM, SI_WINKCHARM);
set_sc(MO_BALKYOUNG, SC_STUN, SI_BLANK);
- //Until they're at right position - gs_set_sc- [Vicious]
- set_sc(GS_MADNESSCANCEL, SC_MADNESSCANCEL, SI_BLANK);
- set_sc(GS_ADJUSTMENT, SC_ADJUSTMENT, SI_BLANK);
+ //Until they're at right position - gs_set_sc- [Vicious] / some of these don't seem to have a status icon adequate [blackhole89]
+ set_sc(GS_MADNESSCANCEL, SC_MADNESSCANCEL, SI_MADNESSCANCEL);
+ set_sc(GS_ADJUSTMENT, SC_ADJUSTMENT, SI_ADJUSTMENT);
set_sc(GS_INCREASING, SC_INCREASING, SI_BLANK);
- set_sc(GS_GATLINGFEVER, SC_GATLINGFEVER, SI_BLANK);
+ set_sc(GS_GATLINGFEVER, SC_GATLINGFEVER, SI_GATLINGFEVER);
set_sc(NJ_TATAMIGAESHI, SC_TATAMIGAESHI, SI_BLANK);
set_sc(NJ_UTSUSEMI, SC_UTSUSEMI, SI_BLANK);
set_sc(NJ_KAENSIN, SC_KAENSIN, SI_BLANK);
set_sc(NJ_SUITON, SC_SUITON, SI_BLANK);
- set_sc(NJ_NEN, SC_NEN, SI_BLANK);
+ set_sc(NJ_NEN, SC_NEN, SI_NEN);
// Storing the target job rather than simply SC_SPIRIT simplifies code later on.
SkillStatusChangeTable[SL_ALCHEMIST] = MAPID_ALCHEMIST,
diff --git a/src/map/status.h b/src/map/status.h index d136394da..ccaf54209 100644 --- a/src/map/status.h +++ b/src/map/status.h @@ -371,6 +371,14 @@ enum { SI_WINKCHARM = 199,
SI_CLOSECONFINE = 200,
SI_CLOSECONFINE2 = 201,
+ SI_MADNESSCANCEL = 203, //[blackhole89]
+ SI_GATLINGFEVER = 204,
+ // 205 = Gloria again
+ SI_MAEMI = 206,
+ // 207 = crash
+ SI_NEN = 208,
+ SI_ADJUSTMENT = 209,
+ SI_ACCURACY = 210
};
extern int StatusIconChangeTable[];
|