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 0a195998..5ef66682 100644 --- a/db/craft_db.conf +++ b/db/craft_db.conf @@ -969,6 +969,31 @@ Boots: 700 --> 799 } Priority: 49 }, +{ + Id: 208 + Name: "CraftChainmailSkirt" + Flag: "CRAFT_SMITHERY" + ReturnCode: "ChainmailSkirt" + SourceItems: + ( + { + IronIngot: 12 + SilverIngot: 5 + Coal: 15 + SharpKnife: 1 + }, + ) + CreateItems: + ( + { + ChainmailSkirt: 1 + }, + ) + RequiredItems: { + RecipeBook: 1 + } + Priority: 56 +}, /****************************** GLOVES ***************************************** ******************************************************************************** diff --git a/npc/items/recipes.txt b/npc/items/recipes.txt index 7a70f2b7..f58b1941 100644 --- a/npc/items/recipes.txt +++ b/npc/items/recipes.txt @@ -147,6 +147,13 @@ function read_smithery { BlackArmor, GoldenWarlordPlate); + next(); + mes(); + mesf(".:: %s ::.", l("Leg Armor")); + mes(); + + showRecipe(ChainmailSkirt); + return; } |