summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgumi <git@gumi.ca>2020-08-14 10:12:24 -0400
committergumi <git@gumi.ca>2020-08-14 10:12:24 -0400
commitc156b3cedfd454299ac5bdbedc83395b245fac8f (patch)
tree8c366751a6c93e960ebe95acdd1fa864b5737a4d
parent96ec77b05c19b4f861ffc919fbddf2792ecf248d (diff)
downloadserverdata-c156b3cedfd454299ac5bdbedc83395b245fac8f.tar.gz
serverdata-c156b3cedfd454299ac5bdbedc83395b245fac8f.tar.bz2
serverdata-c156b3cedfd454299ac5bdbedc83395b245fac8f.tar.xz
serverdata-c156b3cedfd454299ac5bdbedc83395b245fac8f.zip
add the ShortGloves recipe
Co-authored-by: Christopher Chay <2@hisfootsteps.net>
-rw-r--r--db/craft_db.conf26
-rw-r--r--npc/items/recipes.txt7
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;
}