summaryrefslogtreecommitdiff
path: root/npc/031-3/cook.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/031-3/cook.txt')
-rw-r--r--npc/031-3/cook.txt28
1 files changed, 28 insertions, 0 deletions
diff --git a/npc/031-3/cook.txt b/npc/031-3/cook.txt
new file mode 100644
index 000000000..52a3c723f
--- /dev/null
+++ b/npc/031-3/cook.txt
@@ -0,0 +1,28 @@
+// TMW-2 Script.
+// Author:
+// Saulc
+// Jesusalva
+// Notes:
+// Teaches cooking, explains seasoning minigame, expiration, etc.
+// Doesn't teach any recipe, though (35,55)
+
+031-3,35,55,0 script Unnamed Cook NPC_SAVIOR,{
+ mesn;
+ mesq l("Ho... Congratulations in making this far.");
+ mesc l("He raises an eyebrown at you.");
+ close;
+
+OnInit:
+ .@npcId = getnpcid(.name$);
+ setunitdata(.@npcId, UDT_HEADBOTTOM, AlchemistArmor);
+ setunitdata(.@npcId, UDT_HEADMIDDLE, FurBoots);
+ setunitdata(.@npcId, UDT_HEADTOP, ChefHat);
+ setunitdata(.@npcId, UDT_HAIRSTYLE, 9);
+ setunitdata(.@npcId, UDT_HAIRCOLOR, 18);
+
+ .sex = G_MALE;
+ .distance = 5;
+ end;
+
+}
+