diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-04-17 06:01:11 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-04-17 06:01:11 -0300 |
commit | 2f065729610ea8a7df2fabe3cdcd8d5a06128364 (patch) | |
tree | 5719f1b90ec5c64a8efba6fc53fd83fa30bea248 /npc/craft | |
parent | d945fedbf8a62580ff48e82cb6cd55118b6dd40e (diff) | |
download | serverdata-2f065729610ea8a7df2fabe3cdcd8d5a06128364.tar.gz serverdata-2f065729610ea8a7df2fabe3cdcd8d5a06128364.tar.bz2 serverdata-2f065729610ea8a7df2fabe3cdcd8d5a06128364.tar.xz serverdata-2f065729610ea8a7df2fabe3cdcd8d5a06128364.zip |
Terranite Armor and Pants recipe.
Nerf Terra Protector blueprint droprate to only 0.12%
Diffstat (limited to 'npc/craft')
-rw-r--r-- | npc/craft/recipes.txt | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/npc/craft/recipes.txt b/npc/craft/recipes.txt index d7228f0fb..063b5a20b 100644 --- a/npc/craft/recipes.txt +++ b/npc/craft/recipes.txt @@ -472,6 +472,16 @@ function readCrafting { 1, TitaniumIngot, 8, Coal, 1, EverburnPowder); + showRecipe(CraftTerranitePants, TerranitePants, + 2, TerraniteIngot, + 15, Coal, + 32, LeatherPatch, + 1, EarthPowder); + showRecipe(CraftTerraniteArmor, TerraniteArmor, + 4, TerraniteIngot, + 45, Coal, + 32, IronPowder, + 1, EarthPowder); next; @scope$=""; return; @@ -602,6 +612,8 @@ function script MakeBlueprint { array_push(.@recipes, CraftCenturionHelmet); array_push(.@recipes, CraftBullHelmet); array_push(.@recipes, CraftDarkHelm); + array_push(.@recipes, CraftTerraniteArmor); + array_push(.@recipes, CraftTerranitePants); } if (.@rarity & CRAFT_MASTER) { array_push(.@recipes, CraftDivineSword); |