summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgumi <git@gumi.ca>2020-08-14 09:49:01 -0400
committergumi <git@gumi.ca>2020-08-14 09:49:01 -0400
commit41f0608321fa3dc9f910c758c88b52a2354e8d2c (patch)
tree2749d1e0a5bc145fe7590a2b88b182720e51294a
parent3bf6963d54531a3ae84d9cf6df2ffde85dff259b (diff)
downloadserverdata-41f0608321fa3dc9f910c758c88b52a2354e8d2c.tar.gz
serverdata-41f0608321fa3dc9f910c758c88b52a2354e8d2c.tar.bz2
serverdata-41f0608321fa3dc9f910c758c88b52a2354e8d2c.tar.xz
serverdata-41f0608321fa3dc9f910c758c88b52a2354e8d2c.zip
add the CreasedShorts 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 0811b4a3..50972376 100644
--- a/db/craft_db.conf
+++ b/db/craft_db.conf
@@ -769,6 +769,32 @@ Boots: 700 --> 799
**** Valid <Flag> parameters: CRAFT_SMITHERY, CRAFT_TAILORING
*******************************************************************************/
+{
+ Id: 200
+ Name: "CraftCreasedShorts"
+ Flag: "CRAFT_TAILORING"
+ ReturnCode: "CreasedShorts"
+ SourceItems:
+ (
+ {
+ CottonCloth: 10
+ PiouFeathers: 10
+ RattoTail: 5
+ Knife: 1
+ },
+ )
+ CreateItems:
+ (
+ {
+ CreasedShorts: 1
+ },
+ )
+ RequiredItems: {
+ RecipeBook: 1
+ }
+ Priority: 10
+},
+
/****************************** GLOVES *****************************************
********************************************************************************
**** Reserved range for <Id>: 300 --> 399
diff --git a/npc/items/recipes.txt b/npc/items/recipes.txt
index 15dbba15..41924ab8 100644
--- a/npc/items/recipes.txt
+++ b/npc/items/recipes.txt
@@ -174,6 +174,13 @@ function read_tailoring {
WizardRobe,
EvocatorRobe);
+ next();
+ mes();
+ mesf(".:: %s ::.", l("Leg Armor"));
+ mes();
+
+ showRecipe(CreasedShorts);
+
return;
}