diff options
author | xantara <xantara@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-02-22 02:08:57 +0000 |
---|---|---|
committer | xantara <xantara@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-02-22 02:08:57 +0000 |
commit | a72cf01c7ca53a6ffc810a2b1983ad8b34ef0467 (patch) | |
tree | c71953f31f482c7c542497b16f265ee5f6eae548 /src/map/skill.c | |
parent | 25d71a5dcfbda1f3442982db42bd8d642db12833 (diff) | |
download | hercules-a72cf01c7ca53a6ffc810a2b1983ad8b34ef0467.tar.gz hercules-a72cf01c7ca53a6ffc810a2b1983ad8b34ef0467.tar.bz2 hercules-a72cf01c7ca53a6ffc810a2b1983ad8b34ef0467.tar.xz hercules-a72cf01c7ca53a6ffc810a2b1983ad8b34ef0467.zip |
Applied renewal skill changes: (bugreport:5302)
- Arrow Shower's attack power (50+10*SkillLvl)
- Wind Blade's MATK per hit (from 100% to 150%)
- Storm Gust's chance of freezing (65-5*SkillLvl)
- Land Mine, Blast Mine, Claymore Trap's damage formula
- Spear Quicken's ASPD (fixed 7), CRIT (3*SkillLvl) and FLEE (2*SkillLvl)
- Holy Cross's double damage with 2-handed spear
- Axe Mastery's damage increase also applies to Sword class weapons
- Spiral Pierce's weapon requirement (now allows swords)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@15626 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/skill.c')
-rw-r--r-- | src/map/skill.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/skill.c b/src/map/skill.c index 1bd44b612..3e3b88ae2 100644 --- a/src/map/skill.c +++ b/src/map/skill.c @@ -829,7 +829,7 @@ int skill_additional_effect (struct block_list* src, struct block_list *bl, int * Storm Gust counter was dropped in renewal **/ #if REMODE - sc_start(bl,SC_FREEZE,20+(5*skilllv),skilllv,skill_get_time2(skillid,skilllv)); + sc_start(bl,SC_FREEZE,65-(5*skilllv),skilllv,skill_get_time2(skillid,skilllv)); #else //Tharis pointed out that this is normal freeze chance with a base of 300% if(tsc->sg_counter >= 3 && |