summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgumi <git@gumi.ca>2020-08-13 22:54:27 -0400
committergumi <git@gumi.ca>2020-08-13 22:54:27 -0400
commit89bc00552ab22612082af78562b9b1b281cfb16a (patch)
tree1a86107995703166c9a93f82cdd55943a11f8a7f
parent675ee9cb27ee1ef50d43d3af60e12f80d427166c (diff)
downloadserverdata-89bc00552ab22612082af78562b9b1b281cfb16a.tar.gz
serverdata-89bc00552ab22612082af78562b9b1b281cfb16a.tar.bz2
serverdata-89bc00552ab22612082af78562b9b1b281cfb16a.tar.xz
serverdata-89bc00552ab22612082af78562b9b1b281cfb16a.zip
add the WizardRobe recipe
Co-authored-by: Christopher Chay <2@hisfootsteps.net>
-rw-r--r--db/craft_db.conf28
-rw-r--r--npc/items/recipes.txt5
2 files changed, 31 insertions, 2 deletions
diff --git a/db/craft_db.conf b/db/craft_db.conf
index f2c22fa2..4483b348 100644
--- a/db/craft_db.conf
+++ b/db/craft_db.conf
@@ -588,7 +588,7 @@ Boots: 700 --> 799
{
Id: 117
Name: "CraftWarlordArmor"
- Flag: 16
+ Flag: "CRAFT_SMITHERY"
ReturnCode: 1309
SourceItems:
(
@@ -610,7 +610,31 @@ Boots: 700 --> 799
}
Priority: 70
},
-
+{
+ Id: 118
+ Name: "CraftWizardRobe"
+ Flag: "CRAFT_TAILORING"
+ ReturnCode: 1323
+ SourceItems:
+ (
+ {
+ SquirrelPelt: 30
+ SilkCocoon: 60
+ LeatherPatch: 5
+ Dagger: 1
+ },
+ )
+ CreateItems:
+ (
+ {
+ WizardRobe: 1
+ },
+ )
+ RequiredItems: {
+ RecipeBook: 1
+ }
+ Priority: 71
+},
/************************* LEG ARMOR (PANTS) ***********************************
********************************************************************************
diff --git a/npc/items/recipes.txt b/npc/items/recipes.txt
index b500bbf2..cde7d141 100644
--- a/npc/items/recipes.txt
+++ b/npc/items/recipes.txt
@@ -235,6 +235,11 @@ function read_tailoring {
40, FluffyFur,
20, SilkCocoon,
1, Dagger);
+ showRecipe(WizardRobe,
+ 30, SquirrelPelt,
+ 60, SilkCocoon,
+ 5, LeatherPatch,
+ 1, Dagger);
return;
}