summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgumi <git@gumi.ca>2020-08-13 22:23:13 -0400
committergumi <git@gumi.ca>2020-08-13 22:23:13 -0400
commit1d8b269f527855087b01ca066d5bb36ff3841a91 (patch)
tree02fe96718593cfd760a30f4752910f9a5198ae73
parent1db3e28574f91844d2b89ae806d204c7afb8b2fd (diff)
downloadserverdata-1d8b269f527855087b01ca066d5bb36ff3841a91.tar.gz
serverdata-1d8b269f527855087b01ca066d5bb36ff3841a91.tar.bz2
serverdata-1d8b269f527855087b01ca066d5bb36ff3841a91.tar.xz
serverdata-1d8b269f527855087b01ca066d5bb36ff3841a91.zip
add the LegionIronArmor 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 a3bb5a61..2e9a0876 100644
--- a/db/craft_db.conf
+++ b/db/craft_db.conf
@@ -560,6 +560,31 @@ Boots: 700 --> 799
}
Priority: 60
},
+{
+ Id: 116
+ Name: "CraftLegionIronArmor"
+ Flag: "CRAFT_SMITHERY"
+ ReturnCode: 1310
+ SourceItems:
+ (
+ {
+ IronIngot: 30
+ RotoniumIngot: 6
+ Coal: 40
+ Dagger: 1
+ },
+ )
+ CreateItems:
+ (
+ {
+ LegionIronArmor: 1
+ },
+ )
+ RequiredItems: {
+ RecipeBook: 1
+ }
+ Priority: 61
+},
/************************* LEG ARMOR (PANTS) ***********************************
********************************************************************************
diff --git a/npc/items/recipes.txt b/npc/items/recipes.txt
index ff66d9e0..5bec6258 100644
--- a/npc/items/recipes.txt
+++ b/npc/items/recipes.txt
@@ -201,6 +201,11 @@ function read_tailoring {
40, FluffyFur,
20, SilkCocoon,
1, Dagger);
+ showRecipe(CraftLegionIronArmor, LegionIronArmor,
+ 30, IronIngot,
+ 6, RotoniumIngot,
+ 40, Coal,
+ 1, Dagger);
return;
}