summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--npc/005-7/trainer.txt7
1 files changed, 7 insertions, 0 deletions
diff --git a/npc/005-7/trainer.txt b/npc/005-7/trainer.txt
index cb3b7db2a..a7fc492bc 100644
--- a/npc/005-7/trainer.txt
+++ b/npc/005-7/trainer.txt
@@ -556,6 +556,13 @@ OnKillMaggot:
message strcharinfo(0), l("@@/10 Maggots", .@k+1);
}
}
+ // Additional Cactus Drink drop rate for newcomers: 4.9% additional
+ if (BaseLevel <= 22) {
+ if (rand2(10000) < 490-(BaseLevel**2)) {
+ getmapxy(.@m$, .@x, .@y, 0);
+ makeitem CactusDrink, 1, .@m$, .@x, .@y;
+ }
+ }
fix_mobkill(Maggot);
end;
OnKillHouseMaggot: