diff options
author | Jesusaves <cpntb1@ymail.com> | 2022-05-19 15:26:04 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2022-05-19 15:26:04 -0300 |
commit | 4ac28ea73b584a13196e987c13beff9a10799eff (patch) | |
tree | 473d74dfbd449cfd73ca938bbe68a3b3442dffe0 /npc/craft/recipes.txt | |
parent | 7aa01f70e69147f212980a9a9aab70b4a6b9d7be (diff) | |
download | serverdata-4ac28ea73b584a13196e987c13beff9a10799eff.tar.gz serverdata-4ac28ea73b584a13196e987c13beff9a10799eff.tar.bz2 serverdata-4ac28ea73b584a13196e987c13beff9a10799eff.tar.xz serverdata-4ac28ea73b584a13196e987c13beff9a10799eff.zip |
Add footwear recipes
Diffstat (limited to 'npc/craft/recipes.txt')
-rw-r--r-- | npc/craft/recipes.txt | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/npc/craft/recipes.txt b/npc/craft/recipes.txt index 7f49114d6..781dfdd11 100644 --- a/npc/craft/recipes.txt +++ b/npc/craft/recipes.txt @@ -306,6 +306,15 @@ function readCrafting { WarlordGloves, AssassinGloves); dnext; + // Feet: Shoes items + mesc "----------"+l("Footwear Recipes")+"----------", 2; + showRecipe(LeatherBoots, + DeepBlackBoots, + BromenalBoots, + WarlordBoots, + AssassinBoots, + SaviorBoots); + dnext; // Helmets: Helmet items mesc "----------"+l("Helmet Recipes")+"----------", 2; showRecipe(InfantryHelmet, @@ -452,6 +461,7 @@ function script MakeBlueprint { array_push(.@recipes, CraftInfantryHelmet); array_push(.@recipes, CraftLeatherShirt); array_push(.@recipes, CraftJeansShorts); + array_push(.@recipes, CraftLeatherBoots); } if (.@rarity & CRAFT_INTERMEDIARY) { array_push(.@recipes, CraftBugSlayer); @@ -465,6 +475,7 @@ function script MakeBlueprint { array_push(.@recipes, CraftBromenalHelmet); array_push(.@recipes, CraftLieutenantArmor); array_push(.@recipes, CraftRaidTrousers); + array_push(.@recipes, CraftDeepBlackBoots); } if (.@rarity & CRAFT_ADVANCED) { array_push(.@recipes, CraftBacksword); @@ -494,6 +505,7 @@ function script MakeBlueprint { array_push(.@recipes, CraftChainmailSkirt); array_push(.@recipes, CraftBromenalPants); array_push(.@recipes, CraftWarlordPants); + array_push(.@recipes, CraftBromenalBoots); } if (.@rarity & CRAFT_EXPERT) { array_push(.@recipes, CraftGoldenRing); @@ -514,6 +526,7 @@ function script MakeBlueprint { array_push(.@recipes, CraftDarkHelm); array_push(.@recipes, CraftTerraniteArmor); array_push(.@recipes, CraftTerranitePants); + array_push(.@recipes, CraftWarlordBoots); array_push(.@recipes, CraftAssassinChest); array_push(.@recipes, CraftAssassinPants); } @@ -524,6 +537,7 @@ function script MakeBlueprint { array_push(.@recipes, CraftMysticWand); array_push(.@recipes, CraftBansheeBow); array_push(.@recipes, CraftAssassinGloves); + array_push(.@recipes, CraftAssassinBoots); array_push(.@recipes, CraftDarkKnightHelmet); array_push(.@recipes, CraftSamuraiHelmet); } |