diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-11-06 20:35:10 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-11-06 20:35:10 -0300 |
commit | 3f8e5dc360676674f34917eb62597d821cfe92d9 (patch) | |
tree | 1806dcf83afa28aa6998be500c2311524453311b /npc | |
parent | 73caf30f85b97e0b7365e7fdbd67a99bc5cbc8bd (diff) | |
download | serverdata-3f8e5dc360676674f34917eb62597d821cfe92d9.tar.gz serverdata-3f8e5dc360676674f34917eb62597d821cfe92d9.tar.bz2 serverdata-3f8e5dc360676674f34917eb62597d821cfe92d9.tar.xz serverdata-3f8e5dc360676674f34917eb62597d821cfe92d9.zip |
Register all new shield recipes on blueprints. Note: How'll you get Sunny Crystal?
Secret :>
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 155e441c4..fbe47628d 100644 --- a/npc/craft/recipes.txt +++ b/npc/craft/recipes.txt @@ -470,6 +470,9 @@ function script MakeBlueprint { array_push(.@recipes, CraftPynRevolver); array_push(.@recipes, CraftApprenticeWand); array_push(.@recipes, CraftElficBow); + array_push(.@recipes, CraftBritShield); + array_push(.@recipes, CraftBromenalShield); + array_push(.@recipes, CraftBlueKnightShield); } if (.@rarity & CRAFT_EXPERT) { array_push(.@recipes, CraftGoldenRing); @@ -480,6 +483,8 @@ function script MakeBlueprint { array_push(.@recipes, CraftPynGatling); array_push(.@recipes, CraftLeaderWand); array_push(.@recipes, CraftChampionshipBow); + array_push(.@recipes, CraftSteelShield); + array_push(.@recipes, CraftDragonShield); } if (.@rarity & CRAFT_MASTER) { array_push(.@recipes, CraftDivineSword); @@ -487,6 +492,7 @@ function script MakeBlueprint { array_push(.@recipes, CraftPynShotgun); array_push(.@recipes, CraftLegendaryWand); array_push(.@recipes, CraftBansheeBow); + array_push(.@recipes, CraftSaviorShield); } // Now you'll learn some recipe! |