summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 2cd4bbd08..b7f9461bd 100644
--- a/npc/functions/dungeon.txt
+++ b/npc/functions/dungeon.txt
@@ -63,14 +63,14 @@ OnCurse:
// MP is below 20%, you'll get cursed
if (Sp*100 < MaxSp*20)
- SC_Bonus(10, SC_CURSE, 1);
+ SC_Bonus(15, SC_CURSE, 1);
// MP is below 1%, you'll get start losing HP rapidly
if (Sp*100 < MaxSp)
percentheal -7, 0;
- // New tick (dies in 140~180 seconds)
- addtimer2 rand2(7000, 9000), .name$+"::OnCurse";
+ // New tick (cycles every 15 seconds in average)
+ addtimer2 rand2(14000, 15000), .name$+"::OnCurse";
end;
}