summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--db/craft_db.conf26
-rw-r--r--npc/items/recipes.txt5
2 files changed, 31 insertions, 0 deletions
diff --git a/db/craft_db.conf b/db/craft_db.conf
index e457dab1..c0d08400 100644
--- a/db/craft_db.conf
+++ b/db/craft_db.conf
@@ -205,6 +205,32 @@ Boots: 700 --> 799
}
Priority: 11
},
+{
+ Id: 102
+ Name: "CraftVneckJumper"
+ Flag: "CRAFT_TAILORING"
+ ReturnCode: 1301
+ SourceItems:
+ (
+ {
+ CottonCloth: 15
+ PiouFeathers: 5
+ Moss: 7
+ Knife: 1
+ },
+ )
+ CreateItems:
+ (
+ {
+ VneckJumper: 1
+ },
+ )
+ RequiredItems: {
+ RecipeBook: 1
+ }
+ Priority: 20
+},
+
/************************* LEG ARMOR (PANTS) ***********************************
********************************************************************************
diff --git a/npc/items/recipes.txt b/npc/items/recipes.txt
index 0e055a49..d39ee5b8 100644
--- a/npc/items/recipes.txt
+++ b/npc/items/recipes.txt
@@ -126,6 +126,11 @@ function read_tailoring {
5, PiouFeathers,
5, Moss,
1, Knife);
+ showRecipe(CraftVneckJumper, VneckJumper,
+ 15, CottonCloth,
+ 5, PiouFeathers,
+ 7, Moss,
+ 1, Knife);
return;
}