diff options
author | gumi <git@gumi.ca> | 2020-08-13 20:51:14 -0400 |
---|---|---|
committer | gumi <git@gumi.ca> | 2020-08-13 20:51:14 -0400 |
commit | bb62c05cb5239c84187b260f5ecbdbbe4fff3f97 (patch) | |
tree | 0ca58bf261b6c5c211f910751303ec965c1e0a3a | |
parent | 39d9299a436efd53d4d90c27c377d732702c8fd9 (diff) | |
download | serverdata-bb62c05cb5239c84187b260f5ecbdbbe4fff3f97.tar.gz serverdata-bb62c05cb5239c84187b260f5ecbdbbe4fff3f97.tar.bz2 serverdata-bb62c05cb5239c84187b260f5ecbdbbe4fff3f97.tar.xz serverdata-bb62c05cb5239c84187b260f5ecbdbbe4fff3f97.zip |
add the FineDress 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 e1aadb91..8f8acfd4 100644 --- a/db/craft_db.conf +++ b/db/craft_db.conf @@ -255,6 +255,31 @@ Boots: 700 --> 799 } Priority: 21 }, +{ + Id: 104 + Name: "CraftFineDress" + Flag: "CRAFT_TAILORING" + ReturnCode: 1308 + SourceItems: + ( + { + CottonCloth: 23 + FluffyFur: 5 + SilkCocoon: 10 + Knife: 1 + }, + ) + CreateItems: + ( + { + FineDress: 1 + }, + ) + RequiredItems: { + RecipeBook: 1 + } + Priority: 22 +}, /************************* LEG ARMOR (PANTS) *********************************** ******************************************************************************** diff --git a/npc/items/recipes.txt b/npc/items/recipes.txt index 6bd3f3fc..c6e8cc51 100644 --- a/npc/items/recipes.txt +++ b/npc/items/recipes.txt @@ -136,6 +136,11 @@ function read_tailoring { 5, LeatherPatch, 5, Coal, 1, Knife); + showRecipe(CraftFineDress, FineDress, + 23, CottonCloth, + 5, FluffyFur, + 10, SilkCocoon, + 1, Knife); return; } |