diff options
author | Jesusaves <cpntb1@ymail.com> | 2022-09-29 23:59:27 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2022-09-29 23:59:27 -0300 |
commit | c331252c0c3dec266d36927094a8c59814b558a1 (patch) | |
tree | 95f1da26409682f590051cb37ec41ba9686c05de /npc/027-1/laura.txt | |
parent | f944d4c4afe2bf5c709c8335e16267720fc98423 (diff) | |
download | serverdata-c331252c0c3dec266d36927094a8c59814b558a1.tar.gz serverdata-c331252c0c3dec266d36927094a8c59814b558a1.tar.bz2 serverdata-c331252c0c3dec266d36927094a8c59814b558a1.tar.xz serverdata-c331252c0c3dec266d36927094a8c59814b558a1.zip |
Finally nerf First Tier fee from 40 eggs to 30 eggs, and 500 slime to 400 slime.
Completioners will get 60,000 experience and 20 GP.
Diffstat (limited to 'npc/027-1/laura.txt')
-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; |