diff options
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! |