diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-07-01 00:50:07 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-07-01 00:50:07 -0300 |
commit | 8c95871043d21d290b54cad0101bf5eb344d95c7 (patch) | |
tree | 6a48ce862ab20e75967d9ad558e30fe420966c2f /npc/functions/hub.txt | |
parent | cc2c7258be0506025e70432a1abf4138b2391b04 (diff) | |
download | serverdata-8c95871043d21d290b54cad0101bf5eb344d95c7.tar.gz serverdata-8c95871043d21d290b54cad0101bf5eb344d95c7.tar.bz2 serverdata-8c95871043d21d290b54cad0101bf5eb344d95c7.tar.xz serverdata-8c95871043d21d290b54cad0101bf5eb344d95c7.zip |
Redesign Luca interface
Diffstat (limited to 'npc/functions/hub.txt')
-rw-r--r-- | npc/functions/hub.txt | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/npc/functions/hub.txt b/npc/functions/hub.txt index 67b1b187e..064b34422 100644 --- a/npc/functions/hub.txt +++ b/npc/functions/hub.txt @@ -588,7 +588,7 @@ function script HUB_SkillInvoke { // Using a shield, so power is halved if (getequipid(EQI_HAND_L) > 0) .@PW=.@PW/2; - harm(@skillTarget, AdjustAttackpower(.@PW), HARM_PHYS, Ele_Neutral); + //harm(@skillTarget, AdjustAttackpower(.@PW), HARM_PHYS, Ele_Neutral); harm(@skillTarget, AdjustAttackpower(.@PW), HARM_PHYS, Ele_Fire); harm(@skillTarget, AdjustAttackpower(.@PW), HARM_PHYS, Ele_Water); harm(@skillTarget, AdjustAttackpower(.@PW), HARM_PHYS, Ele_Earth); @@ -596,6 +596,9 @@ function script HUB_SkillInvoke { harm(@skillTarget, AdjustAttackpower(.@PW), HARM_PHYS, Ele_Holy); harm(@skillTarget, AdjustAttackpower(.@PW), HARM_PHYS, Ele_Shadow); harm(@skillTarget, AdjustAttackpower(.@PW), HARM_PHYS, Ele_Ghost); + // The main elemental-less blast hits all in same square, + // and also hits behind (and on your square) + rectharm(@skillTarget, 0, 1, AdjustAttackpower(.@PW/2), HARM_PHYS, Ele_Neutral); break; */ // CLASS_OTHER |