diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-05-24 22:48:29 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-05-24 22:48:29 -0300 |
commit | 9c76064b28f0aecbdc4d9955225a5c40c55fa02b (patch) | |
tree | 0379c2e89f7331924456e0b6b37bc9e9489f8ad0 /npc/craft/recipes.txt | |
parent | f51cb024f2803b231f67eb0444becd4c16af01d1 (diff) | |
download | serverdata-9c76064b28f0aecbdc4d9955225a5c40c55fa02b.tar.gz serverdata-9c76064b28f0aecbdc4d9955225a5c40c55fa02b.tar.bz2 serverdata-9c76064b28f0aecbdc4d9955225a5c40c55fa02b.tar.xz serverdata-9c76064b28f0aecbdc4d9955225a5c40c55fa02b.zip |
Okay, the recipe book should work now (even if it is not there yet)
Diffstat (limited to 'npc/craft/recipes.txt')
-rw-r--r-- | npc/craft/recipes.txt | 59 |
1 files changed, 58 insertions, 1 deletions
diff --git a/npc/craft/recipes.txt b/npc/craft/recipes.txt index b60b9830d..c3afa572d 100644 --- a/npc/craft/recipes.txt +++ b/npc/craft/recipes.txt @@ -84,7 +84,64 @@ function readCooking { next; mesc l("List of known alchemy recipes:"); mes ""; - showRecipe(0, Iten, WarpedLog, 9999); + // Healing + mesc "----------"+l("Healing Recipes")+"----------", 2; + showRecipe(CraftPiberriesInfusion, PiberriesInfusion, + 5, Piberries, 1, Curshroom); + next; + + // General Boosts + mesc "----------"+l("General Recipes")+"----------", 2; + showRecipe(CraftHastePotion, HastePotion, + 15, Plushroom); + showRecipe(CraftStrengthPotion, StrengthPotion, + 15, Chagashroom); + showRecipe(CraftResetPotion, StatusResetPotion, + 90, ManaPiouFeathers, 10, Curshroom); + showRecipe(CraftSpeedPotion, MoveSpeedPotion, + 1, GemPowder, 5, FluoPowder); + showRecipe(CraftPrecisionPotion, PrecisionPotion, + 3, Piberries, 1, MountainSnakeEgg); + showRecipe(CraftDodgePotion, DodgePotion, + 3, Piberries, 1, SnakeEgg); + next; + + // Stats Boosts + mesc "----------"+l("Stat Boost Recipes")+"----------", 2; + showRecipe(CraftLukPotionA, LukPotionA, + 1, EmeraldPower, 1, HerbalTea); + showRecipe(CraftLukPotionB, LukPotionB, + 1, Emerald, 2, HerbalTea); + showRecipe(CraftLukPotionC, LukPotionC, + 1, PolishedEmerald, 3, HerbalTea); + + showRecipe(CraftDexPotionA, DexPotionA, + 1, AmethystPower, 1, HerbalTea); + showRecipe(CraftDexPotionB, DexPotionB, + 1, Amethyst, 2, HerbalTea); + showRecipe(CraftDexPotionC, DexPotionC, + 1, PolishedAmethyst, 3, HerbalTea); + + showRecipe(CraftIntPotionA, IntPotionA, + 1, SapphirePower, 1, HerbalTea); + showRecipe(CraftIntPotionB, IntPotionB, + 1, Sapphire, 2, HerbalTea); + showRecipe(CraftIntPotionC, IntPotionC, + 1, PolishedSapphire, 3, HerbalTea); + + showRecipe(CraftVitPotionA, VitPotionA, + 1, DiamondPower, 1, HerbalTea); + showRecipe(CraftVitPotionB, VitPotionB, + 1, Diamond, 2, HerbalTea); + showRecipe(CraftVitPotionC, VitPotionC, + 1, PolishedDiamond, 3, HerbalTea); + + showRecipe(CraftAgiPotionA, AgiPotionA, + 1, TopazPower, 1, HerbalTea); + showRecipe(CraftAgiPotionB, AgiPotionB, + 1, Topaz, 2, HerbalTea); + showRecipe(CraftAgiPotionC, AgiPotionC, + 1, PolishedTopaz, 3, HerbalTea); next; @scope$=""; return; |