diff options
Diffstat (limited to 'npc/functions/class.txt')
-rw-r--r-- | npc/functions/class.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/functions/class.txt b/npc/functions/class.txt index 85a28fb0e..c20e49a6b 100644 --- a/npc/functions/class.txt +++ b/npc/functions/class.txt @@ -104,11 +104,11 @@ L_Tier2: mesq l("But whoa, not so fast! You must pass the seven steps of a trial first!"); next; mesn; - mesq l("The first trial is simple, I'm not doing anything in special. Bring me 1 @@, or 20 @@ and 20 @@.", getitemlink(DivineApple), getitemlink(SilkCocoon), getitemlink(ChocolateMouboo)); + mesq l("The first trial is simple, I'm not doing anything in special. Bring me 1 @@, or 200 @@ and 20 @@.", getitemlink(DivineApple), getitemlink(SilkCocoon), getitemlink(ChocolateMouboo)); next; switch(select( rif(countitem(DivineApple) >= 1, l("I got the apple.")), - rif(countitem(SilkCocoon) >= 20 && countitem(ChocolateMouboo) >= 20, l("I got the silk and chocolate.")), + rif(countitem(SilkCocoon) >= 200 && countitem(ChocolateMouboo) >= 20, l("I got the silk and chocolate.")), l("I will apply later."))) { case 1: @@ -116,7 +116,7 @@ L_Tier2: goto L_Tier2Ok; break; case 2: - delitem SilkCocoon, 20; + delitem SilkCocoon, 200; delitem ChocolateMouboo, 20; goto L_Tier2Ok; break; |