diff options
-rw-r--r-- | npc/012-1/luffyx.txt | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/npc/012-1/luffyx.txt b/npc/012-1/luffyx.txt index 6034d55d6..fd0cf052d 100644 --- a/npc/012-1/luffyx.txt +++ b/npc/012-1/luffyx.txt @@ -27,7 +27,7 @@ L_SummerQuest: mesq l("Hey, do you know what is good on summer? @@!", getitemlink(LuffyxSummerShorts)); next; mesn; - mesq l("What about you bring me 100 @@ and 30 @@?", getitemlink(RedApple), getitemlink(MoubooSteak)); + mesq l("What about you bring me 60 @@, 40 @@ and 20 @@?", getitemlink(CactusCocktail), getitemlink(AppleCocktail), getitemlink(CherryCocktail)); next; select l("Not now, thanks"), @@ -38,13 +38,15 @@ L_SummerQuest: goto L_Main; if (@menu == 2) { if ( - countitem(RedApple) < 100 || - countitem(MoubooSteak) < 30 + countitem(CherryCocktail) < 20 || + countitem(CactusCocktail) < 60 || + countitem(AppleCocktail) < 40 ) goto L_Lying; inventoryplace LuffyxSummerShorts, 1; - delitem RedApple, 100; - delitem MoubooSteak, 30; + delitem CherryCocktail, 20; + delitem AppleCocktail, 40; + delitem CactusCocktail, 60; getitem LuffyxSummerShorts, 1; setq SQuest_Summer, 1; mesn; |