diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-07-20 18:03:18 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-07-20 18:03:18 +0000 |
commit | e6183e5b3d7461425ef5f529c3d757952b659652 (patch) | |
tree | c9ea8f36271d638488a28bc6b9388dfaedbe1987 /src/map/skill.c | |
parent | 73b3407374e2a7226b2f1ec7c6e9b127e65b6735 (diff) | |
download | hercules-e6183e5b3d7461425ef5f529c3d757952b659652.tar.gz hercules-e6183e5b3d7461425ef5f529c3d757952b659652.tar.bz2 hercules-e6183e5b3d7461425ef5f529c3d757952b659652.tar.xz hercules-e6183e5b3d7461425ef5f529c3d757952b659652.zip |
- Added a skill_unit_db entry for NJ_HYOUSYOURAKU, thanks to Eus for the data.
- Added the dummy intravision case for the changeoption packet 0x229
- Corrected Fog of Wall so that all targetted offensive skills (not only those who do damage) will fail on cast-end 75% of the time.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@7773 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/skill.c')
-rw-r--r-- | src/map/skill.c | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/src/map/skill.c b/src/map/skill.c index 9f874ed1e..e8a80fd0f 100644 --- a/src/map/skill.c +++ b/src/map/skill.c @@ -2623,15 +2623,10 @@ int skill_castend_damage_id (struct block_list* src, struct block_list *bl, int if (status_isdead(bl)) return 1; - if (skillid && skill_get_type(skillid) == BF_MAGIC) - { - sc = status_get_sc(bl); - if (status_isimmune(bl) || ( - sc && sc->count && sc->data[SC_FOGWALL].timer != -1 && rand()%100 < 75) - ) { //GTB/Fogwall makes all targetted skills silently fail. - if (sd) clif_skill_fail(sd,skillid,0,0); - return 1; - } + if (skillid && skill_get_type(skillid) == BF_MAGIC && status_isimmune(bl)) + { //GTB makes all targetted magic fail silently. + if (sd) clif_skill_fail(sd,skillid,0,0); + return 1; } sc = status_get_sc(src); @@ -3202,7 +3197,6 @@ int skill_castend_damage_id (struct block_list* src, struct block_list *bl, int break; case NJ_KOUENKA: case NJ_HYOUSENSOU: - case NJ_HYOUSYOURAKU: case NJ_HUUJIN: skill_attack(BF_MAGIC,src,src,bl,skillid,skilllv,tick,flag); break; @@ -3221,7 +3215,6 @@ int skill_castend_damage_id (struct block_list* src, struct block_list *bl, int //case NJ_KIRIKAGE: //case NJ_KOUENKA: //case NJ_HYOUSENSOU: - //case NJ_HYOUSYOURAKU: //case NJ_HUUJIN: //case NJ_KAMAITACHI: case NJ_ISSEN: @@ -5826,6 +5819,14 @@ int skill_castend_id (int tid, unsigned int tick, int id, int data) if (inf && battle_check_target(src, target, inf) <= 0) break; + + if(inf&BCT_ENEMY && (sc = status_get_sc(target)) && + sc->count && sc->data[SC_FOGWALL].timer != -1 && + rand()%100 < 75) + { //Fogwall makes all offensive-type targetted skills fail at 75% + if (sd) clif_skill_fail(sd,ud->skillid,0,0); + break; + } } //Avoid doing double checks for instant-cast skills. |