summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--db/craft_db.conf20
-rw-r--r--npc/guilds/logs.txt4
2 files changed, 24 insertions, 0 deletions
diff --git a/db/craft_db.conf b/db/craft_db.conf
index 40af852df..f346b335b 100644
--- a/db/craft_db.conf
+++ b/db/craft_db.conf
@@ -683,6 +683,26 @@ craft_db: (
Priority: 10
},
/****************************************************************************/
+{
+ Id: 45
+ Name: "CraftSacredImmortal"
+ Flag: 8
+ SourceItems:
+ (
+ {
+ SacredLifePotion: 1
+ SacredManaPotion: 1
+ },
+ )
+ CreateItems:
+ (
+ {
+ SacredImmortalityPotion: 1
+ },
+ )
+ Priority: 10
+},
+/****************************************************************************/
diff --git a/npc/guilds/logs.txt b/npc/guilds/logs.txt
index 142b7d6c9..d24126a8b 100644
--- a/npc/guilds/logs.txt
+++ b/npc/guilds/logs.txt
@@ -82,6 +82,8 @@ guilds,47,39,0 script Guild Logs NPC_NO_SPRITE,{
1, GoldenApple, 15, CelestiaTea);
.@s+=showRecipe(CraftSacredLifePot, SacredLifePotion,
1, GoldenApple, 1, ElixirOfLife);
+ .@s+=showRecipe(CraftSacredImmortal, SacredImmortalityPotion,
+ 1, SacredLifePotion, 1, SacredManaPotion);
if (.@s == 0)
mesc l("Your guild doesn't knows any recipes!"), 1;
@@ -267,6 +269,8 @@ guilds,47,39,0 script Guild Logs NPC_NO_SPRITE,{
calcRecipe(CraftSacredManaPot, 7, 100000, l("Sacred Mana Potion"));
if (!showRecipe(CraftSacredLifePot, false))
calcRecipe(CraftSacredLifePot, 7, 100000, l("Sacred Life Potion"));
+ if (!showRecipe(CraftSacredImmortal, false))
+ calcRecipe(CraftSacredImmortal, 10, 500000, l("Sacred Immortality Potion"));
} while (!hudRecipe());
break;