summaryrefslogtreecommitdiff
path: root/world/map/npc/magic/_procedures.txt
diff options
context:
space:
mode:
authormekolat <mekolat@users.noreply.github.com>2016-04-30 20:34:38 -0400
committermekolat <mekolat@users.noreply.github.com>2016-04-30 20:34:38 -0400
commit615231b146f22c08eead3ac0b2f0572042f0c4d6 (patch)
tree9448c97f6102d44b5d24e48950c84c01f61a1e19 /world/map/npc/magic/_procedures.txt
parent0daef27de9b26aa1cdd61cd7c620d554c5517795 (diff)
downloadserverdata-615231b146f22c08eead3ac0b2f0572042f0c4d6.tar.gz
serverdata-615231b146f22c08eead3ac0b2f0572042f0c4d6.tar.bz2
serverdata-615231b146f22c08eead3ac0b2f0572042f0c4d6.tar.xz
serverdata-615231b146f22c08eead3ac0b2f0572042f0c4d6.zip
take mdef into account for elt and melee spells
Diffstat (limited to 'world/map/npc/magic/_procedures.txt')
-rw-r--r--world/map/npc/magic/_procedures.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/world/map/npc/magic/_procedures.txt b/world/map/npc/magic/_procedures.txt
index b53aaa7c..aa59905b 100644
--- a/world/map/npc/magic/_procedures.txt
+++ b/world/map/npc/magic/_procedures.txt
@@ -46,7 +46,7 @@ function|script|elt_damage
set .@source, .caster;
if (!.@source) set .@source, getcharid(3);
- injure .@source, @target_id, .@dmg;
+ injure .@source, @target_id, (.@dmg * (100 - get(MDEF1, @target_id))) / 100;
misceffect getarg(4), @target_id;
return;
}
@@ -56,7 +56,7 @@ function|script|melee_damage
// args are spell power, target id, dmg
if ((getarg(0) - rand(100)) < (get(BaseLevel, getarg(1)) + get(MDEF1, getarg(1))))
injure BL_ID, getarg(1), 0;
- else injure BL_ID, getarg(1), getarg(2);
+ else injure BL_ID, getarg(1), (getarg(2) * (100 - get(MDEF1, @target_id))) / 100;
return;
}