diff options
Diffstat (limited to 'npc')
-rw-r--r-- | npc/items/recipes.txt | 11 |
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; } |