diff options
-rw-r--r-- | db/craft_db.conf | 26 | ||||
-rw-r--r-- | npc/items/recipes.txt | 7 |
2 files changed, 33 insertions, 0 deletions
diff --git a/db/craft_db.conf b/db/craft_db.conf index 44a4fca1..e548822e 100644 --- a/db/craft_db.conf +++ b/db/craft_db.conf @@ -1051,6 +1051,32 @@ Boots: 700 --> 799 **** Valid <Flag> parameters: CRAFT_SMITHERY, CRAFT_TAILORING *******************************************************************************/ +{ + Id: 300 + Name: "CraftShortGloves" + Flag: "CRAFT_TAILORING" + ReturnCode: "ShortGloves" + SourceItems: + ( + { + CottonCloth: 4 + PiouFeathers: 8 + FluffyFur: 6 + Knife: 1 + }, + ) + CreateItems: + ( + { + ShortGloves: 1 + }, + ) + RequiredItems: { + RecipeBook: 1 + } + Priority: 12 +}, + /************************** WEAPONS & TOOLS ************************************ ******************************************************************************** **** Reserved range for <Id>: 400 --> 499 diff --git a/npc/items/recipes.txt b/npc/items/recipes.txt index 3ce03459..af8842b8 100644 --- a/npc/items/recipes.txt +++ b/npc/items/recipes.txt @@ -197,6 +197,13 @@ function read_tailoring { JeansChaps, LeatherTrousers); + next(); + mes(); + mesf(".:: %s ::.", l("Gloves")); + mes(); + + showRecipe(ShortGloves); + return; } |