diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-05-30 01:22:29 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-05-30 01:22:29 +0300 |
commit | f9a259df4b5202e53eb8cf0539ca59dd8dea711a (patch) | |
tree | be387bb293f104da3b2450434e7e834d2c9eec2d /db/craft_db.conf | |
parent | 9cc4b38cd67ada9b3eb4aa1a01ea992c074feae4 (diff) | |
download | serverdata-f9a259df4b5202e53eb8cf0539ca59dd8dea711a.tar.gz serverdata-f9a259df4b5202e53eb8cf0539ca59dd8dea711a.tar.bz2 serverdata-f9a259df4b5202e53eb8cf0539ca59dd8dea711a.tar.xz serverdata-f9a259df4b5202e53eb8cf0539ca59dd8dea711a.zip |
Add crafting recipe with creating inserted card.s20170605
Diffstat (limited to 'db/craft_db.conf')
-rw-r--r-- | db/craft_db.conf | 59 |
1 files changed, 57 insertions, 2 deletions
diff --git a/db/craft_db.conf b/db/craft_db.conf index 9d08fef5..c010081e 100644 --- a/db/craft_db.conf +++ b/db/craft_db.conf @@ -18,10 +18,18 @@ craft_db: ( }, ... ) - CreateItems: ({ items what will be creted in crafting - Name: amount [int] + CreateItems: ( // items what will be creted in crafting + { + Name: amount ... }, + { + Name: + { + Amount: amount + Cards: ["card0", ...] + }, + }, ... ) DeleteItems: { additional items what will be deleted from inventory @@ -248,5 +256,52 @@ craft_db: ( } Priority: 10 }, +{ + Id: 3 + Name: "CraftItemWithDye" + SourceItems: + ( + { + VneckJumper: 1 + CrimsonCashmereDye: 1 + Empty: 0 + + Empty: 0 + Empty: 0 + Empty: 0 + + Empty: 0 + Empty: 0 + Empty: 0 + }, + { + CrimsonCashmereDye: 1 + VneckJumper: 1 + Empty: 0 + + Empty: 0 + Empty: 0 + Empty: 0 + + Empty: 0 + Empty: 0 + Empty: 0 + }, + ) + CreateItems: + ( + { + VneckJumper: + { + Amount: 1 + Cards: ["CrimsonCashmereDye"] + }, + }, + ) + RequiredQuests: { + ShipQuests_Julia: 1 + } + Priority: 10 +}, ) |