diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-12-24 07:45:39 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-12-24 07:45:39 -0300 |
commit | 07a43e4806d0e8f41b45abff9bf311c8a2d25e35 (patch) | |
tree | db9bccc4d4a33afbbb5beef73b8f0863fe5e5a06 /npc/craft | |
parent | 4e37370e4690529d1fb2e7b8ef8764f470d5289f (diff) | |
download | serverdata-07a43e4806d0e8f41b45abff9bf311c8a2d25e35.tar.gz serverdata-07a43e4806d0e8f41b45abff9bf311c8a2d25e35.tar.bz2 serverdata-07a43e4806d0e8f41b45abff9bf311c8a2d25e35.tar.xz serverdata-07a43e4806d0e8f41b45abff9bf311c8a2d25e35.zip |
You can now obtain the scroll recipes
Diffstat (limited to 'npc/craft')
-rw-r--r-- | npc/craft/recipes.txt | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/npc/craft/recipes.txt b/npc/craft/recipes.txt index db2449e61..95cce3aad 100644 --- a/npc/craft/recipes.txt +++ b/npc/craft/recipes.txt @@ -171,6 +171,16 @@ function readAlchemy { DexPotionB, DexPotionC); + // Scrolls + mesc "----------"+l("Magic Scrolls")+"----------", 2; + showRecipe(ScrollSCave, + ScrollSMaggot, + ScrollSWolvern, + ScrollSYeti, + ScrollSTerranite, + ScrollSDragon, + ScrollMagnusHealA); + // General Stuff mesc "----------"+l("Reagents & Other Potions")+"----------", 2; showRecipe(IcedBottle, @@ -343,6 +353,8 @@ function script MakeBlueprint { array_push(.@recipes, CraftHastePotion); array_push(.@recipes, CraftStrengthPotion); array_push(.@recipes, CraftCoffee); + array_push(.@recipes, CraftScrollSCave); + array_push(.@recipes, CraftScrollSMaggot); } if (.@rarity & CRAFT_INTERMEDIARY) { array_push(.@recipes, CraftLukPotionA); @@ -353,6 +365,7 @@ function script MakeBlueprint { array_push(.@recipes, CraftSpeedPotion); array_push(.@recipes, CraftIcedBottle); array_push(.@recipes, CraftInsuranceContract); + array_push(.@recipes, CraftScrollSWolvern); } if (.@rarity & CRAFT_ADVANCED) { array_push(.@recipes, CraftResetPotion); @@ -363,6 +376,7 @@ function script MakeBlueprint { array_push(.@recipes, CraftScentGrenade); array_push(.@recipes, CraftGrenade); array_push(.@recipes, CraftInsurance); + array_push(.@recipes, CraftScrollSYeti); } if (.@rarity & CRAFT_EXPERT) { array_push(.@recipes, CraftLukPotionB); @@ -373,6 +387,8 @@ function script MakeBlueprint { array_push(.@recipes, CraftAtroposMixture); array_push(.@recipes, CraftPurificationPotion); array_push(.@recipes, CraftHomunResetPotion); + array_push(.@recipes, CraftScrollSTerranite); + array_push(.@recipes, CraftScrollMagnusHealA); } if (.@rarity & CRAFT_MASTER) { array_push(.@recipes, CraftLukPotionC); @@ -385,6 +401,7 @@ function script MakeBlueprint { array_push(.@recipes, CraftSacredImmortalityPotion); array_push(.@recipes, CraftBrokenWarpCrystal); array_push(.@recipes, CraftMagicApple); + array_push(.@recipes, CraftScrollSDragon); } // Now you'll learn some recipe! |