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 842ae9f4..dd2aefb7 100644 --- a/db/craft_db.conf +++ b/db/craft_db.conf @@ -330,6 +330,31 @@ Boots: 700 --> 799 } Priority: 31 }, +{ + Id: 107 + Name: "CraftForestArmor" + Flag: "CRAFT_TAILORING" + ReturnCode: 1306 + SourceItems: + ( + { + LeatherPatch: 10 + Moss: 20 + TortugaShellFragment: 3 + Knife: 1 + }, + ) + CreateItems: + ( + { + ForestArmor: 1 + }, + ) + RequiredItems: { + RecipeBook: 1 + } + Priority: 32 +}, /************************* LEG ARMOR (PANTS) *********************************** ******************************************************************************** diff --git a/npc/items/recipes.txt b/npc/items/recipes.txt index 48ad8b61..777436fd 100644 --- a/npc/items/recipes.txt +++ b/npc/items/recipes.txt @@ -156,6 +156,11 @@ function read_tailoring { 10, CottonCloth, 3, FluffyFur, 1, Knife); + showRecipe(CraftForestArmor, ForestArmor, + 10, LeatherPatch, + 20, Moss, + 3, TortugaShellFragment, + 1, Knife); return; } |