From 9c82629af78d5021280a5f6e830c11ad190b59ab Mon Sep 17 00:00:00 2001 From: Wombat Date: Fri, 25 Feb 2011 06:39:55 -0500 Subject: alchemist iron/concentration potion crafting reduced to two from 20 --- npc/011-1_Woodland/alchemist.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'npc/011-1_Woodland') 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: -- cgit v1.2.3-60-g2f50