summaryrefslogtreecommitdiff
path: root/npc/craft/recipes.txt
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2019-07-18 12:29:45 -0300
committerJesusaves <cpntb1@ymail.com>2019-07-18 12:30:48 -0300
commit349733a0412212ffecc8a9b0ca225ffe956eea0a (patch)
treec2c2486b849db11d3c6fda998a408bbf168cf5ba /npc/craft/recipes.txt
parent37e4b5701a10ff8e1711d539bcd4a2fae4cfdc73 (diff)
downloadserverdata-349733a0412212ffecc8a9b0ca225ffe956eea0a.tar.gz
serverdata-349733a0412212ffecc8a9b0ca225ffe956eea0a.tar.bz2
serverdata-349733a0412212ffecc8a9b0ca225ffe956eea0a.tar.xz
serverdata-349733a0412212ffecc8a9b0ca225ffe956eea0a.zip
All bows (Short Bow, Forest Bow, Elfic Bow, Championship Bow, Banshee Bow) are
now under RELEASED status.
Diffstat (limited to 'npc/craft/recipes.txt')
-rw-r--r--npc/craft/recipes.txt33
1 files changed, 33 insertions, 0 deletions
diff --git a/npc/craft/recipes.txt b/npc/craft/recipes.txt
index 4c54667d8..05eea9e99 100644
--- a/npc/craft/recipes.txt
+++ b/npc/craft/recipes.txt
@@ -195,6 +195,34 @@ function readCrafting {
20, Coal,
1, EverburnPowder);
next;
+ // Archery Weapons: Always use Wood, Root and Carp.
+ mesc "----------"+l("Archery Weapon Recipes")+"----------", 2;
+ showRecipe(CraftShortBow, ShortBow,
+ 18, WoodenLog,
+ 12, Root,
+ 3, LeatherPatch,
+ 1, CommonCarp);
+ showRecipe(CraftForestBow, ForestBow,
+ 24, WoodenLog,
+ 16, Root,
+ 5, LeatherPatch,
+ 3, CommonCarp);
+ showRecipe(CraftElficBow, ElficBow,
+ 33, WoodenLog,
+ 22, Root,
+ 1, IronIngot,
+ 4, CommonCarp);
+ showRecipe(CraftChampionshipBow, ChampionshipBow,
+ 48, WoodenLog,
+ 32, Root,
+ 1, GoldIngot,
+ 5, CommonCarp);
+ showRecipe(CraftBansheeBow, BansheeBow,
+ 70, WoodenLog,
+ 45, Root,
+ 5, DarkCrystal,
+ 5, CommonCarp);
+ next;
// Magical Weapons: Wood + powders
mesc "----------"+l("Magical Weapon Recipes")+"----------", 2;
showRecipe(CraftTrainingWand, TrainingWand,
@@ -341,12 +369,14 @@ function script MakeBlueprint {
array_push(.@recipes, CraftWoodenSword);
array_push(.@recipes, CraftWoodenShield);
array_push(.@recipes, CraftTrainingWand);
+ array_push(.@recipes, CraftShortBow);
}
if (.@rarity & CRAFT_INTERMEDIARY) {
array_push(.@recipes, CraftBugSlayer);
array_push(.@recipes, CraftShortGladius);
array_push(.@recipes, CraftBladeShield);
array_push(.@recipes, CraftNoviceWand);
+ array_push(.@recipes, CraftForestBow);
}
if (.@rarity & CRAFT_ADVANCED) {
array_push(.@recipes, CraftBacksword);
@@ -354,6 +384,7 @@ function script MakeBlueprint {
array_push(.@recipes, CraftMiereCleaver);
array_push(.@recipes, CraftPynRevolver);
array_push(.@recipes, CraftApprenticeWand);
+ array_push(.@recipes, CraftElficBow);
}
if (.@rarity & CRAFT_EXPERT) {
array_push(.@recipes, CraftGoldenRing);
@@ -361,10 +392,12 @@ function script MakeBlueprint {
array_push(.@recipes, CraftPynRifle);
array_push(.@recipes, CraftPynGatling);
array_push(.@recipes, CraftLeaderWand);
+ array_push(.@recipes, CraftChampionshipBow);
}
if (.@rarity & CRAFT_MASTER) {
array_push(.@recipes, CraftPynShotgun);
array_push(.@recipes, CraftLegendaryWand);
+ array_push(.@recipes, CraftBansheeBow);
}
// Now you'll learn some recipe!