summaryrefslogtreecommitdiff
path: root/npc/craft/recipes.txt
diff options
context:
space:
mode:
authorChristopher Chay <2vendor@hisfootsteps.net>2020-06-26 00:14:32 +0000
committerJesusaves <cpntb1@ymail.com>2020-06-26 00:14:32 +0000
commitfa39363fcd0611e7f4c768d4ee7338f04eafddd7 (patch)
treec5049e0eebd20d3df80a036aa52b1fbaa4beb3bd /npc/craft/recipes.txt
parent6805f9ed8efa8df9563a63a2d1f74d1f2248fb19 (diff)
downloadserverdata-fa39363fcd0611e7f4c768d4ee7338f04eafddd7.tar.gz
serverdata-fa39363fcd0611e7f4c768d4ee7338f04eafddd7.tar.bz2
serverdata-fa39363fcd0611e7f4c768d4ee7338f04eafddd7.tar.xz
serverdata-fa39363fcd0611e7f4c768d4ee7338f04eafddd7.zip
Xanthem added Chest and Pants Equipment Recipes
Diffstat (limited to 'npc/craft/recipes.txt')
-rw-r--r--npc/craft/recipes.txt118
1 files changed, 118 insertions, 0 deletions
diff --git a/npc/craft/recipes.txt b/npc/craft/recipes.txt
index 45bc940f7..8e2ba3731 100644
--- a/npc/craft/recipes.txt
+++ b/npc/craft/recipes.txt
@@ -364,6 +364,107 @@ function readCrafting {
40, Coal,
1, EverburnPowder);
dnext;
+ // Chest Armors -> Primary Ore + Secondary Ore + Iron Powder + Earth Powder
+ mesc "----------"+l("Chest Armor Recipes")+"----------", 2;
+ showRecipe(CraftLeatherShirt, LeatherShirt,
+ 35, LeatherPatch,
+ 2, IronIngot,
+ 8, IronPowder,
+ 1, EarthPowder);
+ showRecipe(CraftLieutenantArmor, LieutenantArmor,
+ 4, CopperIngot,
+ 4, IronIngot,
+ 12, IronPowder,
+ 1, EarthPowder);
+ showRecipe(CraftChainmail, Chainmail,
+ 10, IronIngot,
+ 2, SilverIngot,
+ 18, IronPowder,
+ 1, EarthPowder);
+ showRecipe(CraftCopperArmor, CopperArmor,
+ 10, Copperngot,
+ 3, IronIngot,
+ 22, IronPowder,
+ 1, EarthPowder);
+ showRecipe(CraftLightPlatemail, LightPlatemail,
+ 15, IronIngot,
+ 5, SilverIngot,
+ 24, IronPowder,
+ 1, EarthPowder);
+ showRecipe(CraftGoldenLightPlate, GoldenLightPlatemail,
+ 15, GoldIngot,
+ 1, LightPlatemail,
+ 26, IronPowder,
+ 1, EarthPowder);
+ showRecipe(CraftWarlordPlate, WarlordPlate,
+ 15, TitaniumIngot,
+ 5, SilverIngot,
+ 28, IronPowder,
+ 1, EarthPowder);
+ showRecipe(CraftGoldenWarlord, GoldenWarlordPlate,
+ 45, GoldIngot,
+ 1, WarlordPlate,
+ 30, IronPowder,
+ 1, EarthPowder);
+ showRecipe(CraftBromenalChest, BromenalChest,
+ 11, TitaniumIngot,
+ 5, SilverIngot,
+ 11, IronPowder,
+ 1, EarthPowder);
+ showRecipe(CraftAsassinChest, AssassinChest,
+ 5, PlatinumIngot,
+ 30, CottonCloth,
+ 34, IronPowder,
+ 1, EarthPowder);
+ dnext;
+ // Pants -> Primary Item + Secondary Item + Leather Patch + Earth Powder
+ mesc "----------"+l("Pants Recipes")+"----------", 2;
+ showRecipe(CraftJeansShorts, JeansShorts,
+ 10, CottonCloth,
+ 5, CaveSnakeSkin,
+ 10, LeatherPatch,
+ 1, EarthPowder);
+ showRecipe(CraftRaidTrousers, RaidTrousers,
+ 30, CottonCloth,
+ 25, WhiteFur,
+ 14, LeatherPatch,
+ 1, EarthPowder);
+ showRecipe(CraftLeatherTrousers, LeatherTrousers,
+ 30, CottonCloth,
+ 20, Coal,
+ 19, LeatherPatch,
+ 1, EarthPowder);
+ showRecipe(CraftJeansChaps, JeansChaps,
+ 35, SnakeSkin,
+ 20, CottonCloth,
+ 22, LeatherPatch,
+ 1, EarthPowder);
+ showRecipe(CraftSilkPants, SilkPants,
+ 150,SilkCocoon,
+ 5, CottonCloth,
+ 24, LeatherPatch,
+ 1, EarthPowder);
+ showRecipe(CraftChainmailSkirt, ChainmailSkirt,
+ 10, IronIngot,
+ 15, SilverIngot,
+ 26, LeatherPatch,
+ 1, EarthPowder);
+ showRecipe(CraftBromenalPants, BromenalPants,
+ 5, TitaniumIngot,
+ 4, CopperIngot,
+ 28, LeatherPatch,
+ 1, EarthPowder);
+ showRecipe(CraftWarlordPants, WarlordPants,
+ 8, TitaniumIngot,
+ 10, SilverIngot,
+ 30, LeatherPatch,
+ 1, EarthPowder);
+ showRecipe(CraftAssassinPants, AssassinPants,
+ 3, IridiumIngot,
+ 35, CottonCloth,
+ 34, LeatherPatch,
+ 1, EarthPowder);
+ dnext;
// Gloves: Gloves items
mesc "----------"+l("Gloves Recipes")+"----------", 2;
showRecipe(CraftSilkGloves, SilkGloves,
@@ -570,6 +671,8 @@ function script MakeBlueprint {
array_push(.@recipes, CraftShortBow);
array_push(.@recipes, CraftSilkGloves);
array_push(.@recipes, CraftInfantryHelmet);
+ array_push(.@recipes, CraftLeatherShirt);
+ array_push(.@recipes, CraftJeansShorts);
}
if (.@rarity & CRAFT_INTERMEDIARY) {
array_push(.@recipes, CraftBugSlayer);
@@ -581,6 +684,8 @@ function script MakeBlueprint {
array_push(.@recipes, CraftLeatherGloves);
array_push(.@recipes, CraftDesertHelmet);
array_push(.@recipes, CraftBromenalHelmet);
+ array_push(.@recipes, CraftLieutenantArmor);
+ array_push(.@recipes, CraftRaidTrousers);
}
if (.@rarity & CRAFT_ADVANCED) {
array_push(.@recipes, CraftBacksword);
@@ -599,6 +704,17 @@ function script MakeBlueprint {
array_push(.@recipes, CraftCrusadeHelmet);
array_push(.@recipes, CraftWarlordHelmet);
array_push(.@recipes, CraftVikingHelmet);
+ array_push(.@recipes, CraftChainmail);
+ array_push(.@recipes, CraftCopperArmor);
+ array_push(.@recipes, CraftLightPlatemail);
+ array_push(.@recipes, CraftWarlordPlate);
+ array_push(.@recipes, CraftBromenalArmor);
+ array_push(.@recipes, CraftLeatherTrousers);
+ array_push(.@recipes, CraftJeansChaps);
+ array_push(.@recipes, CraftSilkPants);
+ array_push(.@recipes, CraftChainmailSkirt);
+ array_push(.@recipes, CraftBromenalPants);
+ array_push(.@recipes, CraftWarlordPants);
}
if (.@rarity & CRAFT_EXPERT) {
array_push(.@recipes, CraftGoldenRing);
@@ -619,6 +735,8 @@ function script MakeBlueprint {
array_push(.@recipes, CraftDarkHelm);
array_push(.@recipes, CraftTerraniteArmor);
array_push(.@recipes, CraftTerranitePants);
+ array_push(.@recipes, CraftAssassinChest);
+ array_push(.@recipes, CraftAssassinPants);
}
if (.@rarity & CRAFT_MASTER) {
array_push(.@recipes, CraftDivineSword);