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/recipes.txt | |
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/recipes.txt')
-rw-r--r-- | npc/craft/recipes.txt | 26 |
1 files changed, 22 insertions, 4 deletions
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! |