summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgumi <git@gumi.ca>2020-08-13 21:04:45 -0400
committergumi <git@gumi.ca>2020-08-13 21:04:45 -0400
commit15238e1fb797221381980ea27be5d91eb872751a (patch)
treed9a710de65333dceb9a2358cf0e130537cc9b9be
parentbee3e157ac6e2930b8254ec5d55886f6431a3378 (diff)
downloadserverdata-15238e1fb797221381980ea27be5d91eb872751a.tar.gz
serverdata-15238e1fb797221381980ea27be5d91eb872751a.tar.bz2
serverdata-15238e1fb797221381980ea27be5d91eb872751a.tar.xz
serverdata-15238e1fb797221381980ea27be5d91eb872751a.zip
add the LegionTrainingShirt recipe
Co-authored-by: Christopher Chay <2@hisfootsteps.net>
-rw-r--r--db/craft_db.conf25
-rw-r--r--npc/items/recipes.txt10
2 files changed, 35 insertions, 0 deletions
diff --git a/db/craft_db.conf b/db/craft_db.conf
index d299cb67..842ae9f4 100644
--- a/db/craft_db.conf
+++ b/db/craft_db.conf
@@ -305,6 +305,31 @@ Boots: 700 --> 799
}
Priority: 30
},
+{
+ Id: 106
+ Name: "CraftLegionTrainingShirt"
+ Flag: "CRAFT_SMITHERY"
+ ReturnCode: 1304
+ SourceItems:
+ (
+ {
+ IronIngot: 5
+ CopperIngot: 1
+ Coal: 5
+ Knife: 1
+ },
+ )
+ CreateItems:
+ (
+ {
+ LegionTrainingShirt: 1
+ },
+ )
+ RequiredItems: {
+ RecipeBook: 1
+ }
+ Priority: 31
+},
/************************* LEG ARMOR (PANTS) ***********************************
********************************************************************************
diff --git a/npc/items/recipes.txt b/npc/items/recipes.txt
index e6091ab4..48ad8b61 100644
--- a/npc/items/recipes.txt
+++ b/npc/items/recipes.txt
@@ -102,6 +102,16 @@ function read_smithery {
next;
mesc l("List of known smithery recipes:");
+ mes();
+ mesf(".:: %s ::.", l("Chest Armor"));
+ mes();
+
+ showRecipe(CraftLegionTrainingShirt, LegionTrainingShirt,
+ 5, IronIngot,
+ 1, CopperIngot,
+ 5, Coal,
+ 1, Knife);
+
return;
}