summaryrefslogtreecommitdiff
path: root/npc/craft/recipes.txt
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2019-06-08 13:56:41 -0300
committerJesusaves <cpntb1@ymail.com>2019-06-08 13:56:41 -0300
commit054aa32e0f11759a3eccc8f77c7e394ecab47f9d (patch)
tree1501d9048d6b9d62e7812df7bcc96aed0e8b2c2b /npc/craft/recipes.txt
parent6139bddfeee6844e1eedade2264b248e716f3a36 (diff)
downloadserverdata-054aa32e0f11759a3eccc8f77c7e394ecab47f9d.tar.gz
serverdata-054aa32e0f11759a3eccc8f77c7e394ecab47f9d.tar.bz2
serverdata-054aa32e0f11759a3eccc8f77c7e394ecab47f9d.tar.xz
serverdata-054aa32e0f11759a3eccc8f77c7e394ecab47f9d.zip
Okay, add two shields, but we cannot make such reuse of materials %%n
Diffstat (limited to 'npc/craft/recipes.txt')
-rw-r--r--npc/craft/recipes.txt14
1 files changed, 14 insertions, 0 deletions
diff --git a/npc/craft/recipes.txt b/npc/craft/recipes.txt
index 714c77d2c..19d4e44ee 100644
--- a/npc/craft/recipes.txt
+++ b/npc/craft/recipes.txt
@@ -233,6 +233,18 @@ function readCrafting {
16, Coal,
1, EverburnPowder);
next;
+ // Shields
+ mesc "----------"+l("Shield Recipes")+"----------", 2;
+ showRecipe(CraftWoodenShield, WoodenShield,
+ 40, WoodenLog,
+ 2, LeatherPatch,
+ 1, SharpKnife);
+ showRecipe(CraftBladeShield, BladeShield,
+ 14, IronIngot,
+ 2, TitaniumIngot,
+ 5, Coal,
+ 1, EverburnPowder);
+ next;
// Misc
mesc "----------"+l("Miscellaneous Recipes")+"----------", 2;
showRecipe(CraftGoldenRing, GoldenRing,
@@ -314,11 +326,13 @@ function script MakeBlueprint {
case CRAFT_EQUIPMENT:
if (.@rarity & CRAFT_BASIC) {
array_push(.@recipes, CraftWoodenSword);
+ array_push(.@recipes, CraftWoodenShield);
array_push(.@recipes, CraftTrainingWand);
}
if (.@rarity & CRAFT_INTERMEDIARY) {
array_push(.@recipes, CraftBugSlayer);
array_push(.@recipes, CraftShortGladius);
+ array_push(.@recipes, CraftBladeShield);
array_push(.@recipes, CraftNoviceWand);
}
if (.@rarity & CRAFT_ADVANCED) {