summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--npc/craft/recipes.txt59
-rw-r--r--npc/scripts.conf1
2 files changed, 59 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;
diff --git a/npc/scripts.conf b/npc/scripts.conf
index 6eae66be8..a5c220692 100644
--- a/npc/scripts.conf
+++ b/npc/scripts.conf
@@ -78,6 +78,7 @@
// Crafting System
"npc/craft/alchemy.txt",
"npc/craft/smith.txt",
+"npc/craft/recipes.txt",
// custom atcommands
"npc/commands/music.txt",