From b57c7dfb7145d3d059c3cff4661bc9918c169aaf Mon Sep 17 00:00:00 2001 From: Jesusaves Date: Thu, 5 Aug 2021 21:49:27 -0300 Subject: Nerf the Curse: -5% MP to -4% MP; And -10% HP to -9% HP --- npc/functions/dungeon.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'npc/functions/dungeon.txt') 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"; -- cgit v1.2.3-70-g09d2