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 579c79af..e12f703f 100644 --- a/db/craft_db.conf +++ b/db/craft_db.conf @@ -894,6 +894,31 @@ Boots: 700 --> 799 } Priority: 37 }, +{ + Id: 205 + Name: "CraftBanditTrousers" + Flag: "CRAFT_TAILORING" + ReturnCode: "BanditTrousers" + SourceItems: + ( + { + Moss: 40 + CottonCloth: 35 + LeatherPatch: 30 + Knife: 1 + }, + ) + CreateItems: + ( + { + BanditTrousers: 1 + }, + ) + RequiredItems: { + RecipeBook: 1 + } + Priority: 41 +}, /****************************** GLOVES ***************************************** ******************************************************************************** diff --git a/npc/items/recipes.txt b/npc/items/recipes.txt index 7fcf522b..b8d99d7a 100644 --- a/npc/items/recipes.txt +++ b/npc/items/recipes.txt @@ -183,7 +183,8 @@ function read_tailoring { CottonSkirt, PirateShorts, SilkPants, - BrownTrousers); + BrownTrousers, + BanditTrousers); return; } |