diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-11-06 21:58:07 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-11-06 21:58:07 -0300 |
commit | b22f27f610747c7053d692a5afcc39f00b0bc5ac (patch) | |
tree | 847558d3cd1ecdd72b9be1ad6bcb1f552ec63e86 /npc | |
parent | 0462d7aa4db6f882eda596474d4c81e5491200f7 (diff) | |
download | serverdata-b22f27f610747c7053d692a5afcc39f00b0bc5ac.tar.gz serverdata-b22f27f610747c7053d692a5afcc39f00b0bc5ac.tar.bz2 serverdata-b22f27f610747c7053d692a5afcc39f00b0bc5ac.tar.xz serverdata-b22f27f610747c7053d692a5afcc39f00b0bc5ac.zip |
Add the gloves to recipe book.
Diffstat (limited to 'npc')
-rw-r--r-- | npc/craft/recipes.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/npc/craft/recipes.txt b/npc/craft/recipes.txt index c006a93e0..05c64ea4f 100644 --- a/npc/craft/recipes.txt +++ b/npc/craft/recipes.txt @@ -485,6 +485,7 @@ function script MakeBlueprint { array_push(.@recipes, CraftWoodenShield); array_push(.@recipes, CraftTrainingWand); array_push(.@recipes, CraftShortBow); + array_push(.@recipes, CraftSilkGloves); } if (.@rarity & CRAFT_INTERMEDIARY) { array_push(.@recipes, CraftBugSlayer); @@ -493,6 +494,7 @@ function script MakeBlueprint { array_push(.@recipes, CraftBladeShield); array_push(.@recipes, CraftNoviceWand); array_push(.@recipes, CraftForestBow); + array_push(.@recipes, CraftLeatherGloves); } if (.@rarity & CRAFT_ADVANCED) { array_push(.@recipes, CraftBacksword); @@ -506,6 +508,7 @@ function script MakeBlueprint { array_push(.@recipes, CraftBritShield); array_push(.@recipes, CraftBromenalShield); array_push(.@recipes, CraftBlueKnightShield); + array_push(.@recipes, CraftBromenalGloves); } if (.@rarity & CRAFT_EXPERT) { array_push(.@recipes, CraftGoldenRing); @@ -518,6 +521,8 @@ function script MakeBlueprint { array_push(.@recipes, CraftChampionshipBow); array_push(.@recipes, CraftSteelShield); array_push(.@recipes, CraftDragonShield); + array_push(.@recipes, CraftManaGloves); + array_push(.@recipes, CraftWarlordGloves); } if (.@rarity & CRAFT_MASTER) { array_push(.@recipes, CraftDivineSword); @@ -526,6 +531,7 @@ function script MakeBlueprint { array_push(.@recipes, CraftLegendaryWand); array_push(.@recipes, CraftBansheeBow); array_push(.@recipes, CraftSaviorShield); + array_push(.@recipes, CraftAssassinGloves); } // Now you'll learn some recipe! |