diff options
author | rud0lp20 <rud0lp20@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-07-28 13:20:00 +0000 |
---|---|---|
committer | rud0lp20 <rud0lp20@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-07-28 13:20:00 +0000 |
commit | b746ecdef2ed9b57db672f43842f2434da4c79f8 (patch) | |
tree | d806065951ebba476cf5bb45bbf4380f29db6598 /src/map/pc.h | |
parent | 3071aad50f5cab693678372c5d7c2285800bb5d9 (diff) | |
download | hercules-b746ecdef2ed9b57db672f43842f2434da4c79f8.tar.gz hercules-b746ecdef2ed9b57db672f43842f2434da4c79f8.tar.bz2 hercules-b746ecdef2ed9b57db672f43842f2434da4c79f8.tar.xz hercules-b746ecdef2ed9b57db672f43842f2434da4c79f8.zip |
Updated some skills to its RE behavior(AL_ANGELUS, RG_BACKSTAP, WZ_GRAVITATION, NJ_RAIGEKISAI).(bugreport:6342, bugreport:6336, bugreport:6339, bugreport:6331)
Added some Kagerou/Oboro skills. Special mega thanks to Judas :)
(KO_HUUMARANKA,KO_MEIKYOUSISUI,KO_ZANZOU,KO_KYOUGAKU,KO_JYUSATSU,KO_KAHU_ENTEN,KO_HYOUHU_HUBUKI,KO_KAZEHU_SEIRAN,KO_DOHU_KOUKAI)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16520 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/pc.h')
-rw-r--r-- | src/map/pc.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/map/pc.h b/src/map/pc.h index 269bc65dc..05ffb0c72 100644 --- a/src/map/pc.h +++ b/src/map/pc.h @@ -332,6 +332,8 @@ struct map_session_data { short spiritball, spiritball_old; int spirit_timer[MAX_SKILL_LEVEL]; + short talisman[5]; + int talisman_timer[5][10]; unsigned char potion_success_counter; //Potion successes in row counter unsigned char mission_count; //Stores the bounty kill count for TK_MISSION @@ -918,4 +920,7 @@ void pc_itemcd_do(struct map_session_data *sd, bool load); int pc_load_combo(struct map_session_data *sd); +int pc_add_talisman(struct map_session_data *sd,int interval,int max,int type); +int pc_del_talisman(struct map_session_data *sd,int count,int type); + #endif /* _PC_H_ */ |