summaryrefslogtreecommitdiff
path: root/npc
diff options
context:
space:
mode:
authorWombat <hpwombat@yahoo.com>2011-02-25 06:39:55 -0500
committerJessica Tölke <jtoelke@mail.upb.de>2011-03-01 17:12:44 +0100
commit9c82629af78d5021280a5f6e830c11ad190b59ab (patch)
tree73242719c765dd3133776ce07957ca9d4727aa4c /npc
parent40d620b61637c4d17d508cfa94aa605a3911ca5e (diff)
downloadserverdata-9c82629af78d5021280a5f6e830c11ad190b59ab.tar.gz
serverdata-9c82629af78d5021280a5f6e830c11ad190b59ab.tar.bz2
serverdata-9c82629af78d5021280a5f6e830c11ad190b59ab.tar.xz
serverdata-9c82629af78d5021280a5f6e830c11ad190b59ab.zip
alchemist iron/concentration potion crafting reduced to two from 20
Diffstat (limited to 'npc')
-rw-r--r--npc/011-1_Woodland/alchemist.txt16
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: