summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgumi <git@gumi.ca>2020-08-14 10:28:08 -0400
committergumi <git@gumi.ca>2020-08-14 10:28:08 -0400
commit22c46a967fc34ea48856ed1d7354622563125048 (patch)
tree145ebd80c0f3258266b5dbbe8e421c6bd29772d1
parentea8e897ddb0285a2b41a678b3c89bf752f598cb3 (diff)
downloadserverdata-22c46a967fc34ea48856ed1d7354622563125048.tar.gz
serverdata-22c46a967fc34ea48856ed1d7354622563125048.tar.bz2
serverdata-22c46a967fc34ea48856ed1d7354622563125048.tar.xz
serverdata-22c46a967fc34ea48856ed1d7354622563125048.zip
add the IronArmbands recipe
Co-authored-by: Christopher Chay <2@hisfootsteps.net>
-rw-r--r--db/craft_db.conf25
-rw-r--r--npc/items/recipes.txt3
2 files changed, 27 insertions, 1 deletions
diff --git a/db/craft_db.conf b/db/craft_db.conf
index d9296369..03551031 100644
--- a/db/craft_db.conf
+++ b/db/craft_db.conf
@@ -1252,6 +1252,31 @@ Boots: 700 --> 799
}
Priority: 63
},
+{
+ Id: 310
+ Name: "CraftIronArmbands"
+ Flag: "CRAFT_SMITHING"
+ ReturnCode: "IronArmbands"
+ SourceItems:
+ (
+ {
+ IronIngot: 9
+ SilverIngot: 4
+ Coal: 40
+ Dagger: 1
+ },
+ )
+ CreateItems:
+ (
+ {
+ IronArmbands: 1
+ },
+ )
+ RequiredItems: {
+ RecipeBook: 1
+ }
+ Priority: 67
+},
/************************** WEAPONS & TOOLS ************************************
********************************************************************************
diff --git a/npc/items/recipes.txt b/npc/items/recipes.txt
index c71ea317..b0d2ec6b 100644
--- a/npc/items/recipes.txt
+++ b/npc/items/recipes.txt
@@ -162,7 +162,8 @@ function read_smithery {
mes();
showRecipe(CopperArmbands,
- BromenalGloves);
+ BromenalGloves,
+ IronArmbands);
return;
}