summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgumi <git@gumi.ca>2020-08-13 21:39:29 -0400
committergumi <git@gumi.ca>2020-08-13 21:39:29 -0400
commit2ec0d2bb68b7c5613b9f33926e1ecd96ffa7b310 (patch)
tree2ce9f3b958813d5be5c8b9d5635f2a2675d9c226
parent811238341360a52255fcac55e7c3d99d71ac3c96 (diff)
downloadserverdata-2ec0d2bb68b7c5613b9f33926e1ecd96ffa7b310.tar.gz
serverdata-2ec0d2bb68b7c5613b9f33926e1ecd96ffa7b310.tar.bz2
serverdata-2ec0d2bb68b7c5613b9f33926e1ecd96ffa7b310.tar.xz
serverdata-2ec0d2bb68b7c5613b9f33926e1ecd96ffa7b310.zip
add SnakeScale and the Snakeplate recipe
Co-authored-by: Christopher Chay <2@hisfootsteps.net>
-rw-r--r--db/craft_db.conf25
-rw-r--r--db/re/item_db.conf5
-rw-r--r--npc/items/recipes.txt5
3 files changed, 35 insertions, 0 deletions
diff --git a/db/craft_db.conf b/db/craft_db.conf
index 7aef95a8..4a59f87a 100644
--- a/db/craft_db.conf
+++ b/db/craft_db.conf
@@ -455,6 +455,31 @@ Boots: 700 --> 799
}
Priority: 50
},
+{
+ Id: 112
+ Name: "CraftSnakeplate"
+ Flag: "CRAFT_SMITHERY"
+ ReturnCode: 1320
+ SourceItems:
+ (
+ {
+ SnakeScale: 55
+ IronIngot: 3
+ Moss: 15
+ SharpKnife: 1
+ },
+ )
+ CreateItems:
+ (
+ {
+ Snakeplate: 1
+ },
+ )
+ RequiredItems: {
+ RecipeBook: 1
+ }
+ Priority: 51
+},
/************************* LEG ARMOR (PANTS) ***********************************
********************************************************************************
diff --git a/db/re/item_db.conf b/db/re/item_db.conf
index da83e537..19b20b62 100644
--- a/db/re/item_db.conf
+++ b/db/re/item_db.conf
@@ -2266,6 +2266,11 @@ item_db: (
Name: "Leather Patch"
},
{
+ Id: 811
+ AegisName: "SnakeScale"
+ Name: "Snake Scale"
+},
+{
Id: 812
AegisName: "SquirrelPelt"
Name: "Squirrel Pelt"
diff --git a/npc/items/recipes.txt b/npc/items/recipes.txt
index 903c93c4..a4c1da57 100644
--- a/npc/items/recipes.txt
+++ b/npc/items/recipes.txt
@@ -121,6 +121,11 @@ function read_smithery {
3, SilverIngot,
20, Coal,
1, SharpKnife);
+ showRecipe(CraftSnakeplate, Snakeplate,
+ 55, SnakeScale,
+ 3, IronIngot,
+ 15, Moss,
+ 1, SharpKnife);
return;
}