summaryrefslogtreecommitdiff
path: root/npc
diff options
context:
space:
mode:
authorgumi <git@gumi.ca>2020-08-10 14:46:56 -0400
committergumi <git@gumi.ca>2020-08-13 19:39:56 -0400
commit2ae337d01c43dbc24722dd3159f46b1031f97f98 (patch)
tree62fdf0bb319e0ecb4fbdbcd03686960d5b579e5d /npc
parent0fe3a6fde2769b55b0019487d9939bf628c760b2 (diff)
downloadserverdata-2ae337d01c43dbc24722dd3159f46b1031f97f98.tar.gz
serverdata-2ae337d01c43dbc24722dd3159f46b1031f97f98.tar.bz2
serverdata-2ae337d01c43dbc24722dd3159f46b1031f97f98.tar.xz
serverdata-2ae337d01c43dbc24722dd3159f46b1031f97f98.zip
add the CreasedShirt recipe
Co-authored-by: Christopher Chay <2@hisfootsteps.net>
Diffstat (limited to 'npc')
-rw-r--r--npc/items/recipes.txt11
1 files changed, 9 insertions, 2 deletions
diff --git a/npc/items/recipes.txt b/npc/items/recipes.txt
index 5174c76d..cfa45251 100644
--- a/npc/items/recipes.txt
+++ b/npc/items/recipes.txt
@@ -29,6 +29,7 @@ function script showRecipe {
function read_book;
function read_cooking;
function read_smithery;
+ function read_tailoring;
end;
function read_book {
@@ -47,8 +48,8 @@ function read_book {
read_cooking(); break;
case CRAFT_SMITHERY:
read_smithery(); break;
- case CRAFT_TAILORING
- read_tailoring(): break;
+ case CRAFT_TAILORING:
+ read_tailoring(); break;
default:
mesc l("Unfortunately, there is nothing on this bookmark.");
mesc l("Perhaps, in future, someone adds it to this world.");
@@ -113,6 +114,12 @@ function read_tailoring {
mesf(".:: %s ::.", l("Chest Armor"));
mes();
+ showRecipe(CraftCreasedShirt, CreasedShirt,
+ 1, CottonCloth,
+ 15, PiouFeathers,
+ 5, RattoTail,
+ 1, Knife);
+
return;
}