diff options
author | gumi <git@gumi.ca> | 2020-08-13 21:23:27 -0400 |
---|---|---|
committer | gumi <git@gumi.ca> | 2020-08-13 21:23:27 -0400 |
commit | c5a739092766c06c5b19e033c681c8dc814cd898 (patch) | |
tree | 5e42fc7161e00fb3b8facb0647a33768f01b3456 | |
parent | aeb41024fbff1cfa1ef589b02592f6ee1733943d (diff) | |
download | serverdata-c5a739092766c06c5b19e033c681c8dc814cd898.tar.gz serverdata-c5a739092766c06c5b19e033c681c8dc814cd898.tar.bz2 serverdata-c5a739092766c06c5b19e033c681c8dc814cd898.tar.xz serverdata-c5a739092766c06c5b19e033c681c8dc814cd898.zip |
add the ApprenticeRobe recipe
Co-authored-by: Christopher Chay <2@hisfootsteps.net>
-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 64883626..7c4f4f38 100644 --- a/db/craft_db.conf +++ b/db/craft_db.conf @@ -380,6 +380,31 @@ Boots: 700 --> 799 } Priority: 40 }, +{ + Id: 109 + Name: "CraftApprenticeRobe" + Flag: "CRAFT_TAILORING" + ReturnCode: 1312 + SourceItems: + ( + { + CottonCloth: 10 + SilkCocoon: 70 + FluffyFur: 10 + SharpKnife: 1 + }, + ) + CreateItems: + ( + { + ApprenticeRobe: 1 + }, + ) + RequiredItems: { + RecipeBook: 1 + } + Priority: 41 +}, /************************* LEG ARMOR (PANTS) *********************************** ******************************************************************************** diff --git a/npc/items/recipes.txt b/npc/items/recipes.txt index efdb44d2..f41d5431 100644 --- a/npc/items/recipes.txt +++ b/npc/items/recipes.txt @@ -166,6 +166,11 @@ function read_tailoring { 20, Moss, 3, TortugaShellFragment, 1, Knife); + showRecipe(CraftApprenticeRobe, ApprenticeRobe, + 10, CottonCloth, + 70, SilkCocoon, + 10, FluffyFur, + 1, SharpKnife); return; } |