summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--db/craft_db.conf40
1 files changed, 29 insertions, 11 deletions
diff --git a/db/craft_db.conf b/db/craft_db.conf
index 3b52d2b4..9d08fef5 100644
--- a/db/craft_db.conf
+++ b/db/craft_db.conf
@@ -10,6 +10,7 @@ craft_db: (
Price: craft price [int]
Lv: base level [int]
Flag: flag from craft object [string/int]
+ ReturnCode: return code for scripts [int]
SourceItems: ({ craft inventory source (will be deleted after crafting)
Name: amount [int]
@@ -17,10 +18,12 @@ craft_db: (
},
...
)
- CreateItems: { items what will be creted in crafting
+ CreateItems: ({ items what will be creted in crafting
Name: amount [int]
...
- }
+ },
+ ...
+ )
DeleteItems: { additional items what will be deleted from inventory
Name: amount [int]
...
@@ -75,9 +78,12 @@ craft_db: (
PiouLegs: 1
}
)
- CreateItems: {
- PiouEgg: 1
- }
+ CreateItems:
+ (
+ {
+ PiouEgg: 1
+ }
+ )
DeleteItems: {
PiouLegs: 1
}
@@ -177,9 +183,18 @@ craft_db: (
PiouFeathers: 1
},
)
- CreateItems: {
- PiouFeathers: 4
- }
+ CreateItems:
+ (
+ {
+ PiouFeathers: 4
+ },
+ {
+ PiouFeathers: 3
+ },
+ {
+ PiouFeathers: 2
+ },
+ )
RequiredQuests: {
ShipQuests_Julia: 2
}
@@ -222,9 +237,12 @@ craft_db: (
Empty: 0
},
)
- CreateItems: {
- OrangeCottonDye: 2
- }
+ CreateItems:
+ (
+ {
+ OrangeCottonDye: 2
+ },
+ )
RequiredQuests: {
ShipQuests_Julia: 1
}