diff options
-rw-r--r-- | db/craft_db.conf | 25 | ||||
-rw-r--r-- | npc/items/recipes.txt | 3 |
2 files changed, 27 insertions, 1 deletions
diff --git a/db/craft_db.conf b/db/craft_db.conf index 7f3415fa..592d7174 100644 --- a/db/craft_db.conf +++ b/db/craft_db.conf @@ -819,6 +819,31 @@ Boots: 700 --> 799 } Priority: 20 }, +{ + Id: 202 + Name: "CraftPirateShorts" + Flag: "CRAFT_TAILORING" + ReturnCode: "PirateShorts" + SourceItems: + ( + { + CottonCloth: 20 + LeatherPatch: 10 + Coal: 10 + Knife: 1 + }, + ) + CreateItems: + ( + { + PirateShorts: 1 + }, + ) + RequiredItems: { + RecipeBook: 1 + } + Priority: 25 +}, /****************************** GLOVES ***************************************** ******************************************************************************** diff --git a/npc/items/recipes.txt b/npc/items/recipes.txt index ee4990ff..7e409ba7 100644 --- a/npc/items/recipes.txt +++ b/npc/items/recipes.txt @@ -180,7 +180,8 @@ function read_tailoring { mes(); showRecipe(CreasedShorts, - CottonSkirt); + CottonSkirt, + PirateShorts); return; } |