diff options
Diffstat (limited to 'npc/functions')
-rw-r--r-- | npc/functions/hub.txt | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/npc/functions/hub.txt b/npc/functions/hub.txt index 976ef310d..601f6d284 100644 --- a/npc/functions/hub.txt +++ b/npc/functions/hub.txt @@ -368,16 +368,15 @@ function script HUB_SkillInvoke { case TMW2_FROSTDIVER: .@PW=80+(10*@skillLv); - // 8% chance, 10s - sc_start SC_FREEZE, 10000, 1, 800, flag?, @skillTarget; + // 22% chance, 2.5s + sc_start SC_FREEZE, 2500, 1, 2200, SCFLAG_NONE, @skillTarget; harm(@skillTarget, AdjustSpellpower(.@PW), HARM_MAGI, Ele_Water); break; case TMW2_FROSTNOVA: .@PW=80+(10*@skillLv); - // TODO: All this in area - // 8% chance, 10s - sc_start SC_FREEZE, 10000, 1, 800, flag?, @skillTarget; - areaharm(@skillTarget, 6, AdjustSpellpower(.@PW), HARM_MAGI, Ele_Water); + // 18% chance, 3s, 3x3 radius + areasc(3, 3000, SC_FREEZE, BL_MOB|BL_PC|BL_HOM|BL_MER, "filter_hostile", @skillTarget, 1800); + areaharm(@skillTarget, 3, AdjustSpellpower(.@PW), HARM_MAGI, Ele_Water); break; case TMW2_NILFHEIM: // Already Implemented, Needs Cooldown/etc |