diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-03-13 09:45:01 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-03-13 09:45:01 -0300 |
commit | 0e6ee986dccd10a025088711a5bb58756bd70bcc (patch) | |
tree | b0b11ae3efe297943cf5db4ff5d166917cd38b12 /db | |
parent | 9dd7472d72c318c2b4f30f8c806872fc0ca9b6fe (diff) | |
download | serverdata-0e6ee986dccd10a025088711a5bb58756bd70bcc.tar.gz serverdata-0e6ee986dccd10a025088711a5bb58756bd70bcc.tar.bz2 serverdata-0e6ee986dccd10a025088711a5bb58756bd70bcc.tar.xz serverdata-0e6ee986dccd10a025088711a5bb58756bd70bcc.zip |
Implement Alchemy System for Xanthem's House.
Now he only needs to buy--err, find the recipes :>
Diffstat (limited to 'db')
-rw-r--r-- | db/constants.conf | 11 | ||||
-rw-r--r-- | db/craft_db.conf | 60 |
2 files changed, 70 insertions, 1 deletions
diff --git a/db/constants.conf b/db/constants.conf index ab833e4a3..8371dd6b9 100644 --- a/db/constants.conf +++ b/db/constants.conf @@ -4208,9 +4208,18 @@ constants_db: { comment__: "INN enum" NO_INN: 0 - REDPLUSH_INN: 1 CURRENT_INN: 2 + comment__: "CRAFT enum" + CRAFT_COOKING: 4 + CRAFT_ALCHEMY: 8 + CRAFT_EQUIPMENT: 16 + + comment__: "CRAFT Scope enum" + CRAFT_NPC: 4 + CRAFT_PLAYER: 8 + CRAFT_GUILD: 16 + comment__: "Easter eggs enum" EE_NONE: 0 EE_SAXSO: 1 diff --git a/db/craft_db.conf b/db/craft_db.conf index 4397edce9..a3cb06f44 100644 --- a/db/craft_db.conf +++ b/db/craft_db.conf @@ -54,5 +54,65 @@ craft_db: ( }, ******************************************************************************/ +// Cooking System (ID 0~20, Flag 4) +////////////////////////////////////////////////////////////////////////////// +/****************************************************************************/ + +// Alchemy System (ID 21~40, Flag 8) +////////////////////////////////////////////////////////////////////////////// +{ + Id: 21 + Name: "CraftHastePotion" + Flag: 8 + SourceItems: + ( + { + Plushroom: 15 + }, + ) + CreateItems: + ( + { + HastePotion: 3 + }, + { + HastePotion: 3 + }, + { + HastePotion: 2 + }, + ) + Priority: 10 +}, +/****************************************************************************/ +{ + Id: 22 + Name: "CraftStrengthPotion" + Flag: 8 + SourceItems: + ( + { + Chagashroom: 15 + }, + ) + CreateItems: + ( + { + StrengthPotion: 3 + }, + { + StrengthPotion: 3 + }, + { + StrengthPotion: 2 + }, + ) + Priority: 10 +}, +/****************************************************************************/ + +// Crafting System (ID 41~80, Flag 16) +////////////////////////////////////////////////////////////////////////////// +/****************************************************************************/ ) |