summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgumi <git@gumi.ca>2020-08-13 21:54:51 -0400
committergumi <git@gumi.ca>2020-08-13 21:54:51 -0400
commit28df8f11a3aea6587c8c140dfddd218356a87ed4 (patch)
tree9f9124c0bc3bc25ed4e255f8a985dcc76e9ec1cf
parent1e0b90b3916c9a3421da6efbd308eb9dec20c49d (diff)
downloadserverdata-28df8f11a3aea6587c8c140dfddd218356a87ed4.tar.gz
serverdata-28df8f11a3aea6587c8c140dfddd218356a87ed4.tar.bz2
serverdata-28df8f11a3aea6587c8c140dfddd218356a87ed4.tar.xz
serverdata-28df8f11a3aea6587c8c140dfddd218356a87ed4.zip
add the JustifierChest 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 c53611a9..05168587 100644
--- a/db/craft_db.conf
+++ b/db/craft_db.conf
@@ -510,6 +510,31 @@ Boots: 700 --> 799
}
Priority: 52
},
+{
+ Id: 114
+ Name: "CraftJustifierChest"
+ Flag: "CRAFT_SMITHERY"
+ ReturnCode: 1317
+ SourceItems:
+ (
+ {
+ RotoniumIngot: 3
+ CottonCloth: 40
+ Coal: 20
+ SharpKnife: 1
+ },
+ )
+ CreateItems:
+ (
+ {
+ JustifierChest: 1
+ },
+ )
+ RequiredItems: {
+ RecipeBook: 1
+ }
+ Priority: 53
+},
/************************* LEG ARMOR (PANTS) ***********************************
********************************************************************************
diff --git a/npc/items/recipes.txt b/npc/items/recipes.txt
index edfdc547..d80a1e6d 100644
--- a/npc/items/recipes.txt
+++ b/npc/items/recipes.txt
@@ -131,6 +131,11 @@ function read_smithery {
5, SilverIngot,
25, Coal,
1, SharpKnife);
+ showRecipe(CraftJustifierChest, JustifierChest,
+ 3, RotoniumIngot,
+ 40, CottonCloth,
+ 20, Coal,
+ 1, SharpKnife);
return;
}