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 4d3fbe06..d9296369 100644 --- a/db/craft_db.conf +++ b/db/craft_db.conf @@ -1227,6 +1227,31 @@ Boots: 700 --> 799 } Priority: 52 }, +{ + Id: 309 + Name: "CraftBromenalGloves" + Flag: "CRAFT_SMITHING" + ReturnCode: "BromenalGloves" + SourceItems: + ( + { + CopperIngot: 8 + LeatherPatch: 30 + Coal: 25 + SharpKnife: 1 + }, + ) + CreateItems: + ( + { + BromenalGloves: 1 + }, + ) + RequiredItems: { + RecipeBook: 1 + } + Priority: 63 +}, /************************** WEAPONS & TOOLS ************************************ ******************************************************************************** diff --git a/npc/items/recipes.txt b/npc/items/recipes.txt index 6d0e707e..c71ea317 100644 --- a/npc/items/recipes.txt +++ b/npc/items/recipes.txt @@ -161,7 +161,8 @@ function read_smithery { mesf(".:: %s ::.", l("Gloves")); mes(); - showRecipe(CopperArmbands); + showRecipe(CopperArmbands, + BromenalGloves); return; } |