summaryrefslogtreecommitdiff
path: root/npc/craft
diff options
context:
space:
mode:
Diffstat (limited to 'npc/craft')
-rw-r--r--npc/craft/recipes.txt30
1 files changed, 29 insertions, 1 deletions
diff --git a/npc/craft/recipes.txt b/npc/craft/recipes.txt
index 74116ef45..0748c77eb 100644
--- a/npc/craft/recipes.txt
+++ b/npc/craft/recipes.txt
@@ -158,7 +158,7 @@ function readCrafting {
mesc l("List of known crafting recipes:");
mes "";
// Weapons
- mesc "----------"+l("Weapon Recipes")+"----------", 2;
+ mesc "----------"+l("Melee Weapon Recipes")+"----------", 2;
showRecipe(CraftWoodenSword, WoodenSword,
20, WoodenLog,
5, RawLog,
@@ -182,6 +182,34 @@ function readCrafting {
24, Coal,
1, EverburnPowder);
next;
+ // Weapons
+ mesc "----------"+l("Magical Weapon Recipes")+"----------", 2;
+ showRecipe(CraftTrainingWand, TrainingWand,
+ 20, WoodenLog,
+ 30, ManaPiouFeathers,
+ 5, FluoPowder,
+ 1, GemPowder);
+ showRecipe(CraftNoviceWand, NoviceWand,
+ 40, WoodenLog,
+ 60, ManaPiouFeathers,
+ 8, FluoPowder,
+ 2, GemPowder);
+ showRecipe(CraftApprenticeWand, ApprenticeWand,
+ 60, WoodenLog,
+ 90, ManaPiouFeathers,
+ 12, FluoPowder,
+ 3, GemPowder);
+ showRecipe(CraftLeaderWand, LeaderWand,
+ 100, WoodenLog,
+ 120, ManaPiouFeathers,
+ 15, FluoPowder,
+ 5, GemPowder);
+ showRecipe(CraftLegendaryWand, LegendaryWand,
+ 110, WoodenLog,
+ 3, GoldenApple,
+ 20, FluoPowder,
+ 7, GemPowder);
+ next;
@scope$="";
return;
}