diff options
Diffstat (limited to 'npc/functions/hub.txt')
-rw-r--r-- | npc/functions/hub.txt | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/npc/functions/hub.txt b/npc/functions/hub.txt index f3ff72983..a2a981da9 100644 --- a/npc/functions/hub.txt +++ b/npc/functions/hub.txt @@ -1,6 +1,7 @@ // TMW2 scripts. // Authors: // Jesusalva +// dangerDuck // TMW Org. // Description: // HUB functions (Login, Logout, Death) @@ -847,6 +848,20 @@ function script HUB_SkillInvoke { // and also hits behind (and on your square) rectharm(@skillTarget, 0, 1, AdjustAttackpower(.@PW/2), HARM_PHYS, Ele_Neutral); break; + case TMW2_STUNNINGSTRIKE: + // 70x3 = 210 + .@PW=65+(5*@skillLv); + .@TM=1600+(@skillLv*200); + // Using a shield, so power is halved + if (getequipid(EQI_HAND_L) > 0) + .@PW=.@PW/2; + harm(@skillTarget, AdjustAttackpower(.@PW), HARM_PHYS, Ele_Neutral); + sleep2(10); + harm(@skillTarget, AdjustAttackpower(.@PW), HARM_PHYS, Ele_Neutral); + sleep2(10); + harm(@skillTarget, AdjustAttackpower(.@PW), HARM_PHYS, Ele_Neutral); + sc_start SC_STUN, .@TM, 1, 3333, SCFLAG_NONE, @skillTarget; + break; //////////////////////////////// // CLASS_OTHER |