diff options
author | Dastgir Pojee <dastgirp@gmail.com> | 2016-10-03 18:20:59 +0530 |
---|---|---|
committer | hemagx <ibrahem.h.basyone@gmail.com> | 2016-10-22 02:22:03 +0200 |
commit | 5e04f472e1ef618d9201fd22e382dca829992b3b (patch) | |
tree | 6722458b7239dfa722fe136708933e6eb066597c /src/map/unit.c | |
parent | 63c621ff7ceddb0fa12f8fabf7e074eb63b25eec (diff) | |
download | hercules-5e04f472e1ef618d9201fd22e382dca829992b3b.tar.gz hercules-5e04f472e1ef618d9201fd22e382dca829992b3b.tar.bz2 hercules-5e04f472e1ef618d9201fd22e382dca829992b3b.tar.xz hercules-5e04f472e1ef618d9201fd22e382dca829992b3b.zip |
Implemented SU_SV_ROOTTWIST Skill.
Duration: (5+(2*SkillLv)) seconds.
Cannot be used on Boss Monsters. Effect is cancelled when Heaven's Drive
or Trample is used.
Enemies trapped on roots receive poison property damage.
Diffstat (limited to 'src/map/unit.c')
-rw-r--r-- | src/map/unit.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/map/unit.c b/src/map/unit.c index d652df07e..0f3631792 100644 --- a/src/map/unit.c +++ b/src/map/unit.c @@ -2466,6 +2466,7 @@ int unit_remove_map(struct block_list *bl, clr_type clrtype, const char* file, i status_change_end(bl, SC_CURSEDCIRCLE_ATKER, INVALID_TIMER); //callme before warp status_change_end(bl, SC_NETHERWORLD, INVALID_TIMER); status_change_end(bl, SC_SUHIDE, INVALID_TIMER); + status_change_end(bl, SC_SV_ROOTTWIST, INVALID_TIMER); } if (bl->type&(BL_CHAR|BL_PET)) { |