diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-12-23 03:29:24 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-12-23 03:29:24 -0300 |
commit | b17e38270747fd0e85016282c6366e0c6d6a830f (patch) | |
tree | 2f6ba8f9448252ab3806e5526b4c2a695a8d364a /db | |
parent | a224ac0fd384f2be9d1a8e419c66d78361b68dd9 (diff) | |
download | serverdata-b17e38270747fd0e85016282c6366e0c6d6a830f.tar.gz serverdata-b17e38270747fd0e85016282c6366e0c6d6a830f.tar.bz2 serverdata-b17e38270747fd0e85016282c6366e0c6d6a830f.tar.xz serverdata-b17e38270747fd0e85016282c6366e0c6d6a830f.zip |
Prepare new alchemy recipes: Coffee, Atropos, Death, Purification, Iced Water.
Diffstat (limited to 'db')
-rw-r--r-- | db/craft_db.conf | 133 |
1 files changed, 133 insertions, 0 deletions
diff --git a/db/craft_db.conf b/db/craft_db.conf index a9bba8aa1..0df424e6f 100644 --- a/db/craft_db.conf +++ b/db/craft_db.conf @@ -59,6 +59,139 @@ craft_db: ( // Alchemy System (ID 1~50, Flag 8) ////////////////////////////////////////////////////////////////////////////// { + Id: 1 + Name: "CraftCoffee" + Flag: 8 + SourceItems: + ( + { + BottleOfTonoriWater: 1 + ShadowHerb: 40 + }, + ) + CreateItems: + ( + { + Coffee: 5 + }, + { + Coffee: 5 + }, + { + Coffee: 6 + }, + { + Coffee: 4 + }, + ) + Priority: 10 +}, +/****************************************************************************/ +{ + Id: 2 + Name: "CraftAtroposMixture" + Flag: 8 + SourceItems: + ( + { + LachesisBrew: 1 + ClothoLiquor: 1 + }, + ) + CreateItems: + ( + { + AtroposMixture: 1 + }, + { + AtroposMixture: 1 + }, + { + AtroposMixture: 2 + }, + ) + Priority: 10 +}, +/****************************************************************************/ +{ + Id: 3 + Name: "CraftDeathPotion" + Flag: 8 + SourceItems: + ( + { + Dragonfruit: 5 + HerbalTea: 2 + }, + ) + CreateItems: + ( + { + DeathPotion: 1 + }, + { + DeathPotion: 1 + }, + { + DeathPotion: 2 + }, + ) + Priority: 10 +}, +/****************************************************************************/ +{ + Id: 4 + Name: "CraftIcedBottle" + Flag: 8 + SourceItems: + ( + { + BottleOfTonoriWater: 1 + BottleOfWoodlandWater: 1 + }, + ) + CreateItems: + ( + { + IcedBottle: 1 + }, + { + IcedBottle: 1 + }, + { + IcedBottle: 2 + }, + ) + Priority: 10 +}, +/****************************************************************************/ +{ + Id: 5 + Name: "CraftPurificationPotion" + Flag: 8 + SourceItems: + ( + { + NymphPoison: 1 + SacredLifePotion: 1 + }, + ) + CreateItems: + ( + { + PurificationPotion: 5 + }, + { + PurificationPotion: 7 + }, + { + PurificationPotion: 5 + }, + ) + Priority: 10 +}, +/****************************************************************************/ +{ Id: 21 Name: "CraftHastePotion" Flag: 8 |