diff options
Diffstat (limited to 'npc/027-1')
-rw-r--r-- | npc/027-1/laura.txt | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/npc/027-1/laura.txt b/npc/027-1/laura.txt index 2374c0f5e..2c6232a21 100644 --- a/npc/027-1/laura.txt +++ b/npc/027-1/laura.txt @@ -51,13 +51,16 @@ L_Tier1: mesq l("Good. Did you knew you could register to the Special Class, in order to get an extra skill point?"); next; mesn; - mesq l("We only require a small fee of 1 @@, or 40 @@, or 500 @@ if you are poor adventurer.", getitemlink(DivineApple), getitemlink(SnakeEgg), getitemlink(MaggotSlime)); + 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)); next; inventoryplace ScholarshipBadge, 1; switch(select( rif(countitem(DivineApple) >= 1, l("I got the apple.")), - rif(countitem(SnakeEgg) >= 40, l("I got the eggs.")), - rif(countitem(MaggotSlime) >= 500, l("I got the maggots slimes.")), + rif(countitem(SnakeEgg) >= 30, l("I got the eggs.")), + rif(countitem(MaggotSlime) >= 400, l("I got the maggots slimes.")), l("I will apply later."))) { case 1: @@ -65,11 +68,11 @@ L_Tier1: getexp $MANA_BLVL*100, $MANA_JLVL*10; break; case 2: - delitem SnakeEgg, 40; + delitem SnakeEgg, 30; getexp $MANA_BLVL*100, $MANA_JLVL*10; break; case 3: - delitem MaggotSlime, 500; + delitem MaggotSlime, 400; break; default: close; |