diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-12-23 03:35:32 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-12-23 03:35:32 -0300 |
commit | cbb546abba8a869f45ac04cc44b9e36d9adead7d (patch) | |
tree | e3c00147ebbe41c8f559df28d4bc08e7d925cf6f /npc/craft | |
parent | b17e38270747fd0e85016282c6366e0c6d6a830f (diff) | |
download | serverdata-cbb546abba8a869f45ac04cc44b9e36d9adead7d.tar.gz serverdata-cbb546abba8a869f45ac04cc44b9e36d9adead7d.tar.bz2 serverdata-cbb546abba8a869f45ac04cc44b9e36d9adead7d.tar.xz serverdata-cbb546abba8a869f45ac04cc44b9e36d9adead7d.zip |
Introduce the new recipes and missing recipes to the General Public Alchemy.
Diffstat (limited to 'npc/craft')
-rw-r--r-- | npc/craft/alchemy.txt | 16 | ||||
-rw-r--r-- | npc/craft/recipes.txt | 26 |
2 files changed, 30 insertions, 12 deletions
diff --git a/npc/craft/alchemy.txt b/npc/craft/alchemy.txt index b73f56d71..fc35c7f08 100644 --- a/npc/craft/alchemy.txt +++ b/npc/craft/alchemy.txt @@ -81,10 +81,10 @@ Reagents: Products: Tea (Chamomile, Spearmint, Oolong, Jasmine, Yerba Mate?) → Argaes Water + «Herbal Reagent» -R Coffee (Shadow Herb + Tonori Water) +OK Coffee (Shadow Herb + Tonori Water) OK Piberries Infusion (Piberries + Curshroom) -R Atropos Mixture (Lachesis Brew + Clotho Liquor) -R Death Potion (Dragonfruit + Nightshade Tea) +OK Atropos Mixture (Lachesis Brew + Clotho Liquor) +OK Death Potion (Dragonfruit + Nightshade Tea) Smoke Grenade (Cactus pot + Coal) Grenade (Cactus pot + Sulfur Powder) Scented Grenade (Cactus pot + Moss) @@ -97,13 +97,13 @@ OK Move Speed (Gem Powder + Fluor Powder) OK Precision (Piberries + Mt. Snake Egg) OK Dodge Potion (Piberries + Snake Egg) OK Luck, Dex, Int, Vit, Agi (Gems + Tea) -R Sacred Life (Golden Apple + Elixir of Life) -R Sacred Mana (Golden Apple + Celestia Tea) -R Sacred Revival (Sacred Life + Sacred Mana) +OK Sacred Life (Golden Apple + Elixir of Life) +OK Sacred Mana (Golden Apple + Celestia Tea) +OK Sacred Revival (Sacred Life + Sacred Mana) Broken Warp Crystal? (Wurtizite + Black Mamba Skin) Magic Apple? (Divine Apple + Manapple? Death Potion? Sacred Life/Revival?) -R Purification Potion (Nymph Poison + Sacred Life) -R Iced Bottle (Tonori W. + Argaes W.) +OK Purification Potion (Nymph Poison + Sacred Life) +OK Iced Bottle (Tonori W. + Argaes W.) Insurance Contract (» Insurance?) (Quill + Reed Bundle) Mysterious Fruit? (Legendary) diff --git a/npc/craft/recipes.txt b/npc/craft/recipes.txt index 0f8278a06..0cd4a7a5f 100644 --- a/npc/craft/recipes.txt +++ b/npc/craft/recipes.txt @@ -129,18 +129,22 @@ function readAlchemy { mes ""; // Healing mesc "----------"+l("Healing Recipes")+"----------", 2; - showRecipe(CraftPiberriesInfusion, PiberriesInfusion, - 5, Piberries, 1, Curshroom); + showRecipe(PiberriesInfusion, + AtroposMixture, + Coffee); dnext; // General Boosts - mesc "----------"+l("General Recipes")+"----------", 2; + mesc "----------"+l("General Boosts")+"----------", 2; showRecipe(HastePotion, StrengthPotion, StatusResetPotion, MoveSpeedPotion, PrecisionPotion, - DodgePotion); + DodgePotion, + SacredLifePotion, + SacredManaPotion, + SacredImmortalityPotion); dnext; // Stats Boosts @@ -165,6 +169,12 @@ function readAlchemy { DexPotionB, DexPotionC); + // General Stuff + mesc "----------"+l("Reagents & Other Potions")+"----------", 2; + showRecipe(IcedBottle, + PurificationPotion, + DeathPotion); + next; @scope$=""; return; @@ -324,6 +334,7 @@ function script MakeBlueprint { array_push(.@recipes, CraftPiberriesInfusion); array_push(.@recipes, CraftHastePotion); array_push(.@recipes, CraftStrengthPotion); + array_push(.@recipes, CraftCoffee); } if (.@rarity & CRAFT_INTERMEDIARY) { array_push(.@recipes, CraftLukPotionA); @@ -332,11 +343,13 @@ function script MakeBlueprint { array_push(.@recipes, CraftAgiPotionA); array_push(.@recipes, CraftVitPotionA); array_push(.@recipes, CraftSpeedPotion); + array_push(.@recipes, CraftIcedBottle); } if (.@rarity & CRAFT_ADVANCED) { array_push(.@recipes, CraftResetPotion); array_push(.@recipes, CraftPrecisionPotion); array_push(.@recipes, CraftDodgePotion); + array_push(.@recipes, CraftDeathPotion); } if (.@rarity & CRAFT_EXPERT) { array_push(.@recipes, CraftLukPotionB); @@ -344,6 +357,8 @@ function script MakeBlueprint { array_push(.@recipes, CraftIntPotionB); array_push(.@recipes, CraftAgiPotionB); array_push(.@recipes, CraftVitPotionB); + array_push(.@recipes, CraftAtroposMixture); + array_push(.@recipes, CraftPurificationPotion); } if (.@rarity & CRAFT_MASTER) { array_push(.@recipes, CraftLukPotionC); @@ -351,6 +366,9 @@ function script MakeBlueprint { array_push(.@recipes, CraftIntPotionC); array_push(.@recipes, CraftAgiPotionC); array_push(.@recipes, CraftVitPotionC); + array_push(.@recipes, CraftSacredLifePotion); + array_push(.@recipes, CraftSacredManaPotion); + array_push(.@recipes, CraftSacredImmortalityPotion); } // Now you'll learn some recipe! |