summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2021-08-05 21:49:27 -0300
committerJesusaves <cpntb1@ymail.com>2021-08-05 21:49:27 -0300
commitb57c7dfb7145d3d059c3cff4661bc9918c169aaf (patch)
treeb1ce726545ce15b7b7ff894c826c84e717f727a5
parent60c654dd42f6564c98065690c2cd9a22711b0790 (diff)
downloadserverdata-b57c7dfb7145d3d059c3cff4661bc9918c169aaf.tar.gz
serverdata-b57c7dfb7145d3d059c3cff4661bc9918c169aaf.tar.bz2
serverdata-b57c7dfb7145d3d059c3cff4661bc9918c169aaf.tar.xz
serverdata-b57c7dfb7145d3d059c3cff4661bc9918c169aaf.zip
Nerf the Curse: -5% MP to -4% MP; And -10% HP to -9% HP
-rw-r--r--npc/functions/dungeon.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/functions/dungeon.txt b/npc/functions/dungeon.txt
index 4ea5bfa54..d2a155fe4 100644
--- a/npc/functions/dungeon.txt
+++ b/npc/functions/dungeon.txt
@@ -57,11 +57,11 @@ OnCurse:
dispbottom l("This is a Cursed Lands map, you'll lose mana over time and may also incurr in debuffs if mana is low (may cause death).");
}
- // You are in a CURSEMAP$, so suffer damage from heat
+ // You are in a CURSEMAP$, so suffer damage from the curse
if (@purifio > gettimetick(2) || Class == Savior)
heal 0, -1;
else
- percentheal 0, -5;
+ percentheal 0, -4;
// MP is below 20%, you'll get cursed
if (Sp*100 < MaxSp*20)
@@ -69,7 +69,7 @@ OnCurse:
// MP is below 1%, you'll get start losing HP rapidly
if (Sp*100 < MaxSp)
- percentheal -10, 0;
+ percentheal -9, 0;
// New tick (cycles every 15 seconds in average)
addtimer2 rand2(14000, 15000), .name$+"::OnCurse";