summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2022-09-30 00:03:44 -0300
committerJesusaves <cpntb1@ymail.com>2022-09-30 00:03:44 -0300
commitd047058bf8b8cb52327dbc91d4a2fe8201d5faf0 (patch)
tree80d5de30ebfd9855392b598517a49acf91e7ba09
parentc331252c0c3dec266d36927094a8c59814b558a1 (diff)
downloadserverdata-d047058bf8b8cb52327dbc91d4a2fe8201d5faf0.tar.gz
serverdata-d047058bf8b8cb52327dbc91d4a2fe8201d5faf0.tar.bz2
serverdata-d047058bf8b8cb52327dbc91d4a2fe8201d5faf0.tar.xz
serverdata-d047058bf8b8cb52327dbc91d4a2fe8201d5faf0.zip
This is the lowest I can currently offer with the current drop rules.
-rw-r--r--npc/027-1/laura.txt13
1 files changed, 7 insertions, 6 deletions
diff --git a/npc/027-1/laura.txt b/npc/027-1/laura.txt
index 2c6232a21..d73bc56a4 100644
--- a/npc/027-1/laura.txt
+++ b/npc/027-1/laura.txt
@@ -53,26 +53,27 @@ L_Tier1:
mesn;
mesq l("We only require a small fee of %d %s, or %d %s, or %d %s if you are poor adventurer.",
1, getitemlink(DivineApple),
- 30, getitemlink(SnakeEgg),
- 400, getitemlink(MaggotSlime));
+ 25, getitemlink(SnakeEgg),
+ 360, getitemlink(MaggotSlime));
next;
inventoryplace ScholarshipBadge, 1;
switch(select(
rif(countitem(DivineApple) >= 1, l("I got the apple.")),
- rif(countitem(SnakeEgg) >= 30, l("I got the eggs.")),
- rif(countitem(MaggotSlime) >= 400, l("I got the maggots slimes.")),
+ rif(countitem(SnakeEgg) >= 25, l("I got the eggs.")),
+ rif(countitem(MaggotSlime) >= 360, l("I got the maggots slimes.")),
l("I will apply later."))) {
case 1:
delitem DivineApple, 1;
getexp $MANA_BLVL*100, $MANA_JLVL*10;
+ getitem ScholarshipBadge, 1; // NOT A BUG
break;
case 2:
- delitem SnakeEgg, 30;
+ delitem SnakeEgg, 25;
getexp $MANA_BLVL*100, $MANA_JLVL*10;
break;
case 3:
- delitem MaggotSlime, 400;
+ delitem MaggotSlime, 360;
break;
default:
close;