diff options
-rw-r--r-- | db/craft_db.conf | 25 | ||||
-rw-r--r-- | npc/items/recipes.txt | 5 |
2 files changed, 30 insertions, 0 deletions
diff --git a/db/craft_db.conf b/db/craft_db.conf index dd2aefb7..64883626 100644 --- a/db/craft_db.conf +++ b/db/craft_db.conf @@ -355,6 +355,31 @@ Boots: 700 --> 799 } Priority: 32 }, +{ + Id: 108 + Name: "CraftLegionCopperArmor" + Flag: "CRAFT_SMITHERY" + ReturnCode: 1305 + SourceItems: + ( + { + CopperIngot: 10 + IronIngot: 3 + Coal: 10 + SharpKnife: 1 + }, + ) + CreateItems: + ( + { + LegionCopperArmor: 1 + }, + ) + RequiredItems: { + RecipeBook: 1 + } + Priority: 40 +}, /************************* LEG ARMOR (PANTS) *********************************** ******************************************************************************** diff --git a/npc/items/recipes.txt b/npc/items/recipes.txt index 777436fd..efdb44d2 100644 --- a/npc/items/recipes.txt +++ b/npc/items/recipes.txt @@ -111,6 +111,11 @@ function read_smithery { 1, CopperIngot, 5, Coal, 1, Knife); + showRecipe(CraftLegionCopperArmor, LegionCopperArmor, + 10, CopperIngot, + 3, IronIngot, + 10, Coal, + 1, SharpKnife); return; } |