diff options
Diffstat (limited to 'npc')
-rw-r--r-- | npc/011-1_Woodland/alchemist.txt | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/npc/011-1_Woodland/alchemist.txt b/npc/011-1_Woodland/alchemist.txt index f78bf515..bb7ef734 100644 --- a/npc/011-1_Woodland/alchemist.txt +++ b/npc/011-1_Woodland/alchemist.txt @@ -285,33 +285,33 @@ L_mana_potion_lacking: goto L_main_menu; L_iron: - if(countitem("SmallMushroom") < 20) goto L_no_iron; + if(countitem("SmallMushroom") < 2) goto L_no_iron; getinventorylist; - if (@inventorylist_count == 100 && countitem("SmallMushroom") > 20) goto L_TooMany; + if (@inventorylist_count == 100 && countitem("SmallMushroom") > 2) goto L_TooMany; mes "[Rauk the Alchemist]"; mes "\"Great! You brought me exactly what I need!"; mes "Here is your Iron potion.\""; - delitem "SmallMushroom", 20; + delitem "SmallMushroom", 2; getitem "IronPotion", 1; close; L_concentration: - if(countitem("PinkPetal") < 20) goto L_no_concentration; + if(countitem("PinkPetal") < 2) goto L_no_concentration; getinventorylist; - if (@inventorylist_count == 100 && countitem("PinkPetal") > 20) goto L_TooMany; + if (@inventorylist_count == 100 && countitem("PinkPetal") > 2) goto L_TooMany; mes "[Rauk the Alchemist]"; mes "\"Great! You brought me exactly what I need!"; mes "Here is your Concentration potion.\""; - delitem "PinkPetal", 20; + delitem "PinkPetal", 2; getitem "ConcentrationPotion", 1; close; L_no_iron: - mes "\"You have to bring me 20 [small mushrooms].\""; + mes "\"You have to bring me 2 [small mushrooms].\""; close; L_no_concentration: - mes "\"You have to bring me 20 [pink petals].\""; + mes "\"You have to bring me 2 [pink petals].\""; close; L_dyeing_intro: |