diff options
Diffstat (limited to 'npc/025-1/rossy.txt')
-rw-r--r-- | npc/025-1/rossy.txt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/npc/025-1/rossy.txt b/npc/025-1/rossy.txt index 98f47b98..95a96670 100644 --- a/npc/025-1/rossy.txt +++ b/npc/025-1/rossy.txt @@ -34,7 +34,7 @@ L_No: L_Set: mes "[Rossy]"; - mes "\"Really? Can you get 5 Cherries for me? These are the fruits I like best.\""; + mes "\"Really? Can you get 10 Cherries for me? These are the fruits I like best.\""; next; menu "Sure, I'll be back with your cherries.", L_Get, @@ -43,14 +43,14 @@ L_Set: L_Get: mes "[Rossy]"; set Rossy_Quest, 1; - mes "\"Please, get 5 Cherries for me.\""; + mes "\"Please, get 10 Cherries for me.\""; close; L_Check: - if(countitem("Cherry") < 5) goto L_Get; + if(countitem("Cherry") < 10) goto L_Get; mes "[Rossy]"; set Rossy_Quest, 2; - delitem "Cherry", 5; + delitem "Cherry", 10; getexp 2000, 0; mes "\"I can't believe my eyes, you got them! Thanks a lot!\""; next; @@ -123,7 +123,7 @@ L_BT: L_Donet: mes "[Rossy]"; - mes "\"Cool, I've passed my exam! Hurray!!!\""; + mes "\"Cool, I've passed my exam! Hurray! You might want to talk to my mother now.\""; if (Rossy_Quest == 10 && countitem("redrose") >= 15) goto L_RG; close; |