diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-01-23 21:19:48 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-01-23 21:19:48 -0300 |
commit | 1912de6f9352e0c4713c5c22f0866e85b346b34c (patch) | |
tree | 1c020a36de2d8d006a4a0390d03fc3cf572fab08 /npc/craft/recipes.txt | |
parent | 8b7bce95b0eec202b7751de616bc3cf6ba59163a (diff) | |
download | serverdata-1912de6f9352e0c4713c5c22f0866e85b346b34c.tar.gz serverdata-1912de6f9352e0c4713c5c22f0866e85b346b34c.tar.bz2 serverdata-1912de6f9352e0c4713c5c22f0866e85b346b34c.tar.xz serverdata-1912de6f9352e0c4713c5c22f0866e85b346b34c.zip |
Release all helmets recipes.
Sorry guys, I did not realize they weren't there yet %%n
Diffstat (limited to 'npc/craft/recipes.txt')
-rw-r--r-- | npc/craft/recipes.txt | 14 |
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! |