diff options
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) +////////////////////////////////////////////////////////////////////////////// +/****************************************************************************/ ) |