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 a9c433cd..4d3fbe06 100644 --- a/db/craft_db.conf +++ b/db/craft_db.conf @@ -1202,6 +1202,31 @@ Boots: 700 --> 799 } Priority: 43 }, +{ + Id: 307 + Name: "CraftLeatherGloves" + Flag: "CRAFT_TAILORING" + ReturnCode: "LeatherGloves" + SourceItems: + ( + { + LeatherPatch: 40 + CottonCloth: 30 + SquirrelPelt: 16 + SharpKnife: 1 + }, + ) + CreateItems: + ( + { + LeatherGloves: 1 + }, + ) + RequiredItems: { + RecipeBook: 1 + } + Priority: 52 +}, /************************** WEAPONS & TOOLS ************************************ ******************************************************************************** diff --git a/npc/items/recipes.txt b/npc/items/recipes.txt index 691c6530..6d0e707e 100644 --- a/npc/items/recipes.txt +++ b/npc/items/recipes.txt @@ -213,7 +213,8 @@ function read_tailoring { Armbands, CottonGloves, BanditGloves, - SilkGloves); + SilkGloves, + LeatherGloves); return; } |