summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--npc/craft/recipes.txt14
1 files changed, 13 insertions, 1 deletions
diff --git a/npc/craft/recipes.txt b/npc/craft/recipes.txt
index 522ac9700..8f69551de 100644
--- a/npc/craft/recipes.txt
+++ b/npc/craft/recipes.txt
@@ -549,6 +549,7 @@ function script MakeBlueprint {
array_push(.@recipes, CraftTrainingWand);
array_push(.@recipes, CraftShortBow);
array_push(.@recipes, CraftSilkGloves);
+ array_push(.@recipes, CraftInfantryHelmet);
}
if (.@rarity & CRAFT_INTERMEDIARY) {
array_push(.@recipes, CraftBugSlayer);
@@ -558,6 +559,8 @@ function script MakeBlueprint {
array_push(.@recipes, CraftNoviceWand);
array_push(.@recipes, CraftForestBow);
array_push(.@recipes, CraftLeatherGloves);
+ array_push(.@recipes, CraftDesertHelmet);
+ array_push(.@recipes, CraftBromenalHelmet);
}
if (.@rarity & CRAFT_ADVANCED) {
array_push(.@recipes, CraftBacksword);
@@ -572,6 +575,10 @@ function script MakeBlueprint {
array_push(.@recipes, CraftBromenalShield);
array_push(.@recipes, CraftBlueKnightShield);
array_push(.@recipes, CraftBromenalGloves);
+ array_push(.@recipes, CraftCandleHelmet);
+ array_push(.@recipes, CraftCrusadeHelmet);
+ array_push(.@recipes, CraftWarlordHelmet);
+ array_push(.@recipes, CraftVikingHelmet);
}
if (.@rarity & CRAFT_EXPERT) {
array_push(.@recipes, CraftGoldenRing);
@@ -586,7 +593,10 @@ function script MakeBlueprint {
array_push(.@recipes, CraftDragonShield);
array_push(.@recipes, CraftManaGloves);
array_push(.@recipes, CraftWarlordGloves);
- }
+ array_push(.@recipes, CraftCenturionHelmet);
+ array_push(.@recipes, CraftBullHelmet);
+ array_push(.@recipes, CraftDarkHelm);
+ }
if (.@rarity & CRAFT_MASTER) {
array_push(.@recipes, CraftDivineSword);
array_push(.@recipes, CraftImmortalSword);
@@ -595,6 +605,8 @@ function script MakeBlueprint {
array_push(.@recipes, CraftBansheeBow);
array_push(.@recipes, CraftSaviorShield);
array_push(.@recipes, CraftAssassinGloves);
+ array_push(.@recipes, CraftDarkKnightHelmet);
+ array_push(.@recipes, CraftSamuraiHelmet);
}
// Now you'll learn some recipe!