summaryrefslogtreecommitdiff
path: root/db/craft_db.conf
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-01-23 19:00:56 +0300
committerAndrei Karas <akaras@inbox.ru>2016-01-23 19:00:56 +0300
commitedfa871b93a95ce13c00be1c3a6a514383592339 (patch)
tree3a63bbc06ab67e1b6bce0fbe7794239e9b7ce807 /db/craft_db.conf
parent4642c0b216ac36b277f13ac0c5f5b70017140426 (diff)
downloadserverdata-edfa871b93a95ce13c00be1c3a6a514383592339.tar.gz
serverdata-edfa871b93a95ce13c00be1c3a6a514383592339.tar.bz2
serverdata-edfa871b93a95ce13c00be1c3a6a514383592339.tar.xz
serverdata-edfa871b93a95ce13c00be1c3a6a514383592339.zip
Add testing craft_db.conf
Diffstat (limited to 'db/craft_db.conf')
-rw-r--r--db/craft_db.conf154
1 files changed, 154 insertions, 0 deletions
diff --git a/db/craft_db.conf b/db/craft_db.conf
new file mode 100644
index 00000000..959462ea
--- /dev/null
+++ b/db/craft_db.conf
@@ -0,0 +1,154 @@
+craft_db: (
+// craft Database
+/******************************************************************************
+ ************* Entry structure ************************************************
+ ******************************************************************************
+{
+ Id: craft id [int]
+ Name: craft name [string]
+ Priority: craft priority [int]
+ Price: craft price [int]
+ Lv: base level [int]
+ Flag: flag from craft object [string/int]
+
+ SourceItems: ({ craft inventory source (will be deleted after crafting)
+ Name: amount [int]
+ ...
+ },
+ ...
+ )
+ CreateItems: { items what will be creted in crafting
+ Name: amount [int]
+ ...
+ }
+ DeleteItems: { additional items what will be deleted from inventory
+ Name: amount [int]
+ ...
+ }
+ RequiredItems: { required additional items. will be unchanged
+ Name: amount [int]
+ ...
+ }
+ RequiredSkills: { required skills and levels
+ Name: level [int]
+ ...
+ }
+ RequiredQuests: {
+ Name: level [int]
+ ...
+ }
+ RequiredEquips: {
+ Name: true
+ }
+},
+******************************************************************************/
+
+{
+ Id: 0
+ Name: "CraftEgg"
+ SourceItems:
+ (
+ {
+ Empty: 0
+ Empty: 0
+ Empty: 0
+
+ PiouFeathers: 1
+ PiouFeathers: 1
+ PiouFeathers: 1
+
+ PiouLegs: 1
+ Empty: 0
+ PiouLegs: 1
+ },
+ {
+ PiouFeathers: 1
+ PiouFeathers: 1
+ PiouFeathers: 1
+
+ Empty: 0
+ Empty: 0
+ Empty: 0
+
+ PiouLegs: 1
+ Empty: 0
+ PiouLegs: 1
+ }
+ )
+ CreateItems: {
+ PiouEgg: 1
+ PiouLegs: 2
+ PiouFeathers: 2
+ }
+ DeleteItems: {
+ PiouLegs: 1
+ }
+ RequiredQuests: {
+ ShipQuests_Julia: 1
+ }
+ RequiredEquips: {
+ VneckJumper: true
+ VneckJumper: false
+ }
+ Priority: 10
+ Price: 100
+},
+{
+ Id: 1
+ Name: "CraftPiouFeathers"
+ SourceItems:
+ (
+ {
+ PiouFeathers: 1
+ PiouFeathers: 1
+ PiouFeathers: 1
+
+ Empty: 0
+ Empty: 0
+ Empty: 0
+
+ Empty: 0
+ Empty: 0
+ Empty: 0
+ },
+ {
+ Empty: 0
+ Empty: 0
+ Empty: 0
+
+ PiouFeathers: 1
+ PiouFeathers: 1
+ PiouFeathers: 1
+
+ Empty: 0
+ Empty: 0
+ Empty: 0
+ },
+ {
+ Empty: 0
+ Empty: 0
+ Empty: 0
+
+ Empty: 0
+ Empty: 0
+ Empty: 0
+
+ PiouFeathers: 1
+ PiouFeathers: 1
+ PiouFeathers: 1
+ },
+ )
+ CreateItems: {
+ PiouFeathers: 3
+ }
+ RequiredQuests: {
+ ShipQuests_Julia: 2
+ }
+ RequiredEquips: {
+ VneckJumper: true
+ }
+ Priority: 10
+ Price: 0
+},
+
+)