summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgumi <git@gumi.ca>2020-08-13 22:00:48 -0400
committergumi <git@gumi.ca>2020-08-13 22:00:48 -0400
commit1db3e28574f91844d2b89ae806d204c7afb8b2fd (patch)
tree8ace358fe7e4691627b36e954894cb5cea8ddd03
parent28df8f11a3aea6587c8c140dfddd218356a87ed4 (diff)
downloadserverdata-1db3e28574f91844d2b89ae806d204c7afb8b2fd.tar.gz
serverdata-1db3e28574f91844d2b89ae806d204c7afb8b2fd.tar.bz2
serverdata-1db3e28574f91844d2b89ae806d204c7afb8b2fd.tar.xz
serverdata-1db3e28574f91844d2b89ae806d204c7afb8b2fd.zip
add the SorcererRobe recipe
Co-authored-by: Christopher Chay <2@hisfootsteps.net>
-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 05168587..a3bb5a61 100644
--- a/db/craft_db.conf
+++ b/db/craft_db.conf
@@ -535,6 +535,31 @@ Boots: 700 --> 799
}
Priority: 53
},
+{
+ Id: 115
+ Name: "CraftSorcererRobe"
+ Flag: "CRAFT_TAILORING"
+ ReturnCode: 1321
+ SourceItems:
+ (
+ {
+ CottonCloth: 60
+ FluffyFur: 40
+ SilkCocoon: 20
+ Dagger: 1
+ },
+ )
+ CreateItems:
+ (
+ {
+ SorcererRobe: 1
+ },
+ )
+ RequiredItems: {
+ RecipeBook: 1
+ }
+ Priority: 60
+},
/************************* LEG ARMOR (PANTS) ***********************************
********************************************************************************
diff --git a/npc/items/recipes.txt b/npc/items/recipes.txt
index d80a1e6d..ff66d9e0 100644
--- a/npc/items/recipes.txt
+++ b/npc/items/recipes.txt
@@ -196,6 +196,11 @@ function read_tailoring {
10, LeatherPatch,
15, Moss,
1, SharpKnife);
+ showRecipe(CraftSorcererRobe, SorcererRobe,
+ 60, CottonCloth,
+ 40, FluffyFur,
+ 20, SilkCocoon,
+ 1, Dagger);
return;
}