diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-07-31 11:38:21 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-07-31 11:38:21 -0300 |
commit | b54c0a4ca831b7100a5b6d35626f402cef6e5283 (patch) | |
tree | bbb9fd272d6c18178b924064ae31436d633cded1 | |
parent | 94e97ec82408badefe0ef6d5ab64d13ea9bb5ad5 (diff) | |
download | serverdata-b54c0a4ca831b7100a5b6d35626f402cef6e5283.tar.gz serverdata-b54c0a4ca831b7100a5b6d35626f402cef6e5283.tar.bz2 serverdata-b54c0a4ca831b7100a5b6d35626f402cef6e5283.tar.xz serverdata-b54c0a4ca831b7100a5b6d35626f402cef6e5283.zip |
Add Sacred Immortality Potion to Guild Alchemy [EXCLUSIVE]
-rw-r--r-- | db/craft_db.conf | 20 | ||||
-rw-r--r-- | npc/guilds/logs.txt | 4 |
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; |