diff options
author | gumi <git@gumi.ca> | 2020-08-14 10:38:40 -0400 |
---|---|---|
committer | gumi <git@gumi.ca> | 2020-08-14 10:38:40 -0400 |
commit | 377ae403b4bf0725065912c93791c218acffa659 (patch) | |
tree | 1135b08c547fc97548054e827efbef19a4acdd0b | |
parent | fbbbfecb115d1d8086fad3201176db22dc019575 (diff) | |
download | serverdata-377ae403b4bf0725065912c93791c218acffa659.tar.gz serverdata-377ae403b4bf0725065912c93791c218acffa659.tar.bz2 serverdata-377ae403b4bf0725065912c93791c218acffa659.tar.xz serverdata-377ae403b4bf0725065912c93791c218acffa659.zip |
add the SquirrelBoots 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 3f31581e..d77bfb84 100644 --- a/db/craft_db.conf +++ b/db/craft_db.conf @@ -1452,4 +1452,29 @@ Boots: 700 --> 799 } Priority: 31 }, +{ + Id: 705 + Name: "CraftSquirrelBoots" + Flag: "CRAFT_TAILORING" + ReturnCode: "SquirrelBoots" + SourceItems: + ( + { + SquirrelPelt: 36 + CottonCloth: 10 + TortugaShell: 18 + SharpKnife: 1 + }, + ) + CreateItems: + ( + { + SquirrelBoots: 1 + }, + ) + RequiredItems: { + RecipeBook: 1 + } + Priority: 40 +}, ) diff --git a/npc/items/recipes.txt b/npc/items/recipes.txt index eb004cb0..889924bc 100644 --- a/npc/items/recipes.txt +++ b/npc/items/recipes.txt @@ -228,7 +228,8 @@ function read_tailoring { Slippers, CottonBoots, BanditBoots, - ManaSlippers); + ManaSlippers, + SquirrelBoots); return; } |