diff options
author | gumi <git@gumi.ca> | 2020-08-14 10:37:31 -0400 |
---|---|---|
committer | gumi <git@gumi.ca> | 2020-08-14 10:37:31 -0400 |
commit | fbbbfecb115d1d8086fad3201176db22dc019575 (patch) | |
tree | 7642b6e59bd234d2f4eeb8d1cd220e81901e2ef5 | |
parent | 6ee1a982ad2aa4250692e4fe95d22e80417f4a67 (diff) | |
download | serverdata-fbbbfecb115d1d8086fad3201176db22dc019575.tar.gz serverdata-fbbbfecb115d1d8086fad3201176db22dc019575.tar.bz2 serverdata-fbbbfecb115d1d8086fad3201176db22dc019575.tar.xz serverdata-fbbbfecb115d1d8086fad3201176db22dc019575.zip |
add the ManaSlipper 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 dae57670..3f31581e 100644 --- a/db/craft_db.conf +++ b/db/craft_db.conf @@ -1427,4 +1427,29 @@ Boots: 700 --> 799 } Priority: 30 }, +{ + Id: 704 + Name: "CraftManaSlippers" + Flag: "CRAFT_TAILORING" + ReturnCode: "ManaSlippers" + SourceItems: + ( + { + FluffyFur: 28 + Pearl: 2 + TortugaShell: 10 + Knife: 1 + }, + ) + CreateItems: + ( + { + ManaSlippers: 1 + }, + ) + RequiredItems: { + RecipeBook: 1 + } + Priority: 31 +}, ) diff --git a/npc/items/recipes.txt b/npc/items/recipes.txt index a295ef70..eb004cb0 100644 --- a/npc/items/recipes.txt +++ b/npc/items/recipes.txt @@ -227,7 +227,8 @@ function read_tailoring { showRecipe(LousyMoccasins, Slippers, CottonBoots, - BanditBoots); + BanditBoots, + ManaSlippers); return; } |