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 29c0c0b2..0a195998 100644 --- a/db/craft_db.conf +++ b/db/craft_db.conf @@ -944,6 +944,31 @@ Boots: 700 --> 799 } Priority: 49 }, +{ + Id: 207 + Name: "CraftLeatherTrousers" + Flag: "CRAFT_TAILORING" + ReturnCode: "LeatherTrousers" + SourceItems: + ( + { + LeatherPatch: 45 + SquirrelPelt: 35 + CottonCloth: 5 + Knife: 1 + }, + ) + CreateItems: + ( + { + LeatherTrousers: 1 + }, + ) + RequiredItems: { + RecipeBook: 1 + } + Priority: 49 +}, /****************************** GLOVES ***************************************** ******************************************************************************** diff --git a/npc/items/recipes.txt b/npc/items/recipes.txt index fb1a794a..7a70f2b7 100644 --- a/npc/items/recipes.txt +++ b/npc/items/recipes.txt @@ -185,7 +185,8 @@ function read_tailoring { SilkPants, BrownTrousers, BanditTrousers, - JeansChaps); + JeansChaps, + LeatherTrousers); return; } |