diff options
author | gumi <git@gumi.ca> | 2020-08-14 10:03:28 -0400 |
---|---|---|
committer | gumi <git@gumi.ca> | 2020-08-14 10:03:57 -0400 |
commit | d8c2ec841ac9469e8259b2c415388b091a7f5adf (patch) | |
tree | 45773513a34ec9b747cc5d9e53d754e62779fd76 | |
parent | 98e8e34a1542fe1b9b4224815ba246428d85a9f5 (diff) | |
download | serverdata-d8c2ec841ac9469e8259b2c415388b091a7f5adf.tar.gz serverdata-d8c2ec841ac9469e8259b2c415388b091a7f5adf.tar.bz2 serverdata-d8c2ec841ac9469e8259b2c415388b091a7f5adf.tar.xz serverdata-d8c2ec841ac9469e8259b2c415388b091a7f5adf.zip |
add the JeansChaps recipe
Co-authored-by: Christopher Chay <2@hisfootsteps.net>
-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 e12f703f..29c0c0b2 100644 --- a/db/craft_db.conf +++ b/db/craft_db.conf @@ -919,6 +919,31 @@ Boots: 700 --> 799 } Priority: 41 }, +{ + Id: 206 + Name: "CraftJeansChaps" + Flag: "CRAFT_TAILORING" + ReturnCode: "JeansChaps" + SourceItems: + ( + { + SnakeSkin: 40 + LeatherPatch: 25 + SnakeScale: 10 + Knife: 1 + }, + ) + CreateItems: + ( + { + JeansChaps: 1 + }, + ) + RequiredItems: { + RecipeBook: 1 + } + Priority: 49 +}, /****************************** GLOVES ***************************************** ******************************************************************************** diff --git a/npc/items/recipes.txt b/npc/items/recipes.txt index b8d99d7a..fb1a794a 100644 --- a/npc/items/recipes.txt +++ b/npc/items/recipes.txt @@ -184,7 +184,8 @@ function read_tailoring { PirateShorts, SilkPants, BrownTrousers, - BanditTrousers); + BanditTrousers, + JeansChaps); return; } |