summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--db/craft_db.conf25
-rw-r--r--npc/items/recipes.txt5
2 files changed, 30 insertions, 0 deletions
diff --git a/db/craft_db.conf b/db/craft_db.conf
index 8f8acfd4..d299cb67 100644
--- a/db/craft_db.conf
+++ b/db/craft_db.conf
@@ -280,6 +280,31 @@ Boots: 700 --> 799
}
Priority: 22
},
+{
+ Id: 105
+ Name: "CraftSilkRobe"
+ Flag: "CRAFT_TAILORING"
+ ReturnCode: 1308
+ SourceItems:
+ (
+ {
+ SilkCocoon: 40
+ CottonCloth: 10
+ FluffyFur: 3
+ Knife: 1
+ },
+ )
+ CreateItems:
+ (
+ {
+ SilkRobe: 1
+ },
+ )
+ RequiredItems: {
+ RecipeBook: 1
+ }
+ Priority: 30
+},
/************************* LEG ARMOR (PANTS) ***********************************
********************************************************************************
diff --git a/npc/items/recipes.txt b/npc/items/recipes.txt
index c6e8cc51..e6091ab4 100644
--- a/npc/items/recipes.txt
+++ b/npc/items/recipes.txt
@@ -141,6 +141,11 @@ function read_tailoring {
5, FluffyFur,
10, SilkCocoon,
1, Knife);
+ showRecipe(CraftSilkRobe, SilkRobe,
+ 40, SilkCocoon,
+ 10, CottonCloth,
+ 3, FluffyFur,
+ 1, Knife);
return;
}