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 62eed9e1..e7d727ad 100644 --- a/db/craft_db.conf +++ b/db/craft_db.conf @@ -662,6 +662,31 @@ Boots: 700 --> 799 } Priority: 72 }, +{ + Id: 120 + Name: "CraftAssassinChest" + Flag: "CRAFT_SMITHERY" + ReturnCode: "AssassinChest" + SourceItems: + ( + { + RotoniumIngot: 6 + CottonCloth: 50 + Coal: 30 + Dagger: 1 + }, + ) + CreateItems: + ( + { + AssassinChest: 1 + }, + ) + RequiredItems: { + RecipeBook: 1 + } + Priority: 73 +}, /************************* LEG ARMOR (PANTS) *********************************** ******************************************************************************** diff --git a/npc/items/recipes.txt b/npc/items/recipes.txt index fa458118..5c8db26b 100644 --- a/npc/items/recipes.txt +++ b/npc/items/recipes.txt @@ -142,7 +142,8 @@ function read_smithery { JustifierChest, LegionIronArmor, WarlordArmor, - TerraniteArmor); + TerraniteArmor, + AssassinChest); return; } |