diff options
-rw-r--r-- | db/craft_db.conf | 25 | ||||
-rw-r--r-- | npc/items/recipes.txt | 7 |
2 files changed, 32 insertions, 0 deletions
diff --git a/db/craft_db.conf b/db/craft_db.conf index 6e4d9d61..a9c433cd 100644 --- a/db/craft_db.conf +++ b/db/craft_db.conf @@ -1177,6 +1177,31 @@ Boots: 700 --> 799 } Priority: 39 }, +{ + Id: 305 + Name: "CraftCopperArmbands" + Flag: "CRAFT_SMITHING" + ReturnCode: "CopperArmbands" + SourceItems: + ( + { + CopperIngot: 4 + IronIngot: 3 + Coal: 30 + SharpKnife: 1 + }, + ) + CreateItems: + ( + { + CopperArmbands: 1 + }, + ) + RequiredItems: { + RecipeBook: 1 + } + Priority: 43 +}, /************************** WEAPONS & TOOLS ************************************ ******************************************************************************** diff --git a/npc/items/recipes.txt b/npc/items/recipes.txt index 375b9892..691c6530 100644 --- a/npc/items/recipes.txt +++ b/npc/items/recipes.txt @@ -156,6 +156,13 @@ function read_smithery { TerranitePants, AssassinPants); + next(); + mes(); + mesf(".:: %s ::.", l("Gloves")); + mes(); + + showRecipe(CopperArmbands); + return; } |