summaryrefslogtreecommitdiff
path: root/npc/craft/recipes.txt
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2019-06-10 00:41:44 -0300
committerJesusaves <cpntb1@ymail.com>2019-06-10 00:41:44 -0300
commita8020cd4c5c60db1ff70b980977b44d735ef0c8a (patch)
tree1a6024aecb798420dfdadc65e1683b327d591a52 /npc/craft/recipes.txt
parent61e6ab6364da84b58d14a38bcfc8cd1d374c7835 (diff)
downloadserverdata-a8020cd4c5c60db1ff70b980977b44d735ef0c8a.tar.gz
serverdata-a8020cd4c5c60db1ff70b980977b44d735ef0c8a.tar.bz2
serverdata-a8020cd4c5c60db1ff70b980977b44d735ef0c8a.tar.xz
serverdata-a8020cd4c5c60db1ff70b980977b44d735ef0c8a.zip
Add the two hand weapons and update JSaves Grimorium
Diffstat (limited to 'npc/craft/recipes.txt')
-rw-r--r--npc/craft/recipes.txt19
1 files changed, 17 insertions, 2 deletions
diff --git a/npc/craft/recipes.txt b/npc/craft/recipes.txt
index 0f97f92e5..ded8fd226 100644
--- a/npc/craft/recipes.txt
+++ b/npc/craft/recipes.txt
@@ -157,8 +157,8 @@ function readCrafting {
next;
mesc l("List of known crafting recipes:");
mes "";
- // Melee Weapons: Never use Titanium nor Lead
- mesc "----------"+l("Melee Weapon Recipes")+"----------", 2;
+ // Melee Weapons: Never use Titanium nor Lead. Iron-based, no silver
+ mesc "----------"+l("One Hand Weapon Recipes")+"----------", 2;
showRecipe(CraftWoodenSword, WoodenSword,
20, WoodenLog,
5, RawLog,
@@ -182,6 +182,19 @@ function readCrafting {
24, Coal,
1, EverburnPowder);
next;
+ // Two Hands Melee Weapons: Never use Titanium nor Lead. Silver-based.
+ mesc "----------"+l("Two Hands Weapon Recipes")+"----------", 2;
+ showRecipe(CraftMiereCleaver, MiereCleaver,
+ 12, SilverIngot,
+ 1, TinIngot,
+ 8, Coal,
+ 1, EverburnPowder);
+ showRecipe(CraftBroadsword, Broadsword,
+ 27, SilverIngot,
+ 1, TinIngot,
+ 20, Coal,
+ 1, EverburnPowder);
+ next;
// Magical Weapons: Wood + powders
mesc "----------"+l("Magical Weapon Recipes")+"----------", 2;
showRecipe(CraftTrainingWand, TrainingWand,
@@ -338,11 +351,13 @@ function script MakeBlueprint {
if (.@rarity & CRAFT_ADVANCED) {
array_push(.@recipes, CraftBacksword);
array_push(.@recipes, CraftShortsword);
+ array_push(.@recipes, CraftMiereCleaver);
array_push(.@recipes, CraftPynRevolver);
array_push(.@recipes, CraftApprenticeWand);
}
if (.@rarity & CRAFT_EXPERT) {
array_push(.@recipes, CraftGoldenRing);
+ array_push(.@recipes, CraftBroadsword);
array_push(.@recipes, CraftPynRifle);
array_push(.@recipes, CraftPynGatling);
array_push(.@recipes, CraftLeaderWand);