summaryrefslogtreecommitdiff
path: root/npc/craft/recipes.txt
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2019-06-08 13:26:18 -0300
committerJesusaves <cpntb1@ymail.com>2019-06-08 13:26:18 -0300
commit425c3025fa4b82585f732998474d54ddc96def67 (patch)
tree3522fd75947e9fdb549afb12b407abb4f2a0c966 /npc/craft/recipes.txt
parentb441dd36f18727cba727c7fd7cc3321b3f7d8d52 (diff)
downloadserverdata-425c3025fa4b82585f732998474d54ddc96def67.tar.gz
serverdata-425c3025fa4b82585f732998474d54ddc96def67.tar.bz2
serverdata-425c3025fa4b82585f732998474d54ddc96def67.tar.xz
serverdata-425c3025fa4b82585f732998474d54ddc96def67.zip
Add wands to craft recipes
Diffstat (limited to 'npc/craft/recipes.txt')
-rw-r--r--npc/craft/recipes.txt5
1 files changed, 5 insertions, 0 deletions
diff --git a/npc/craft/recipes.txt b/npc/craft/recipes.txt
index e53a08155..81ffb8d94 100644
--- a/npc/craft/recipes.txt
+++ b/npc/craft/recipes.txt
@@ -254,18 +254,23 @@ function script MakeBlueprint {
case CRAFT_EQUIPMENT:
if (.@rarity & CRAFT_BASIC) {
array_push(.@recipes, CraftWoodenSword);
+ array_push(.@recipes, CraftTrainingWand);
}
if (.@rarity & CRAFT_INTERMEDIARY) {
array_push(.@recipes, CraftBugSlayer);
+ array_push(.@recipes, CraftNoviceWand);
}
if (.@rarity & CRAFT_ADVANCED) {
array_push(.@recipes, CraftShortGladius);
+ array_push(.@recipes, CraftApprenticeWand);
}
if (.@rarity & CRAFT_EXPERT) {
array_push(.@recipes, CraftBacksword);
+ array_push(.@recipes, CraftLeaderWand);
}
if (.@rarity & CRAFT_MASTER) {
array_push(.@recipes, CraftShortsword);
+ array_push(.@recipes, CraftLegendaryWand);
}
// Now you'll learn some recipe!