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 6fe295ff..44a4fca1 100644 --- a/db/craft_db.conf +++ b/db/craft_db.conf @@ -1019,6 +1019,31 @@ Boots: 700 --> 799 } Priority: 66 }, +{ + Id: 210 + Name: "CraftAssassinPants" + Flag: "CRAFT_SMITHERY" + ReturnCode: "AssassinPants" + SourceItems: + ( + { + RotoniumIngot: 5 + CottonCloth: 43 + Coal: 25 + Dagger: 1 + }, + ) + CreateItems: + ( + { + AssassinPants: 1 + }, + ) + RequiredItems: { + RecipeBook: 1 + } + Priority: 71 +}, /****************************** GLOVES ***************************************** ******************************************************************************** diff --git a/npc/items/recipes.txt b/npc/items/recipes.txt index c30e9d66..3ce03459 100644 --- a/npc/items/recipes.txt +++ b/npc/items/recipes.txt @@ -153,7 +153,8 @@ function read_smithery { mes(); showRecipe(ChainmailSkirt, - TerranitePants); + TerranitePants, + AssassinPants); return; } |