diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-04-17 05:28:15 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-04-17 05:28:15 -0300 |
commit | 018d558281b00d623d4e745016f2562ebcd71a5c (patch) | |
tree | 037c9c92ce73b459069391a793f2d97b535905c3 /npc/craft | |
parent | fef33107569677a7842604ee65106e249b3a101b (diff) | |
download | serverdata-018d558281b00d623d4e745016f2562ebcd71a5c.tar.gz serverdata-018d558281b00d623d4e745016f2562ebcd71a5c.tar.bz2 serverdata-018d558281b00d623d4e745016f2562ebcd71a5c.tar.xz serverdata-018d558281b00d623d4e745016f2562ebcd71a5c.zip |
Terranite Helmet recipe
Diffstat (limited to 'npc/craft')
-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 e03e815d2..d7228f0fb 100644 --- a/npc/craft/recipes.txt +++ b/npc/craft/recipes.txt @@ -434,6 +434,11 @@ function readCrafting { 5, TitaniumIngot, 27, Lifestone, 1, EarthPowder); + showRecipe(CraftTerraniteHelmet, TerraniteHelmet, + 3, TerraniteIngot, + 30, Coal, + 32, Lifestone, + 1, EarthPowder); showRecipe(CraftCenturionHelmet, CenturionHelmet, 2, IridiumIngot, 10, TitaniumIngot, @@ -593,6 +598,7 @@ function script MakeBlueprint { array_push(.@recipes, CraftDragonShield); array_push(.@recipes, CraftManaGloves); array_push(.@recipes, CraftWarlordGloves); + array_push(.@recipes, CraftTerraniteHelmet); array_push(.@recipes, CraftCenturionHelmet); array_push(.@recipes, CraftBullHelmet); array_push(.@recipes, CraftDarkHelm); |