diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-06-10 00:41:44 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-06-10 00:41:44 -0300 |
commit | a8020cd4c5c60db1ff70b980977b44d735ef0c8a (patch) | |
tree | 1a6024aecb798420dfdadc65e1683b327d591a52 /npc | |
parent | 61e6ab6364da84b58d14a38bcfc8cd1d374c7835 (diff) | |
download | serverdata-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')
-rw-r--r-- | npc/craft/recipes.txt | 19 | ||||
-rw-r--r-- | npc/items/books.txt | 9 |
2 files changed, 26 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); diff --git a/npc/items/books.txt b/npc/items/books.txt index 07bdf5cd8..ce8ed1441 100644 --- a/npc/items/books.txt +++ b/npc/items/books.txt @@ -212,6 +212,15 @@ OnInit: mesc l("Summon Yetis - @sk-frozenheart"); if (getskilllv(TMW2_STONEHEART)) mesc l("Summon Terranites - @sk-stoneheart"); + if (getskilllv(TMW2_KALBOO)) + mesc l("Summon Mouboo - @sk-kalboo"); + if (getskilllv(TMW2_KALSPIKE)) + mesc l("Summon P. Spiky Mushroom - @sk-kalspike"); + if (getskilllv(TMW2_CUTEHEART)) + mesc l("Summon Fluffies - @sk-cuteheart"); + if (getskilllv(TMW2_PLANTKINGDOM)) + mesc l("Summon Plants - @sk-plantkingdom"); + next; mesn l("Current Magic Control"); .@val=MAGIC_EXP+rand(-MAGIC_LVL*5, MAGIC_LVL*5); |