diff options
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! |