diff options
Diffstat (limited to 'npc/027-1')
-rw-r--r-- | npc/027-1/laura.txt | 13 |
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; |