summaryrefslogtreecommitdiff
path: root/npc
diff options
context:
space:
mode:
Diffstat (limited to 'npc')
-rw-r--r--npc/magic/config.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/magic/config.txt b/npc/magic/config.txt
index ddbbf99d..00817e7f 100644
--- a/npc/magic/config.txt
+++ b/npc/magic/config.txt
@@ -39,7 +39,7 @@ function script AdjustSpellpower {
// Calculation FIX
if (.@type == HARM_MAGI) {
- .@power+=(readparam2(UDT_INT)/2);
+ .@power+=(readparam2(UDT_INT)/5);
.@dmg=rand2(
readbattleparam(getcharid(3), UDT_MATKMIN),
readbattleparam(getcharid(3), UDT_MATKMAX));
@@ -47,7 +47,7 @@ function script AdjustSpellpower {
//if (.@target)
// .@dmg=max(0, .@dmg-getunitdata(.@target, UDT_MDEF));
} else if (.@type == HARM_PHYS) {
- .@power+=(readparam2(UDT_STR)/2);
+ .@power+=(readparam2(UDT_STR)/5);
.@dmg=rand2(
readbattleparam(getcharid(3), UDT_ATKMIN),
readbattleparam(getcharid(3), UDT_ATKMAX));