first commit
This commit is contained in:
96
data/conf/json/basic.json
Normal file
96
data/conf/json/basic.json
Normal file
@@ -0,0 +1,96 @@
|
||||
{
|
||||
"conscript": {
|
||||
"des": "每征一个兵需要消耗的资源",
|
||||
"cost_wood":10,
|
||||
"cost_iron":10,
|
||||
"cost_stone":0,
|
||||
"cost_grain":10,
|
||||
"cost_gold":1,
|
||||
"cost_time":1
|
||||
},
|
||||
"general": {
|
||||
"des": "武将的一些配置",
|
||||
"physical_power_limit": 100,
|
||||
"cost_physical_power": 1,
|
||||
"recovery_physical_power": 10,
|
||||
"reclamation_time": 30,
|
||||
"reclamation_cost": 1,
|
||||
"draw_general_cost": 30,
|
||||
"pr_point": 1000,
|
||||
"limit": 500
|
||||
},
|
||||
"role": {
|
||||
"des": "角色的一些配置",
|
||||
"wood": 1000000,
|
||||
"iron": 1000000,
|
||||
"stone": 1000000,
|
||||
"grain": 1000000,
|
||||
"gold": 1000000,
|
||||
"decree": 20,
|
||||
"wood_yield": 1000000,
|
||||
"iron_yield": 1000000,
|
||||
"stone_yield": 1000000,
|
||||
"grain_yield": 1000000,
|
||||
"gold_yield": 1000000,
|
||||
"depot_capacity": 100000000000,
|
||||
"build_limit": 20,
|
||||
"recovery_time": 20,
|
||||
"decree_limit": 20,
|
||||
"collect_times_limit": 3,
|
||||
"collect_interval": 30,
|
||||
"pos_tag_limit": 10
|
||||
},
|
||||
"city": {
|
||||
"des": "城池的一些配置",
|
||||
"cost": 75,
|
||||
"durable": 100000,
|
||||
"transform_rate": 50,
|
||||
"recovery_time": 600
|
||||
},
|
||||
"build": {
|
||||
"des": "建筑的一些配置",
|
||||
"war_free": 20,
|
||||
"giveUp_time": 30,
|
||||
"fortress_limit": 10
|
||||
},
|
||||
"npc": {
|
||||
"des": "npc一些配置",
|
||||
"levels": [
|
||||
{
|
||||
"soilders": 100
|
||||
},
|
||||
{
|
||||
"soilders": 200
|
||||
},
|
||||
{
|
||||
"soilders": 300
|
||||
},
|
||||
{
|
||||
"soilders": 400
|
||||
},
|
||||
{
|
||||
"soilders": 500
|
||||
},
|
||||
{
|
||||
"soilders": 600
|
||||
},
|
||||
{
|
||||
"soilders": 700
|
||||
},
|
||||
{
|
||||
"soilders": 800
|
||||
},
|
||||
{
|
||||
"soilders": 900
|
||||
},
|
||||
{
|
||||
"soilders": 1000
|
||||
}
|
||||
]
|
||||
},
|
||||
"union": {
|
||||
"des": "联盟的一些配置",
|
||||
"member_limit": 100
|
||||
}
|
||||
|
||||
}
|
||||
109
data/conf/json/facility/facility.json
Normal file
109
data/conf/json/facility/facility.json
Normal file
@@ -0,0 +1,109 @@
|
||||
{
|
||||
"title": "城内设施类型",
|
||||
"list": [
|
||||
{
|
||||
"type": 0,
|
||||
"name": "主城"
|
||||
},
|
||||
{
|
||||
"type": 1,
|
||||
"name": "疾风营"
|
||||
},
|
||||
{
|
||||
"type": 2,
|
||||
"name": "铁壁营"
|
||||
},
|
||||
{
|
||||
"type": 3,
|
||||
"name": "军机营"
|
||||
},
|
||||
{
|
||||
"type": 4,
|
||||
"name": "尚武营"
|
||||
},
|
||||
{
|
||||
"type": 5,
|
||||
"name": "军营"
|
||||
},
|
||||
{
|
||||
"type": 6,
|
||||
"name": "预备役所"
|
||||
},
|
||||
{
|
||||
"type": 7,
|
||||
"name": "汉点将台"
|
||||
},
|
||||
{
|
||||
"type": 8,
|
||||
"name": "魏点将台"
|
||||
},
|
||||
{
|
||||
"type": 9,
|
||||
"name": "蜀点将台"
|
||||
},
|
||||
{
|
||||
"type": 10,
|
||||
"name": "吴点将台"
|
||||
},
|
||||
{
|
||||
"type": 11,
|
||||
"name": "群点将台"
|
||||
},
|
||||
{
|
||||
"type": 12,
|
||||
"name": "封禅台"
|
||||
},
|
||||
{
|
||||
"type": 13,
|
||||
"name": "校场"
|
||||
},
|
||||
{
|
||||
"type": 14,
|
||||
"name": "统帅厅"
|
||||
},
|
||||
{
|
||||
"type": 15,
|
||||
"name": "集市"
|
||||
},
|
||||
{
|
||||
"type": 16,
|
||||
"name": "募兵所"
|
||||
},
|
||||
{
|
||||
"type": 17,
|
||||
"name": "伐木场"
|
||||
},
|
||||
{
|
||||
"type": 18,
|
||||
"name": "炼铁场"
|
||||
},
|
||||
{
|
||||
"type": 19,
|
||||
"name": "磨坊"
|
||||
},
|
||||
{
|
||||
"type": 20,
|
||||
"name": "采石场"
|
||||
},
|
||||
{
|
||||
"type": 21,
|
||||
"name": "民居"
|
||||
},
|
||||
{
|
||||
"type": 22,
|
||||
"name": "社稷坛"
|
||||
},
|
||||
{
|
||||
"type": 23,
|
||||
"name": "城墙"
|
||||
},
|
||||
{
|
||||
"type": 24,
|
||||
"name": "女墙"
|
||||
},
|
||||
{
|
||||
"type": 25,
|
||||
"name": "仓库"
|
||||
}
|
||||
]
|
||||
}
|
||||
131
data/conf/json/facility/facility_addition.json
Normal file
131
data/conf/json/facility/facility_addition.json
Normal file
@@ -0,0 +1,131 @@
|
||||
{
|
||||
"title": "城池设施加成类别",
|
||||
"list": [
|
||||
{
|
||||
"type": 1,
|
||||
"des": "耐久度上限",
|
||||
"value": "+%n%"
|
||||
},
|
||||
{
|
||||
"type": 2,
|
||||
"des": "部队统帅上限",
|
||||
"value": "+%n%"
|
||||
},
|
||||
{
|
||||
"type": 3,
|
||||
"des": "可配置队伍数",
|
||||
"value": "%n%"
|
||||
},
|
||||
{
|
||||
"type": 4,
|
||||
"des": "部队速度",
|
||||
"value": "+%n%"
|
||||
},
|
||||
{
|
||||
"type": 5,
|
||||
"des": "部队防御",
|
||||
"value": "+%n%"
|
||||
},
|
||||
{
|
||||
"type": 6,
|
||||
"des": "部队谋略",
|
||||
"value": "+%n%"
|
||||
},
|
||||
{
|
||||
"type": 7,
|
||||
"des": "部队攻击",
|
||||
"value": "+%n%"
|
||||
},
|
||||
{
|
||||
"type": 8,
|
||||
"des": "征兵时间",
|
||||
"value": "-%n%%"
|
||||
},
|
||||
{
|
||||
"type": 9,
|
||||
"des": "预备役上限",
|
||||
"value": "+%n%"
|
||||
},
|
||||
{
|
||||
"type": 10,
|
||||
"des": "金币",
|
||||
"value": "-%n%%"
|
||||
},
|
||||
{
|
||||
"type": 11,
|
||||
"des": "汉阵营加成",
|
||||
"value": "+%n%"
|
||||
},
|
||||
{
|
||||
"type": 12,
|
||||
"des": "群阵营加成",
|
||||
"value": "+%n%"
|
||||
},
|
||||
{
|
||||
"type": 13,
|
||||
"des": "魏阵营加成",
|
||||
"value": "+%n%"
|
||||
},
|
||||
{
|
||||
"type": 14,
|
||||
"des": "蜀阵营加成",
|
||||
"value": "+%n%"
|
||||
},
|
||||
{
|
||||
"type": 15,
|
||||
"des": "吴阵营加成",
|
||||
"value": "+%n%"
|
||||
},
|
||||
|
||||
{
|
||||
"type": 16,
|
||||
"des": "交易兑换率",
|
||||
"value": "+%n%%"
|
||||
},
|
||||
{
|
||||
"type": 17,
|
||||
"des": "木材产量",
|
||||
"value": "+%n%/小时"
|
||||
},
|
||||
{
|
||||
"type": 18,
|
||||
"des": "铁矿产量",
|
||||
"value": "+%n%/小时"
|
||||
},
|
||||
{
|
||||
"type": 19,
|
||||
"des": "粮食产量",
|
||||
"value": "+%n%/小时"
|
||||
},
|
||||
{
|
||||
"type": 20,
|
||||
"des": "石矿产量",
|
||||
"value": "+%n%/小时"
|
||||
},
|
||||
{
|
||||
"type": 21,
|
||||
"des": "税收",
|
||||
"value": "+%n%"
|
||||
},
|
||||
{
|
||||
"type": 22,
|
||||
"des": "扩建次数",
|
||||
"value": "+%n%"
|
||||
},
|
||||
{
|
||||
"type": 23,
|
||||
"des": "仓库容量",
|
||||
"value": "+%n%"
|
||||
},
|
||||
{
|
||||
"type": 24,
|
||||
"des": "带兵数量",
|
||||
"value": "+%n%"
|
||||
},
|
||||
{
|
||||
"type": 25,
|
||||
"des": "可配置前锋部队数量",
|
||||
"value": "%n%"
|
||||
}
|
||||
]
|
||||
}
|
||||
87
data/conf/json/facility/facility_army_jfy.json
Normal file
87
data/conf/json/facility/facility_army_jfy.json
Normal file
@@ -0,0 +1,87 @@
|
||||
{
|
||||
"title": "城内设施-疾风营配置表",
|
||||
"name": "疾风营",
|
||||
"type": 1,
|
||||
"des": "提高本城部队速度",
|
||||
"additions": [
|
||||
4
|
||||
],
|
||||
"conditions": [
|
||||
{
|
||||
"type": 0,
|
||||
"level": 2
|
||||
}
|
||||
],
|
||||
"levels": [
|
||||
{
|
||||
"level": 1,
|
||||
"values": [
|
||||
5
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 1000,
|
||||
"wood": 1000,
|
||||
"iron": 1000,
|
||||
"stone": 1000
|
||||
},
|
||||
"time": 10
|
||||
},
|
||||
{
|
||||
"level": 2,
|
||||
"values": [
|
||||
10
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 2000,
|
||||
"wood": 2000,
|
||||
"iron": 2000,
|
||||
"stone": 2000
|
||||
},
|
||||
"time": 20
|
||||
},
|
||||
{
|
||||
"level": 3,
|
||||
"values": [
|
||||
15
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 3000,
|
||||
"wood": 3000,
|
||||
"iron": 3000,
|
||||
"stone": 3000
|
||||
},
|
||||
"time": 30
|
||||
},
|
||||
{
|
||||
"level": 4,
|
||||
"values": [
|
||||
20
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 4000,
|
||||
"wood": 4000,
|
||||
"iron": 4000,
|
||||
"stone": 4000
|
||||
},
|
||||
"time": 40
|
||||
},
|
||||
{
|
||||
"level": 5,
|
||||
"values": [
|
||||
25
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 5000,
|
||||
"wood": 5000,
|
||||
"iron": 5000,
|
||||
"stone": 5000
|
||||
},
|
||||
"time": 50
|
||||
}
|
||||
]
|
||||
}
|
||||
87
data/conf/json/facility/facility_army_jjy.json
Normal file
87
data/conf/json/facility/facility_army_jjy.json
Normal file
@@ -0,0 +1,87 @@
|
||||
{
|
||||
"title": "城内设施-军机营配置表",
|
||||
"name": "军机营",
|
||||
"type": 3,
|
||||
"des": "提高本城部队谋略",
|
||||
"additions": [
|
||||
6
|
||||
],
|
||||
"conditions": [
|
||||
{
|
||||
"type": 0,
|
||||
"level": 3
|
||||
}
|
||||
],
|
||||
"levels": [
|
||||
{
|
||||
"level": 1,
|
||||
"values": [
|
||||
5
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 1000,
|
||||
"wood": 1000,
|
||||
"iron": 1000,
|
||||
"stone": 1000
|
||||
},
|
||||
"time": 10
|
||||
},
|
||||
{
|
||||
"level": 2,
|
||||
"values": [
|
||||
10
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 1000,
|
||||
"wood": 1000,
|
||||
"iron": 1000,
|
||||
"stone": 1000
|
||||
},
|
||||
"time": 20
|
||||
},
|
||||
{
|
||||
"level": 3,
|
||||
"values": [
|
||||
15
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 1000,
|
||||
"wood": 1000,
|
||||
"iron": 1000,
|
||||
"stone": 1000
|
||||
},
|
||||
"time": 30
|
||||
},
|
||||
{
|
||||
"level": 4,
|
||||
"values": [
|
||||
20
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 1000,
|
||||
"wood": 1000,
|
||||
"iron": 1000,
|
||||
"stone": 1000
|
||||
},
|
||||
"time": 40
|
||||
},
|
||||
{
|
||||
"level": 5,
|
||||
"values": [
|
||||
25
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 1000,
|
||||
"wood": 1000,
|
||||
"iron": 1000,
|
||||
"stone": 1000
|
||||
},
|
||||
"time": 50
|
||||
}
|
||||
]
|
||||
}
|
||||
87
data/conf/json/facility/facility_army_swy.json
Normal file
87
data/conf/json/facility/facility_army_swy.json
Normal file
@@ -0,0 +1,87 @@
|
||||
{
|
||||
"title": "城内设施-尚武营配置表",
|
||||
"name": "尚武营",
|
||||
"type": 4,
|
||||
"des": "提高本城部队攻击",
|
||||
"additions": [
|
||||
7
|
||||
],
|
||||
"conditions": [
|
||||
{
|
||||
"type": 0,
|
||||
"level": 3
|
||||
}
|
||||
],
|
||||
"levels": [
|
||||
{
|
||||
"level": 1,
|
||||
"values": [
|
||||
5
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 1000,
|
||||
"wood": 1000,
|
||||
"iron": 1000,
|
||||
"stone": 1000
|
||||
},
|
||||
"time": 10
|
||||
},
|
||||
{
|
||||
"level": 2,
|
||||
"values": [
|
||||
10
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 2000,
|
||||
"wood": 2000,
|
||||
"iron": 2000,
|
||||
"stone": 2000
|
||||
},
|
||||
"time": 20
|
||||
},
|
||||
{
|
||||
"level": 3,
|
||||
"values": [
|
||||
15
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 3000,
|
||||
"wood": 3000,
|
||||
"iron": 3000,
|
||||
"stone": 3000
|
||||
},
|
||||
"time": 30
|
||||
},
|
||||
{
|
||||
"level": 4,
|
||||
"values": [
|
||||
20
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 4000,
|
||||
"wood": 4000,
|
||||
"iron": 4000,
|
||||
"stone": 4000
|
||||
},
|
||||
"time": 40
|
||||
},
|
||||
{
|
||||
"level": 5,
|
||||
"values": [
|
||||
25
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 5000,
|
||||
"wood": 5000,
|
||||
"iron": 5000,
|
||||
"stone": 5000
|
||||
},
|
||||
"time": 50
|
||||
}
|
||||
]
|
||||
}
|
||||
87
data/conf/json/facility/facility_army_tby.json
Normal file
87
data/conf/json/facility/facility_army_tby.json
Normal file
@@ -0,0 +1,87 @@
|
||||
{
|
||||
"title": "城内设施-铁壁营配置表",
|
||||
"name": "铁壁营",
|
||||
"type": 2,
|
||||
"des": "提高本城部队防御",
|
||||
"additions": [
|
||||
5
|
||||
],
|
||||
"conditions": [
|
||||
{
|
||||
"type": 0,
|
||||
"level": 2
|
||||
}
|
||||
],
|
||||
"levels": [
|
||||
{
|
||||
"level": 1,
|
||||
"values": [
|
||||
5
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 1000,
|
||||
"wood": 1000,
|
||||
"iron": 1000,
|
||||
"stone": 1000
|
||||
},
|
||||
"time": 10
|
||||
},
|
||||
{
|
||||
"level": 2,
|
||||
"values": [
|
||||
10
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 2000,
|
||||
"wood": 2000,
|
||||
"iron": 2000,
|
||||
"stone": 2000
|
||||
},
|
||||
"time": 20
|
||||
},
|
||||
{
|
||||
"level": 3,
|
||||
"values": [
|
||||
15
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 3000,
|
||||
"wood": 3000,
|
||||
"iron": 3000,
|
||||
"stone": 3000
|
||||
},
|
||||
"time": 30
|
||||
},
|
||||
{
|
||||
"level": 4,
|
||||
"values": [
|
||||
20
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 4000,
|
||||
"wood": 4000,
|
||||
"iron": 4000,
|
||||
"stone": 4000
|
||||
},
|
||||
"time": 40
|
||||
},
|
||||
{
|
||||
"level": 5,
|
||||
"values": [
|
||||
25
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 5000,
|
||||
"wood": 5000,
|
||||
"iron": 5000,
|
||||
"stone": 5000
|
||||
},
|
||||
"time": 50
|
||||
}
|
||||
]
|
||||
}
|
||||
87
data/conf/json/facility/facility_barrack_by.json
Normal file
87
data/conf/json/facility/facility_barrack_by.json
Normal file
@@ -0,0 +1,87 @@
|
||||
{
|
||||
"title": "城内设施-兵营配置表",
|
||||
"name": "兵营",
|
||||
"type": 5,
|
||||
"des": "提高本城部队武将带兵数量",
|
||||
"additions": [
|
||||
24
|
||||
],
|
||||
"conditions": [
|
||||
{
|
||||
"type": 0,
|
||||
"level": 7
|
||||
}
|
||||
],
|
||||
"levels": [
|
||||
{
|
||||
"level": 1,
|
||||
"values": [
|
||||
100
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 1000,
|
||||
"wood": 1000,
|
||||
"iron": 1000,
|
||||
"stone": 1000
|
||||
},
|
||||
"time": 10
|
||||
},
|
||||
{
|
||||
"level": 2,
|
||||
"values": [
|
||||
200
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 2000,
|
||||
"wood": 2000,
|
||||
"iron": 2000,
|
||||
"stone": 2000
|
||||
},
|
||||
"time": 20
|
||||
},
|
||||
{
|
||||
"level": 3,
|
||||
"values": [
|
||||
300
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 3000,
|
||||
"wood": 3000,
|
||||
"iron": 3000,
|
||||
"stone": 3000
|
||||
},
|
||||
"time": 30
|
||||
},
|
||||
{
|
||||
"level": 4,
|
||||
"values": [
|
||||
400
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 4000,
|
||||
"wood": 4000,
|
||||
"iron": 4000,
|
||||
"stone": 4000
|
||||
},
|
||||
"time": 40
|
||||
},
|
||||
{
|
||||
"level": 5,
|
||||
"values": [
|
||||
500
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 5000,
|
||||
"wood": 5000,
|
||||
"iron": 5000,
|
||||
"stone": 5000
|
||||
},
|
||||
"time": 50
|
||||
}
|
||||
]
|
||||
}
|
||||
91
data/conf/json/facility/facility_barrack_yby.json
Normal file
91
data/conf/json/facility/facility_barrack_yby.json
Normal file
@@ -0,0 +1,91 @@
|
||||
{
|
||||
"title": "城内设施-预备役配置表",
|
||||
"name": "预备役所",
|
||||
"type": 6,
|
||||
"des": "提高本城预备役上限",
|
||||
"additions": [
|
||||
9
|
||||
],
|
||||
"conditions": [
|
||||
{
|
||||
"type": 0,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"type": 13,
|
||||
"level": 2
|
||||
}
|
||||
],
|
||||
"levels": [
|
||||
{
|
||||
"level": 1,
|
||||
"values": [
|
||||
1000
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 1000,
|
||||
"wood": 1000,
|
||||
"iron": 1000,
|
||||
"stone": 1000
|
||||
},
|
||||
"time": 10
|
||||
},
|
||||
{
|
||||
"level": 2,
|
||||
"values": [
|
||||
2000
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 2000,
|
||||
"wood": 2000,
|
||||
"iron": 2000,
|
||||
"stone": 2000
|
||||
},
|
||||
"time": 20
|
||||
},
|
||||
{
|
||||
"level": 3,
|
||||
"values": [
|
||||
3000
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 3000,
|
||||
"wood": 3000,
|
||||
"iron": 3000,
|
||||
"stone": 3000
|
||||
},
|
||||
"time": 30
|
||||
},
|
||||
{
|
||||
"level": 4,
|
||||
"values": [
|
||||
4000
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 4000,
|
||||
"wood": 4000,
|
||||
"iron": 4000,
|
||||
"stone": 4000
|
||||
},
|
||||
"time": 40
|
||||
},
|
||||
{
|
||||
"level": 5,
|
||||
"values": [
|
||||
5000
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 5000,
|
||||
"wood": 5000,
|
||||
"iron": 5000,
|
||||
"stone": 5000
|
||||
},
|
||||
"time": 50
|
||||
}
|
||||
]
|
||||
}
|
||||
87
data/conf/json/facility/facility_camp_han.json
Normal file
87
data/conf/json/facility/facility_camp_han.json
Normal file
@@ -0,0 +1,87 @@
|
||||
{
|
||||
"title": "城内设施-汉点将台配置表",
|
||||
"name": "汉点将台",
|
||||
"type": 7,
|
||||
"des": "提高汉阵营加成效果",
|
||||
"additions": [
|
||||
11
|
||||
],
|
||||
"conditions": [
|
||||
{
|
||||
"type": 0,
|
||||
"level": 4
|
||||
}
|
||||
],
|
||||
"levels": [
|
||||
{
|
||||
"level": 1,
|
||||
"values": [
|
||||
5
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 1000,
|
||||
"wood": 1000,
|
||||
"iron": 1000,
|
||||
"stone": 1000
|
||||
},
|
||||
"time": 10
|
||||
},
|
||||
{
|
||||
"level": 2,
|
||||
"values": [
|
||||
10
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 2000,
|
||||
"wood": 2000,
|
||||
"iron": 2000,
|
||||
"stone": 2000
|
||||
},
|
||||
"time": 10
|
||||
},
|
||||
{
|
||||
"level": 3,
|
||||
"values": [
|
||||
15
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 3000,
|
||||
"wood": 3000,
|
||||
"iron": 3000,
|
||||
"stone": 3000
|
||||
},
|
||||
"time": 30
|
||||
},
|
||||
{
|
||||
"level": 4,
|
||||
"values": [
|
||||
20
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 4000,
|
||||
"wood": 4000,
|
||||
"iron": 4000,
|
||||
"stone": 4000
|
||||
},
|
||||
"time": 40
|
||||
},
|
||||
{
|
||||
"level": 5,
|
||||
"values": [
|
||||
25
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 5000,
|
||||
"wood": 5000,
|
||||
"iron": 5000,
|
||||
"stone": 5000
|
||||
},
|
||||
"time": 50
|
||||
}
|
||||
]
|
||||
}
|
||||
99
data/conf/json/facility/facility_camp_qun.json
Normal file
99
data/conf/json/facility/facility_camp_qun.json
Normal file
@@ -0,0 +1,99 @@
|
||||
{
|
||||
"title": "城内设施-群点将台配置表",
|
||||
"name": "群点将台",
|
||||
"type": 11,
|
||||
"des": "提高群阵营加成效果",
|
||||
"additions": [
|
||||
12
|
||||
],
|
||||
"conditions": [
|
||||
{
|
||||
"type": 0,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"type": 8,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"type": 9,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"type": 10,
|
||||
"level": 1
|
||||
}
|
||||
],
|
||||
"levels": [
|
||||
{
|
||||
"level": 1,
|
||||
"values": [
|
||||
5
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 1000,
|
||||
"wood": 1000,
|
||||
"iron": 1000,
|
||||
"stone": 1000
|
||||
},
|
||||
"time": 10
|
||||
},
|
||||
{
|
||||
"level": 2,
|
||||
"values": [
|
||||
10
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 2000,
|
||||
"wood": 2000,
|
||||
"iron": 2000,
|
||||
"stone": 2000
|
||||
},
|
||||
"time": 20
|
||||
},
|
||||
{
|
||||
"level": 3,
|
||||
"values": [
|
||||
15
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 3000,
|
||||
"wood": 3000,
|
||||
"iron": 3000,
|
||||
"stone": 3000
|
||||
},
|
||||
"time": 30
|
||||
},
|
||||
{
|
||||
"level": 4,
|
||||
"values": [
|
||||
20
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 4000,
|
||||
"wood": 4000,
|
||||
"iron": 4000,
|
||||
"stone": 4000
|
||||
},
|
||||
"time": 40
|
||||
},
|
||||
{
|
||||
"level": 5,
|
||||
"values": [
|
||||
25
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 5000,
|
||||
"wood": 5000,
|
||||
"iron": 5000,
|
||||
"stone": 5000
|
||||
},
|
||||
"time": 50
|
||||
}
|
||||
]
|
||||
}
|
||||
91
data/conf/json/facility/facility_camp_shu.json
Normal file
91
data/conf/json/facility/facility_camp_shu.json
Normal file
@@ -0,0 +1,91 @@
|
||||
{
|
||||
"title": "城内设施-蜀点将台配置表",
|
||||
"name": "蜀点将台",
|
||||
"type": 9,
|
||||
"des": "提高蜀阵营加成效果",
|
||||
"additions": [
|
||||
14
|
||||
],
|
||||
"conditions": [
|
||||
{
|
||||
"type": 0,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"type": 7,
|
||||
"level": 1
|
||||
}
|
||||
],
|
||||
"levels": [
|
||||
{
|
||||
"level": 1,
|
||||
"values": [
|
||||
5
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 1000,
|
||||
"wood": 1000,
|
||||
"iron": 1000,
|
||||
"stone": 1000
|
||||
},
|
||||
"time": 10
|
||||
},
|
||||
{
|
||||
"level": 2,
|
||||
"values": [
|
||||
10
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 2000,
|
||||
"wood": 2000,
|
||||
"iron": 2000,
|
||||
"stone": 2000
|
||||
},
|
||||
"time": 20
|
||||
},
|
||||
{
|
||||
"level": 3,
|
||||
"values": [
|
||||
15
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 3000,
|
||||
"wood": 3000,
|
||||
"iron": 3000,
|
||||
"stone": 3000
|
||||
},
|
||||
"time": 30
|
||||
},
|
||||
{
|
||||
"level": 4,
|
||||
"values": [
|
||||
20
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 4000,
|
||||
"wood": 4000,
|
||||
"iron": 4000,
|
||||
"stone": 4000
|
||||
},
|
||||
"time": 40
|
||||
},
|
||||
{
|
||||
"level": 5,
|
||||
"values": [
|
||||
25
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 5000,
|
||||
"wood": 5000,
|
||||
"iron": 5000,
|
||||
"stone": 5000
|
||||
},
|
||||
"time": 50
|
||||
}
|
||||
]
|
||||
}
|
||||
91
data/conf/json/facility/facility_camp_wei.json
Normal file
91
data/conf/json/facility/facility_camp_wei.json
Normal file
@@ -0,0 +1,91 @@
|
||||
{
|
||||
"title": "城内设施-魏点将台配置表",
|
||||
"name": "魏点将台",
|
||||
"type": 8,
|
||||
"des": "提高魏阵营加成效果",
|
||||
"additions": [
|
||||
13
|
||||
],
|
||||
"conditions": [
|
||||
{
|
||||
"type": 0,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"type": 7,
|
||||
"level": 1
|
||||
}
|
||||
],
|
||||
"levels": [
|
||||
{
|
||||
"level": 1,
|
||||
"values": [
|
||||
5
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 1000,
|
||||
"wood": 1000,
|
||||
"iron": 1000,
|
||||
"stone": 1000
|
||||
},
|
||||
"time": 10
|
||||
},
|
||||
{
|
||||
"level": 2,
|
||||
"values": [
|
||||
10
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 2000,
|
||||
"wood": 2000,
|
||||
"iron": 2000,
|
||||
"stone": 2000
|
||||
},
|
||||
"time": 20
|
||||
},
|
||||
{
|
||||
"level": 3,
|
||||
"values": [
|
||||
15
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 3000,
|
||||
"wood": 3000,
|
||||
"iron": 3000,
|
||||
"stone": 3000
|
||||
},
|
||||
"time": 30
|
||||
},
|
||||
{
|
||||
"level": 4,
|
||||
"values": [
|
||||
20
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 4000,
|
||||
"wood": 4000,
|
||||
"iron": 4000,
|
||||
"stone": 4000
|
||||
},
|
||||
"time": 40
|
||||
},
|
||||
{
|
||||
"level": 5,
|
||||
"values": [
|
||||
25
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 5000,
|
||||
"wood": 5000,
|
||||
"iron": 5000,
|
||||
"stone": 5000
|
||||
},
|
||||
"time": 50
|
||||
}
|
||||
]
|
||||
}
|
||||
91
data/conf/json/facility/facility_camp_wu.json
Normal file
91
data/conf/json/facility/facility_camp_wu.json
Normal file
@@ -0,0 +1,91 @@
|
||||
{
|
||||
"title": "城内设施-吴点将台配置表",
|
||||
"name": "吴点将台",
|
||||
"type": 10,
|
||||
"des": "提高吴阵营加成效果",
|
||||
"additions": [
|
||||
15
|
||||
],
|
||||
"conditions": [
|
||||
{
|
||||
"type": 0,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"type": 7,
|
||||
"level": 1
|
||||
}
|
||||
],
|
||||
"levels": [
|
||||
{
|
||||
"level": 1,
|
||||
"values": [
|
||||
5
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 1000,
|
||||
"wood": 1000,
|
||||
"iron": 1000,
|
||||
"stone": 1000
|
||||
},
|
||||
"time": 10
|
||||
},
|
||||
{
|
||||
"level": 2,
|
||||
"values": [
|
||||
10
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 2000,
|
||||
"wood": 2000,
|
||||
"iron": 2000,
|
||||
"stone": 2000
|
||||
},
|
||||
"time": 20
|
||||
},
|
||||
{
|
||||
"level": 3,
|
||||
"values": [
|
||||
15
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 3000,
|
||||
"wood": 3000,
|
||||
"iron": 3000,
|
||||
"stone": 3000
|
||||
},
|
||||
"time": 30
|
||||
},
|
||||
{
|
||||
"level": 4,
|
||||
"values": [
|
||||
20
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 4000,
|
||||
"wood": 4000,
|
||||
"iron": 4000,
|
||||
"stone": 4000
|
||||
},
|
||||
"time": 40
|
||||
},
|
||||
{
|
||||
"level": 5,
|
||||
"values": [
|
||||
25
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 5000,
|
||||
"wood": 5000,
|
||||
"iron": 5000,
|
||||
"stone": 5000
|
||||
},
|
||||
"time": 50
|
||||
}
|
||||
]
|
||||
}
|
||||
163
data/conf/json/facility/facility_city.json
Normal file
163
data/conf/json/facility/facility_city.json
Normal file
@@ -0,0 +1,163 @@
|
||||
{
|
||||
"title": "主城配置",
|
||||
"name": "主城",
|
||||
"type": 0,
|
||||
"des": "提高本城的耐久上限部队统帅上限",
|
||||
"additions": [
|
||||
1,
|
||||
2
|
||||
],
|
||||
"conditions": [],
|
||||
"levels": [
|
||||
{
|
||||
"level": 1,
|
||||
"values": [
|
||||
10000,
|
||||
5
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 1000,
|
||||
"wood": 1000,
|
||||
"iron": 1000,
|
||||
"stone": 1000
|
||||
},
|
||||
"time": 10
|
||||
},
|
||||
{
|
||||
"level": 2,
|
||||
"values": [
|
||||
20000,
|
||||
10
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 2000,
|
||||
"wood": 2000,
|
||||
"iron": 2000,
|
||||
"stone": 2000
|
||||
},
|
||||
"time": 20
|
||||
},
|
||||
{
|
||||
"level": 3,
|
||||
"values": [
|
||||
30000,
|
||||
15
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 3000,
|
||||
"wood": 3000,
|
||||
"iron": 3000,
|
||||
"stone": 3000
|
||||
},
|
||||
"time": 30
|
||||
},
|
||||
{
|
||||
"level": 4,
|
||||
"values": [
|
||||
40000,
|
||||
20
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 4000,
|
||||
"wood": 4000,
|
||||
"iron": 4000,
|
||||
"stone": 4000
|
||||
},
|
||||
"time": 40
|
||||
},
|
||||
{
|
||||
"level": 5,
|
||||
"values": [
|
||||
50000,
|
||||
25
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 5000,
|
||||
"wood": 5000,
|
||||
"iron": 5000,
|
||||
"stone": 5000
|
||||
},
|
||||
"time": 50
|
||||
},
|
||||
{
|
||||
"level": 6,
|
||||
"values": [
|
||||
60000,
|
||||
30
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 6000,
|
||||
"wood": 6000,
|
||||
"iron": 6000,
|
||||
"stone": 6000
|
||||
},
|
||||
"time": 60
|
||||
},
|
||||
{
|
||||
"level": 7,
|
||||
"values": [
|
||||
70000,
|
||||
35
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 7000,
|
||||
"wood": 7000,
|
||||
"iron": 7000,
|
||||
"stone": 7000
|
||||
},
|
||||
"time": 70
|
||||
},
|
||||
{
|
||||
"level": 8,
|
||||
"values": [
|
||||
80000,
|
||||
40
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 8000,
|
||||
"wood": 8000,
|
||||
"iron": 8000,
|
||||
"stone": 8000
|
||||
},
|
||||
"time": 80
|
||||
},
|
||||
{
|
||||
"level": 9,
|
||||
"values": [
|
||||
90000,
|
||||
45
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 9000,
|
||||
"wood": 9000,
|
||||
"iron": 9000,
|
||||
"stone": 9000
|
||||
},
|
||||
"time": 90
|
||||
},
|
||||
{
|
||||
"level": 10,
|
||||
"values": [
|
||||
100000,
|
||||
50
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 10000,
|
||||
"wood": 10000,
|
||||
"iron": 10000,
|
||||
"stone": 10000
|
||||
},
|
||||
"time": 100
|
||||
}
|
||||
]
|
||||
}
|
||||
91
data/conf/json/facility/facility_fct.json
Normal file
91
data/conf/json/facility/facility_fct.json
Normal file
@@ -0,0 +1,91 @@
|
||||
{
|
||||
"title": "城内设施-封禅台配置",
|
||||
"name": "封禅台",
|
||||
"type": 12,
|
||||
"des": "提高本城部队的统帅上限",
|
||||
"additions": [
|
||||
2
|
||||
],
|
||||
"conditions": [
|
||||
{
|
||||
"type": 0,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"type": 5,
|
||||
"level": 5
|
||||
}
|
||||
],
|
||||
"levels": [
|
||||
{
|
||||
"level": 1,
|
||||
"values": [
|
||||
5
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 1000,
|
||||
"wood": 1000,
|
||||
"iron": 1000,
|
||||
"stone": 1000
|
||||
},
|
||||
"time": 10
|
||||
},
|
||||
{
|
||||
"level": 2,
|
||||
"values": [
|
||||
10
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 2000,
|
||||
"wood": 2000,
|
||||
"iron": 2000,
|
||||
"stone": 2000
|
||||
},
|
||||
"time": 20
|
||||
},
|
||||
{
|
||||
"level": 3,
|
||||
"values": [
|
||||
15
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 3000,
|
||||
"wood": 3000,
|
||||
"iron": 3000,
|
||||
"stone": 3000
|
||||
},
|
||||
"time": 30
|
||||
},
|
||||
{
|
||||
"level": 4,
|
||||
"values": [
|
||||
20
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 4000,
|
||||
"wood": 4000,
|
||||
"iron": 4000,
|
||||
"stone": 4000
|
||||
},
|
||||
"time": 40
|
||||
},
|
||||
{
|
||||
"level": 5,
|
||||
"values": [
|
||||
25
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 5000,
|
||||
"wood": 5000,
|
||||
"iron": 5000,
|
||||
"stone": 5000
|
||||
},
|
||||
"time": 50
|
||||
}
|
||||
]
|
||||
}
|
||||
87
data/conf/json/facility/facility_general_jc.json
Normal file
87
data/conf/json/facility/facility_general_jc.json
Normal file
@@ -0,0 +1,87 @@
|
||||
{
|
||||
"title": "城内设施-校场配置表",
|
||||
"name": "校场",
|
||||
"type": 13,
|
||||
"des": "使本城可以配置部队,并提高本城可配置部队数量",
|
||||
"additions": [
|
||||
3
|
||||
],
|
||||
"conditions": [
|
||||
{
|
||||
"type": 0,
|
||||
"level": 1
|
||||
}
|
||||
],
|
||||
"levels": [
|
||||
{
|
||||
"level": 1,
|
||||
"values": [
|
||||
1
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 1000,
|
||||
"wood": 1000,
|
||||
"iron": 1000,
|
||||
"stone": 1000
|
||||
},
|
||||
"time": 10
|
||||
},
|
||||
{
|
||||
"level": 2,
|
||||
"values": [
|
||||
2
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 2000,
|
||||
"wood": 2000,
|
||||
"iron": 2000,
|
||||
"stone": 2000
|
||||
},
|
||||
"time": 20
|
||||
},
|
||||
{
|
||||
"level": 3,
|
||||
"values": [
|
||||
3
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 3000,
|
||||
"wood": 3000,
|
||||
"iron": 3000,
|
||||
"stone": 3000
|
||||
},
|
||||
"time": 30
|
||||
},
|
||||
{
|
||||
"level": 4,
|
||||
"values": [
|
||||
4
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 4000,
|
||||
"wood": 4000,
|
||||
"iron": 4000,
|
||||
"stone": 4000
|
||||
},
|
||||
"time": 40
|
||||
},
|
||||
{
|
||||
"level": 5,
|
||||
"values": [
|
||||
5
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 5000,
|
||||
"wood": 5000,
|
||||
"iron": 5000,
|
||||
"stone": 5000
|
||||
},
|
||||
"time": 50
|
||||
}
|
||||
]
|
||||
}
|
||||
87
data/conf/json/facility/facility_general_tst.json
Normal file
87
data/conf/json/facility/facility_general_tst.json
Normal file
@@ -0,0 +1,87 @@
|
||||
{
|
||||
"title": "城内设施-统帅厅配置表",
|
||||
"name": "统帅厅",
|
||||
"type": 14,
|
||||
"des": "使本城可以配置前锋,并提高本城可配置前锋部队数量",
|
||||
"additions": [
|
||||
25
|
||||
],
|
||||
"conditions": [
|
||||
{
|
||||
"type": 16,
|
||||
"level": 1
|
||||
}
|
||||
],
|
||||
"levels": [
|
||||
{
|
||||
"level": 1,
|
||||
"values": [
|
||||
1
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 1000,
|
||||
"wood": 1000,
|
||||
"iron": 1000,
|
||||
"stone": 1000
|
||||
},
|
||||
"time": 10
|
||||
},
|
||||
{
|
||||
"level": 2,
|
||||
"values": [
|
||||
2
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 2000,
|
||||
"wood": 2000,
|
||||
"iron": 2000,
|
||||
"stone": 2000
|
||||
},
|
||||
"time": 20
|
||||
},
|
||||
{
|
||||
"level": 3,
|
||||
"values": [
|
||||
3
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 3000,
|
||||
"wood": 3000,
|
||||
"iron": 3000,
|
||||
"stone": 3000
|
||||
},
|
||||
"time": 30
|
||||
},
|
||||
{
|
||||
"level": 4,
|
||||
"values": [
|
||||
4
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 4000,
|
||||
"wood": 4000,
|
||||
"iron": 4000,
|
||||
"stone": 4000
|
||||
},
|
||||
"time": 40
|
||||
},
|
||||
{
|
||||
"level": 5,
|
||||
"values": [
|
||||
5
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 5000,
|
||||
"wood": 5000,
|
||||
"iron": 5000,
|
||||
"stone": 5000
|
||||
},
|
||||
"time": 50
|
||||
}
|
||||
]
|
||||
}
|
||||
157
data/conf/json/facility/facility_market.json
Normal file
157
data/conf/json/facility/facility_market.json
Normal file
@@ -0,0 +1,157 @@
|
||||
{
|
||||
"title": "城内设施-集市配置表",
|
||||
"des": "提高交易兑换率",
|
||||
"name": "集市",
|
||||
"type": 15,
|
||||
"additions": [
|
||||
16
|
||||
],
|
||||
"conditions": [
|
||||
{
|
||||
"type": 0,
|
||||
"level": 5
|
||||
}
|
||||
],
|
||||
"levels": [
|
||||
{
|
||||
"level": 1,
|
||||
"values": [
|
||||
5
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 1000,
|
||||
"wood": 1000,
|
||||
"iron": 1000,
|
||||
"stone": 1000
|
||||
},
|
||||
"time": 10
|
||||
},
|
||||
{
|
||||
"level": 2,
|
||||
"values": [
|
||||
10
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 2000,
|
||||
"wood": 2000,
|
||||
"iron": 2000,
|
||||
"stone": 2000
|
||||
},
|
||||
"time": 20
|
||||
},
|
||||
{
|
||||
"level": 3,
|
||||
"values": [
|
||||
15
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 3000,
|
||||
"wood": 3000,
|
||||
"iron": 3000,
|
||||
"stone": 3000
|
||||
},
|
||||
"time": 30
|
||||
},
|
||||
{
|
||||
"level": 4,
|
||||
"values": [
|
||||
20
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 4000,
|
||||
"wood": 4000,
|
||||
"iron": 4000,
|
||||
"stone": 4000
|
||||
},
|
||||
"time": 40
|
||||
},
|
||||
{
|
||||
"level": 5,
|
||||
"values": [
|
||||
25
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 5000,
|
||||
"wood": 5000,
|
||||
"iron": 5000,
|
||||
"stone": 5000
|
||||
},
|
||||
"time": 50
|
||||
},
|
||||
{
|
||||
"level": 6,
|
||||
"values": [
|
||||
30
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 6000,
|
||||
"wood": 6000,
|
||||
"iron": 6000,
|
||||
"stone": 6000
|
||||
},
|
||||
"time": 60
|
||||
},
|
||||
{
|
||||
"level": 7,
|
||||
"values": [
|
||||
35
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 7000,
|
||||
"wood": 7000,
|
||||
"iron": 7000,
|
||||
"stone": 7000
|
||||
},
|
||||
"time": 70
|
||||
},
|
||||
{
|
||||
"level": 8,
|
||||
"values": [
|
||||
40
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 8000,
|
||||
"wood": 8000,
|
||||
"iron": 8000,
|
||||
"stone": 8000
|
||||
},
|
||||
"time": 80
|
||||
},
|
||||
{
|
||||
"level": 9,
|
||||
"values": [
|
||||
45
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 9000,
|
||||
"wood": 9000,
|
||||
"iron": 9000,
|
||||
"stone": 9000
|
||||
},
|
||||
"time": 90
|
||||
},
|
||||
{
|
||||
"level": 10,
|
||||
"values": [
|
||||
50
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 10000,
|
||||
"wood": 10000,
|
||||
"iron": 10000,
|
||||
"stone": 10000
|
||||
},
|
||||
"time": 100
|
||||
}
|
||||
]
|
||||
}
|
||||
160
data/conf/json/facility/facility_mbs.json
Normal file
160
data/conf/json/facility/facility_mbs.json
Normal file
@@ -0,0 +1,160 @@
|
||||
{
|
||||
"title": "募兵所配置表",
|
||||
"des": "开启本城部队征兵,并缩短征兵时间",
|
||||
"name": "募兵所",
|
||||
"type": 16,
|
||||
"additions": [
|
||||
10
|
||||
],
|
||||
"conditions": [
|
||||
{
|
||||
"type": 0,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"type": 13,
|
||||
"level": 2
|
||||
}
|
||||
],
|
||||
"levels": [{
|
||||
"level": 1,
|
||||
"values": [
|
||||
5
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 1000,
|
||||
"wood": 1000,
|
||||
"iron": 1000,
|
||||
"stone": 1000
|
||||
},
|
||||
"time": 10
|
||||
},
|
||||
{
|
||||
"level": 2,
|
||||
"values": [
|
||||
10
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 2000,
|
||||
"wood": 2000,
|
||||
"iron": 2000,
|
||||
"stone": 2000
|
||||
},
|
||||
"time": 20
|
||||
},
|
||||
{
|
||||
"level": 3,
|
||||
"values": [
|
||||
15
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 3000,
|
||||
"wood": 3000,
|
||||
"iron": 3000,
|
||||
"stone": 3000
|
||||
},
|
||||
"time": 30
|
||||
},
|
||||
{
|
||||
"level": 4,
|
||||
"values": [
|
||||
20
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 4000,
|
||||
"wood": 4000,
|
||||
"iron": 4000,
|
||||
"stone": 4000
|
||||
},
|
||||
"time": 40
|
||||
},
|
||||
{
|
||||
"level": 5,
|
||||
"values": [
|
||||
25
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 5000,
|
||||
"wood": 5000,
|
||||
"iron": 5000,
|
||||
"stone": 5000
|
||||
},
|
||||
"time": 50
|
||||
},
|
||||
{
|
||||
"level": 6,
|
||||
"values": [
|
||||
30
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 6000,
|
||||
"wood": 6000,
|
||||
"iron": 6000,
|
||||
"stone": 6000
|
||||
},
|
||||
"time": 60
|
||||
},
|
||||
{
|
||||
"level": 7,
|
||||
"values": [
|
||||
35
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 7000,
|
||||
"wood": 7000,
|
||||
"iron": 7000,
|
||||
"stone": 7000
|
||||
},
|
||||
"time": 70
|
||||
},
|
||||
{
|
||||
"level": 8,
|
||||
"values": [
|
||||
40
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 8000,
|
||||
"wood": 8000,
|
||||
"iron": 8000,
|
||||
"stone": 8000
|
||||
},
|
||||
"time": 80
|
||||
},
|
||||
{
|
||||
"level": 9,
|
||||
"values": [
|
||||
45
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 9000,
|
||||
"wood": 9000,
|
||||
"iron": 9000,
|
||||
"stone": 9000
|
||||
},
|
||||
"time": 90
|
||||
},
|
||||
{
|
||||
"level": 10,
|
||||
"values": [
|
||||
50
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 10000,
|
||||
"wood": 10000,
|
||||
"iron": 10000,
|
||||
"stone": 10000
|
||||
},
|
||||
"time": 100
|
||||
}
|
||||
]
|
||||
}
|
||||
157
data/conf/json/facility/facility_produce_csc.json
Normal file
157
data/conf/json/facility/facility_produce_csc.json
Normal file
@@ -0,0 +1,157 @@
|
||||
{
|
||||
"title": "城内设施-采石场配置表",
|
||||
"name": "采石场",
|
||||
"des": "额外获得石矿产量",
|
||||
"type": 20,
|
||||
"additions": [
|
||||
20
|
||||
],
|
||||
"conditions": [
|
||||
{
|
||||
"type": 0,
|
||||
"level": 3
|
||||
}
|
||||
],
|
||||
"levels": [
|
||||
{
|
||||
"level": 1,
|
||||
"values": [
|
||||
1000
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 1000,
|
||||
"wood": 1000,
|
||||
"iron": 1000,
|
||||
"stone": 1000
|
||||
},
|
||||
"time": 10
|
||||
},
|
||||
{
|
||||
"level": 2,
|
||||
"values": [
|
||||
2000
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 2000,
|
||||
"wood": 2000,
|
||||
"iron": 2000,
|
||||
"stone": 2000
|
||||
},
|
||||
"time": 20
|
||||
},
|
||||
{
|
||||
"level": 3,
|
||||
"values": [
|
||||
3000
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 3000,
|
||||
"wood": 3000,
|
||||
"iron": 3000,
|
||||
"stone": 3000
|
||||
},
|
||||
"time": 30
|
||||
},
|
||||
{
|
||||
"level": 4,
|
||||
"values": [
|
||||
4000
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 4000,
|
||||
"wood": 4000,
|
||||
"iron": 4000,
|
||||
"stone": 4000
|
||||
},
|
||||
"time": 40
|
||||
},
|
||||
{
|
||||
"level": 5,
|
||||
"values": [
|
||||
5000
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 5000,
|
||||
"wood": 5000,
|
||||
"iron": 5000,
|
||||
"stone": 5000
|
||||
},
|
||||
"time": 50
|
||||
},
|
||||
{
|
||||
"level": 6,
|
||||
"values": [
|
||||
6000
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 6000,
|
||||
"wood": 6000,
|
||||
"iron": 6000,
|
||||
"stone": 6000
|
||||
},
|
||||
"time": 60
|
||||
},
|
||||
{
|
||||
"level": 7,
|
||||
"values": [
|
||||
7000
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 7000,
|
||||
"wood": 7000,
|
||||
"iron": 7000,
|
||||
"stone": 7000
|
||||
},
|
||||
"time": 70
|
||||
},
|
||||
{
|
||||
"level": 8,
|
||||
"values": [
|
||||
8000
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 8000,
|
||||
"wood": 8000,
|
||||
"iron": 8000,
|
||||
"stone": 8000
|
||||
},
|
||||
"time": 80
|
||||
},
|
||||
{
|
||||
"level": 9,
|
||||
"values": [
|
||||
9000
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 9000,
|
||||
"wood": 9000,
|
||||
"iron": 9000,
|
||||
"stone": 9000
|
||||
},
|
||||
"time": 90
|
||||
},
|
||||
{
|
||||
"level": 10,
|
||||
"values": [
|
||||
10000
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 10000,
|
||||
"wood": 10000,
|
||||
"iron": 10000,
|
||||
"stone": 10000
|
||||
},
|
||||
"time": 100
|
||||
}
|
||||
]
|
||||
}
|
||||
157
data/conf/json/facility/facility_produce_fmc.json
Normal file
157
data/conf/json/facility/facility_produce_fmc.json
Normal file
@@ -0,0 +1,157 @@
|
||||
{
|
||||
"title": "城内设施-伐木场配置表",
|
||||
"name": "伐木场",
|
||||
"des": "额外获得木材产量",
|
||||
"type": 17,
|
||||
"additions": [
|
||||
17
|
||||
],
|
||||
"conditions": [
|
||||
{
|
||||
"type": 0,
|
||||
"level": 2
|
||||
}
|
||||
],
|
||||
"levels": [
|
||||
{
|
||||
"level": 1,
|
||||
"values": [
|
||||
1000
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 1000,
|
||||
"wood": 1000,
|
||||
"iron": 1000,
|
||||
"stone": 1000
|
||||
},
|
||||
"time": 10
|
||||
},
|
||||
{
|
||||
"level": 2,
|
||||
"values": [
|
||||
2000
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 2000,
|
||||
"wood": 2000,
|
||||
"iron": 2000,
|
||||
"stone": 2000
|
||||
},
|
||||
"time": 20
|
||||
},
|
||||
{
|
||||
"level": 3,
|
||||
"values": [
|
||||
3000
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 3000,
|
||||
"wood": 3000,
|
||||
"iron": 3000,
|
||||
"stone": 3000
|
||||
},
|
||||
"time": 30
|
||||
},
|
||||
{
|
||||
"level": 4,
|
||||
"values": [
|
||||
4000
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 4000,
|
||||
"wood": 4000,
|
||||
"iron": 4000,
|
||||
"stone": 4000
|
||||
},
|
||||
"time": 40
|
||||
},
|
||||
{
|
||||
"level": 5,
|
||||
"values": [
|
||||
5000
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 5000,
|
||||
"wood": 5000,
|
||||
"iron": 5000,
|
||||
"stone": 5000
|
||||
},
|
||||
"time": 50
|
||||
},
|
||||
{
|
||||
"level": 6,
|
||||
"values": [
|
||||
6000
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 6000,
|
||||
"wood": 6000,
|
||||
"iron": 6000,
|
||||
"stone": 6000
|
||||
},
|
||||
"time": 60
|
||||
},
|
||||
{
|
||||
"level": 7,
|
||||
"values": [
|
||||
7000
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 7000,
|
||||
"wood": 7000,
|
||||
"iron": 7000,
|
||||
"stone": 7000
|
||||
},
|
||||
"time": 70
|
||||
},
|
||||
{
|
||||
"level": 8,
|
||||
"values": [
|
||||
8000
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 8000,
|
||||
"wood": 8000,
|
||||
"iron": 8000,
|
||||
"stone": 8000
|
||||
},
|
||||
"time": 80
|
||||
},
|
||||
{
|
||||
"level": 9,
|
||||
"values": [
|
||||
9000
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 9000,
|
||||
"wood": 9000,
|
||||
"iron": 9000,
|
||||
"stone": 9000
|
||||
},
|
||||
"time": 90
|
||||
},
|
||||
{
|
||||
"level": 10,
|
||||
"values": [
|
||||
10000
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 10000,
|
||||
"wood": 10000,
|
||||
"iron": 10000,
|
||||
"stone": 10000
|
||||
},
|
||||
"time": 100
|
||||
}
|
||||
]
|
||||
}
|
||||
157
data/conf/json/facility/facility_produce_ltc.json
Normal file
157
data/conf/json/facility/facility_produce_ltc.json
Normal file
@@ -0,0 +1,157 @@
|
||||
{
|
||||
"title": "城内设施-炼铁场配置表",
|
||||
"name": "炼铁场",
|
||||
"des": "额外获得铁矿产量",
|
||||
"type": 18,
|
||||
"additions": [
|
||||
18
|
||||
],
|
||||
"conditions": [
|
||||
{
|
||||
"type": 0,
|
||||
"level": 2
|
||||
}
|
||||
],
|
||||
"levels": [
|
||||
{
|
||||
"level": 1,
|
||||
"values": [
|
||||
1000
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 1000,
|
||||
"wood": 1000,
|
||||
"iron": 1000,
|
||||
"stone": 1000
|
||||
},
|
||||
"time": 10
|
||||
},
|
||||
{
|
||||
"level": 2,
|
||||
"values": [
|
||||
2000
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 2000,
|
||||
"wood": 2000,
|
||||
"iron": 2000,
|
||||
"stone": 2000
|
||||
},
|
||||
"time": 20
|
||||
},
|
||||
{
|
||||
"level": 3,
|
||||
"values": [
|
||||
3000
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 3000,
|
||||
"wood": 3000,
|
||||
"iron": 3000,
|
||||
"stone": 3000
|
||||
},
|
||||
"time": 30
|
||||
},
|
||||
{
|
||||
"level": 4,
|
||||
"values": [
|
||||
4000
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 4000,
|
||||
"wood": 4000,
|
||||
"iron": 4000,
|
||||
"stone": 4000
|
||||
},
|
||||
"time": 40
|
||||
},
|
||||
{
|
||||
"level": 5,
|
||||
"values": [
|
||||
5000
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 5000,
|
||||
"wood": 5000,
|
||||
"iron": 5000,
|
||||
"stone": 5000
|
||||
},
|
||||
"time": 50
|
||||
},
|
||||
{
|
||||
"level": 6,
|
||||
"values": [
|
||||
6000
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 6000,
|
||||
"wood": 6000,
|
||||
"iron": 6000,
|
||||
"stone": 6000
|
||||
},
|
||||
"time": 60
|
||||
},
|
||||
{
|
||||
"level": 7,
|
||||
"values": [
|
||||
7000
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 7000,
|
||||
"wood": 7000,
|
||||
"iron": 7000,
|
||||
"stone": 7000
|
||||
},
|
||||
"time": 70
|
||||
},
|
||||
{
|
||||
"level": 8,
|
||||
"values": [
|
||||
8000
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 8000,
|
||||
"wood": 8000,
|
||||
"iron": 8000,
|
||||
"stone": 8000
|
||||
},
|
||||
"time": 80
|
||||
},
|
||||
{
|
||||
"level": 9,
|
||||
"values": [
|
||||
9000
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 9000,
|
||||
"wood": 9000,
|
||||
"iron": 9000,
|
||||
"stone": 9000
|
||||
},
|
||||
"time": 90
|
||||
},
|
||||
{
|
||||
"level": 10,
|
||||
"values": [
|
||||
10000
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 10000,
|
||||
"wood": 10000,
|
||||
"iron": 10000,
|
||||
"stone": 10000
|
||||
},
|
||||
"time": 100
|
||||
}
|
||||
]
|
||||
}
|
||||
157
data/conf/json/facility/facility_produce_mf.json
Normal file
157
data/conf/json/facility/facility_produce_mf.json
Normal file
@@ -0,0 +1,157 @@
|
||||
{
|
||||
"title": "城内设施-磨坊配置表",
|
||||
"name": "磨坊",
|
||||
"des": "额外获得粮食产量",
|
||||
"type": 19,
|
||||
"additions": [
|
||||
19
|
||||
],
|
||||
"conditions": [
|
||||
{
|
||||
"type": 0,
|
||||
"level": 3
|
||||
}
|
||||
],
|
||||
"levels": [
|
||||
{
|
||||
"level": 1,
|
||||
"values": [
|
||||
1000
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 1000,
|
||||
"wood": 1000,
|
||||
"iron": 1000,
|
||||
"stone": 1000
|
||||
},
|
||||
"time": 10
|
||||
},
|
||||
{
|
||||
"level": 2,
|
||||
"values": [
|
||||
2000
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 2000,
|
||||
"wood": 2000,
|
||||
"iron": 2000,
|
||||
"stone": 2000
|
||||
},
|
||||
"time": 20
|
||||
},
|
||||
{
|
||||
"level": 3,
|
||||
"values": [
|
||||
3000
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 3000,
|
||||
"wood": 3000,
|
||||
"iron": 3000,
|
||||
"stone": 3000
|
||||
},
|
||||
"time": 30
|
||||
},
|
||||
{
|
||||
"level": 4,
|
||||
"values": [
|
||||
4000
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 4000,
|
||||
"wood": 4000,
|
||||
"iron": 4000,
|
||||
"stone": 4000
|
||||
},
|
||||
"time": 40
|
||||
},
|
||||
{
|
||||
"level": 5,
|
||||
"values": [
|
||||
5000
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 5000,
|
||||
"wood": 5000,
|
||||
"iron": 5000,
|
||||
"stone": 5000
|
||||
},
|
||||
"time": 50
|
||||
},
|
||||
{
|
||||
"level": 6,
|
||||
"values": [
|
||||
6000
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 6000,
|
||||
"wood": 6000,
|
||||
"iron": 6000,
|
||||
"stone": 6000
|
||||
},
|
||||
"time": 60
|
||||
},
|
||||
{
|
||||
"level": 7,
|
||||
"values": [
|
||||
7000
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 7000,
|
||||
"wood": 7000,
|
||||
"iron": 7000,
|
||||
"stone": 7000
|
||||
},
|
||||
"time": 70
|
||||
},
|
||||
{
|
||||
"level": 8,
|
||||
"values": [
|
||||
8000
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 8000,
|
||||
"wood": 8000,
|
||||
"iron": 8000,
|
||||
"stone": 8000
|
||||
},
|
||||
"time": 80
|
||||
},
|
||||
{
|
||||
"level": 9,
|
||||
"values": [
|
||||
9000
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 9000,
|
||||
"wood": 9000,
|
||||
"iron": 9000,
|
||||
"stone": 9000
|
||||
},
|
||||
"time": 90
|
||||
},
|
||||
{
|
||||
"level": 10,
|
||||
"values": [
|
||||
10000
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 10000,
|
||||
"wood": 10000,
|
||||
"iron": 10000,
|
||||
"stone": 10000
|
||||
},
|
||||
"time": 100
|
||||
}
|
||||
]
|
||||
}
|
||||
157
data/conf/json/facility/facility_produce_mj.json
Normal file
157
data/conf/json/facility/facility_produce_mj.json
Normal file
@@ -0,0 +1,157 @@
|
||||
{
|
||||
"title": "城内设施-民居配置表",
|
||||
"name": "民居",
|
||||
"des": "提供税收",
|
||||
"type": 21,
|
||||
"additions": [
|
||||
21
|
||||
],
|
||||
"conditions": [
|
||||
{
|
||||
"type": 0,
|
||||
"level": 1
|
||||
}
|
||||
],
|
||||
"levels": [
|
||||
{
|
||||
"level": 1,
|
||||
"values": [
|
||||
1000
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 1000,
|
||||
"wood": 1000,
|
||||
"iron": 1000,
|
||||
"stone": 1000
|
||||
},
|
||||
"time": 10
|
||||
},
|
||||
{
|
||||
"level": 2,
|
||||
"values": [
|
||||
2000
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 2000,
|
||||
"wood": 2000,
|
||||
"iron": 2000,
|
||||
"stone": 2000
|
||||
},
|
||||
"time": 20
|
||||
},
|
||||
{
|
||||
"level": 3,
|
||||
"values": [
|
||||
3000
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 3000,
|
||||
"wood": 3000,
|
||||
"iron": 3000,
|
||||
"stone": 3000
|
||||
},
|
||||
"time": 30
|
||||
},
|
||||
{
|
||||
"level": 4,
|
||||
"values": [
|
||||
4000
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 4000,
|
||||
"wood": 4000,
|
||||
"iron": 4000,
|
||||
"stone": 4000
|
||||
},
|
||||
"time": 40
|
||||
},
|
||||
{
|
||||
"level": 5,
|
||||
"values": [
|
||||
5000
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 5000,
|
||||
"wood": 5000,
|
||||
"iron": 5000,
|
||||
"stone": 5000
|
||||
},
|
||||
"time": 50
|
||||
},
|
||||
{
|
||||
"level": 6,
|
||||
"values": [
|
||||
6000
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 6000,
|
||||
"wood": 6000,
|
||||
"iron": 6000,
|
||||
"stone": 6000
|
||||
},
|
||||
"time": 60
|
||||
},
|
||||
{
|
||||
"level": 7,
|
||||
"values": [
|
||||
7000
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 7000,
|
||||
"wood": 7000,
|
||||
"iron": 7000,
|
||||
"stone": 7000
|
||||
},
|
||||
"time": 70
|
||||
},
|
||||
{
|
||||
"level": 8,
|
||||
"values": [
|
||||
8000
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 8000,
|
||||
"wood": 8000,
|
||||
"iron": 8000,
|
||||
"stone": 8000
|
||||
},
|
||||
"time": 80
|
||||
},
|
||||
{
|
||||
"level": 9,
|
||||
"values": [
|
||||
9000
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 9000,
|
||||
"wood": 9000,
|
||||
"iron": 9000,
|
||||
"stone": 9000
|
||||
},
|
||||
"time": 90
|
||||
},
|
||||
{
|
||||
"level": 10,
|
||||
"values": [
|
||||
10000
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 10000,
|
||||
"wood": 10000,
|
||||
"iron": 10000,
|
||||
"stone": 10000
|
||||
},
|
||||
"time": 100
|
||||
}
|
||||
]
|
||||
}
|
||||
128
data/conf/json/facility/facility_sjt.json
Normal file
128
data/conf/json/facility/facility_sjt.json
Normal file
@@ -0,0 +1,128 @@
|
||||
{
|
||||
"title": "城内设施-社稷坛配置",
|
||||
"name": "社稷坛",
|
||||
"type": 22,
|
||||
"des": "每升一级可以额外扩建一次",
|
||||
"additions": [
|
||||
22
|
||||
],
|
||||
"conditions": [
|
||||
{
|
||||
"type": 0,
|
||||
"level": 9
|
||||
}
|
||||
],
|
||||
"levels": [{
|
||||
"level": 1,
|
||||
"values": [
|
||||
1
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 1000,
|
||||
"wood": 1000,
|
||||
"iron": 1000,
|
||||
"stone": 1000
|
||||
},
|
||||
"time": 10
|
||||
},
|
||||
{
|
||||
"level": 2,
|
||||
"values": [
|
||||
2
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 2000,
|
||||
"wood": 2000,
|
||||
"iron": 2000,
|
||||
"stone": 2000
|
||||
},
|
||||
"time": 20
|
||||
},
|
||||
{
|
||||
"level": 3,
|
||||
"values": [
|
||||
3
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 3000,
|
||||
"wood": 3000,
|
||||
"iron": 3000,
|
||||
"stone": 3000
|
||||
},
|
||||
"time": 30
|
||||
},
|
||||
{
|
||||
"level": 4,
|
||||
"values": [
|
||||
4
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 4000,
|
||||
"wood": 4000,
|
||||
"iron": 4000,
|
||||
"stone": 4000
|
||||
},
|
||||
"time": 40
|
||||
},
|
||||
{
|
||||
"level": 5,
|
||||
"values": [
|
||||
5
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 5000,
|
||||
"wood": 5000,
|
||||
"iron": 5000,
|
||||
"stone": 5000
|
||||
},
|
||||
"time": 50
|
||||
},
|
||||
{
|
||||
"level": 6,
|
||||
"values": [
|
||||
6
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 6000,
|
||||
"wood": 6000,
|
||||
"iron": 6000,
|
||||
"stone": 6000
|
||||
},
|
||||
"time": 60
|
||||
},
|
||||
{
|
||||
"level": 7,
|
||||
"values": [
|
||||
7
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 7000,
|
||||
"wood": 7000,
|
||||
"iron": 7000,
|
||||
"stone": 7000
|
||||
},
|
||||
"time": 70
|
||||
},
|
||||
{
|
||||
"level": 8,
|
||||
"values": [
|
||||
8
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 8000,
|
||||
"wood": 8000,
|
||||
"iron": 8000,
|
||||
"stone": 8000
|
||||
},
|
||||
"time": 80
|
||||
}
|
||||
]
|
||||
}
|
||||
87
data/conf/json/facility/facility_wall_cq.json
Normal file
87
data/conf/json/facility/facility_wall_cq.json
Normal file
@@ -0,0 +1,87 @@
|
||||
{
|
||||
"title": "城内设施-城墙配置",
|
||||
"name": "城墙",
|
||||
"type": 23,
|
||||
"des": "提高本城耐久上限",
|
||||
"additions": [
|
||||
1
|
||||
],
|
||||
"conditions": [
|
||||
{
|
||||
"type": 0,
|
||||
"level": 7
|
||||
}
|
||||
],
|
||||
"levels": [
|
||||
{
|
||||
"level": 1,
|
||||
"values": [
|
||||
10000
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 1000,
|
||||
"wood": 1000,
|
||||
"iron": 1000,
|
||||
"stone": 1000
|
||||
},
|
||||
"time": 10
|
||||
},
|
||||
{
|
||||
"level": 2,
|
||||
"values": [
|
||||
20000
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 2000,
|
||||
"wood": 2000,
|
||||
"iron": 2000,
|
||||
"stone": 2000
|
||||
},
|
||||
"time": 20
|
||||
},
|
||||
{
|
||||
"level": 3,
|
||||
"values": [
|
||||
30000
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 3000,
|
||||
"wood": 3000,
|
||||
"iron": 3000,
|
||||
"stone": 3000
|
||||
},
|
||||
"time": 30
|
||||
},
|
||||
{
|
||||
"level": 4,
|
||||
"values": [
|
||||
40000
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 4000,
|
||||
"wood": 4000,
|
||||
"iron": 4000,
|
||||
"stone": 4000
|
||||
},
|
||||
"time": 40
|
||||
},
|
||||
{
|
||||
"level": 5,
|
||||
"values": [
|
||||
50000
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 5000,
|
||||
"wood": 5000,
|
||||
"iron": 5000,
|
||||
"stone": 5000
|
||||
},
|
||||
"time": 50
|
||||
}
|
||||
]
|
||||
}
|
||||
87
data/conf/json/facility/facility_wall_nq.json
Normal file
87
data/conf/json/facility/facility_wall_nq.json
Normal file
@@ -0,0 +1,87 @@
|
||||
{
|
||||
"title": "城内设施-女墙配置",
|
||||
"name": "女墙",
|
||||
"type": 24,
|
||||
"des": "提高本城耐久上限",
|
||||
"additions": [
|
||||
1
|
||||
],
|
||||
"conditions": [
|
||||
{
|
||||
"type": 23,
|
||||
"level": 1
|
||||
}
|
||||
],
|
||||
"levels": [
|
||||
{
|
||||
"level": 1,
|
||||
"values": [
|
||||
10000
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 1000,
|
||||
"wood": 1000,
|
||||
"iron": 1000,
|
||||
"stone": 1000
|
||||
},
|
||||
"time": 10
|
||||
},
|
||||
{
|
||||
"level": 2,
|
||||
"values": [
|
||||
20000
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 2000,
|
||||
"wood": 2000,
|
||||
"iron": 2000,
|
||||
"stone": 2000
|
||||
},
|
||||
"time": 20
|
||||
},
|
||||
{
|
||||
"level": 3,
|
||||
"values": [
|
||||
30000
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 3000,
|
||||
"wood": 3000,
|
||||
"iron": 3000,
|
||||
"stone": 3000
|
||||
},
|
||||
"time": 30
|
||||
},
|
||||
{
|
||||
"level": 4,
|
||||
"values": [
|
||||
40000
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 4000,
|
||||
"wood": 4000,
|
||||
"iron": 4000,
|
||||
"stone": 4000
|
||||
},
|
||||
"time": 40
|
||||
},
|
||||
{
|
||||
"level": 5,
|
||||
"values": [
|
||||
50000
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 5000,
|
||||
"wood": 5000,
|
||||
"iron": 5000,
|
||||
"stone": 5000
|
||||
},
|
||||
"time": 50
|
||||
}
|
||||
]
|
||||
}
|
||||
129
data/conf/json/facility/facility_warehouse.json
Normal file
129
data/conf/json/facility/facility_warehouse.json
Normal file
@@ -0,0 +1,129 @@
|
||||
{
|
||||
"title": "城内设施-仓库配置",
|
||||
"name": "仓库",
|
||||
"type": 25,
|
||||
"des": "每升一级增加仓库容量",
|
||||
"additions": [
|
||||
23
|
||||
],
|
||||
"conditions": [
|
||||
{
|
||||
"type": 0,
|
||||
"level": 2
|
||||
}
|
||||
],
|
||||
"levels": [
|
||||
{
|
||||
"level": 1,
|
||||
"values": [
|
||||
10000
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 1000,
|
||||
"wood": 1000,
|
||||
"iron": 1000,
|
||||
"stone": 1000
|
||||
},
|
||||
"time": 10
|
||||
},
|
||||
{
|
||||
"level": 2,
|
||||
"values": [
|
||||
20000
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 2000,
|
||||
"wood": 2000,
|
||||
"iron": 2000,
|
||||
"stone": 2000
|
||||
},
|
||||
"time": 20
|
||||
},
|
||||
{
|
||||
"level": 3,
|
||||
"values": [
|
||||
30000
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 3000,
|
||||
"wood": 3000,
|
||||
"iron": 3000,
|
||||
"stone": 3000
|
||||
},
|
||||
"time": 30
|
||||
},
|
||||
{
|
||||
"level": 4,
|
||||
"values": [
|
||||
40000
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 4000,
|
||||
"wood": 4000,
|
||||
"iron": 4000,
|
||||
"stone": 4000
|
||||
},
|
||||
"time": 40
|
||||
},
|
||||
{
|
||||
"level": 5,
|
||||
"values": [
|
||||
50000
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 5000,
|
||||
"wood": 5000,
|
||||
"iron": 5000,
|
||||
"stone": 5000
|
||||
},
|
||||
"time": 50
|
||||
},
|
||||
{
|
||||
"level": 6,
|
||||
"values": [
|
||||
60000
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 6000,
|
||||
"wood": 6000,
|
||||
"iron": 6000,
|
||||
"stone": 6000
|
||||
},
|
||||
"time": 60
|
||||
},
|
||||
{
|
||||
"level": 7,
|
||||
"values": [
|
||||
70000
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 7000,
|
||||
"wood": 7000,
|
||||
"iron": 7000,
|
||||
"stone": 7000
|
||||
},
|
||||
"time": 70
|
||||
},
|
||||
{
|
||||
"level": 8,
|
||||
"values": [
|
||||
80000
|
||||
],
|
||||
"need": {
|
||||
"decree": 0,
|
||||
"grain": 8000,
|
||||
"wood": 8000,
|
||||
"iron": 8000,
|
||||
"stone": 8000
|
||||
},
|
||||
"time": 80
|
||||
}
|
||||
]
|
||||
}
|
||||
9205
data/conf/json/general/general.json
Normal file
9205
data/conf/json/general/general.json
Normal file
File diff suppressed because it is too large
Load Diff
117
data/conf/json/general/general_arms.json
Normal file
117
data/conf/json/general/general_arms.json
Normal file
@@ -0,0 +1,117 @@
|
||||
{
|
||||
"title": "兵种配置表",
|
||||
"arms":[
|
||||
{
|
||||
"id": 1,
|
||||
"name": "步兵",
|
||||
"condition":{
|
||||
"level": 1,
|
||||
"star_lv": 0
|
||||
},
|
||||
"change_cost": {
|
||||
"gold": 1000
|
||||
},
|
||||
"harm_ratio": [100, 110, 90, 95, 105, 85, 90, 100, 80]
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"name": "弓兵",
|
||||
"condition":{
|
||||
"level": 1,
|
||||
"star_lv": 0
|
||||
},
|
||||
"change_cost": {
|
||||
"gold": 1000
|
||||
},
|
||||
"harm_ratio":[90, 100, 110, 85, 95, 105, 80, 90, 100]
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"name": "骑兵",
|
||||
"condition":{
|
||||
"level": 1,
|
||||
"star_lv": 0
|
||||
},
|
||||
"change_cost": {
|
||||
"gold": 1000
|
||||
},
|
||||
"harm_ratio": [110, 90, 100, 105, 85, 95, 100, 80, 90]
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"name": "轻步兵",
|
||||
"condition":{
|
||||
"level": 3,
|
||||
"star_lv": 0
|
||||
},
|
||||
"change_cost": {
|
||||
"gold": 5000
|
||||
},
|
||||
"harm_ratio": [105, 115, 95, 100, 110, 90, 95, 105, 85]
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"name": "长弓兵",
|
||||
"condition":{
|
||||
"level": 3,
|
||||
"star_lv": 0
|
||||
},
|
||||
"change_cost": {
|
||||
"gold": 6000
|
||||
},
|
||||
"harm_ratio": [95, 105, 115, 90, 100, 110, 85, 95, 105]
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"name": "轻骑兵",
|
||||
"condition":{
|
||||
"level": 3,
|
||||
"star_lv": 0
|
||||
},
|
||||
"change_cost": {
|
||||
"gold": 4000
|
||||
},
|
||||
"harm_ratio": [115, 95, 105, 110, 90, 100, 105, 85, 95]
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"name": "重甲兵",
|
||||
"condition":{
|
||||
"level": 7,
|
||||
"star_lv": 0
|
||||
},
|
||||
"change_cost": {
|
||||
"gold": 14000
|
||||
},
|
||||
"harm_ratio": [110, 120, 90, 105, 115, 95, 100, 110, 90]
|
||||
},
|
||||
|
||||
{
|
||||
"id": 8,
|
||||
"name": "弩兵",
|
||||
"condition":{
|
||||
"level": 3,
|
||||
"star_lv": 0
|
||||
},
|
||||
"change_cost": {
|
||||
"gold": 6000
|
||||
},
|
||||
"harm_ratio": [100, 110, 120, 95, 105, 115, 90, 100, 110]
|
||||
},
|
||||
|
||||
{
|
||||
"id": 9,
|
||||
"name": "重骑兵",
|
||||
"condition":{
|
||||
"level": 7,
|
||||
"star_lv": 0
|
||||
},
|
||||
"change_cost": {
|
||||
"gold": 18000
|
||||
},
|
||||
"harm_ratio": [120, 100, 110, 105, 95, 105, 110, 90, 100]
|
||||
}
|
||||
|
||||
|
||||
]
|
||||
}
|
||||
105
data/conf/json/general/general_basic.json
Normal file
105
data/conf/json/general/general_basic.json
Normal file
@@ -0,0 +1,105 @@
|
||||
{
|
||||
"title": "将领基本配置表",
|
||||
"levels":[
|
||||
{
|
||||
"level": 1,
|
||||
"exp": 0,
|
||||
"soldiers": 100
|
||||
},
|
||||
{
|
||||
"level": 2,
|
||||
"exp": 1000,
|
||||
"soldiers": 200
|
||||
},
|
||||
{
|
||||
"level": 3,
|
||||
"exp": 2000,
|
||||
"soldiers": 300
|
||||
},
|
||||
{
|
||||
"level": 4,
|
||||
"exp": 3000,
|
||||
"soldiers": 400
|
||||
},
|
||||
{
|
||||
"level": 5,
|
||||
"exp": 4000,
|
||||
"soldiers": 500
|
||||
},
|
||||
{
|
||||
"level": 6,
|
||||
"exp": 5000,
|
||||
"soldiers": 600
|
||||
},
|
||||
{
|
||||
"level": 7,
|
||||
"exp": 6000,
|
||||
"soldiers": 700
|
||||
},
|
||||
{
|
||||
"level": 8,
|
||||
"exp": 7500,
|
||||
"soldiers": 800
|
||||
},
|
||||
{
|
||||
"level": 9,
|
||||
"exp": 9000,
|
||||
"soldiers": 900
|
||||
},
|
||||
{
|
||||
"level": 10,
|
||||
"exp": 11000,
|
||||
"soldiers": 1000
|
||||
},
|
||||
{
|
||||
"level": 11,
|
||||
"exp": 12500,
|
||||
"soldiers": 1100
|
||||
},
|
||||
{
|
||||
"level": 12,
|
||||
"exp": 15000,
|
||||
"soldiers": 1200
|
||||
},
|
||||
{
|
||||
"level": 13,
|
||||
"exp": 17000,
|
||||
"soldiers": 1300
|
||||
},
|
||||
{
|
||||
"level": 14,
|
||||
"exp": 19000,
|
||||
"soldiers": 1400
|
||||
},
|
||||
{
|
||||
"level": 15,
|
||||
"exp": 23000,
|
||||
"soldiers": 1500
|
||||
}, {
|
||||
"level": 16,
|
||||
"exp": 26000,
|
||||
"soldiers": 1600
|
||||
},
|
||||
{
|
||||
"level": 17,
|
||||
"exp": 29000,
|
||||
"soldiers": 1700
|
||||
},
|
||||
{
|
||||
"level": 18,
|
||||
"exp": 31000,
|
||||
"soldiers": 1800
|
||||
},
|
||||
{
|
||||
"level": 19,
|
||||
"exp": 35000,
|
||||
"soldiers": 1900
|
||||
},
|
||||
{
|
||||
"level": 20,
|
||||
"exp": 50000,
|
||||
"soldiers": 2000
|
||||
}
|
||||
|
||||
]
|
||||
}
|
||||
439
data/conf/json/map_build.json
Normal file
439
data/conf/json/map_build.json
Normal file
@@ -0,0 +1,439 @@
|
||||
{
|
||||
"title": "地图资源配置",
|
||||
"cfg":[
|
||||
{"type": 50,
|
||||
"des": "系统要塞",
|
||||
"name": "要塞",
|
||||
"level": 5,
|
||||
"grain": 0,
|
||||
"wood": 0,
|
||||
"iron": 0,
|
||||
"stone": 0,
|
||||
"durable": 30000,
|
||||
"defender": 1
|
||||
},
|
||||
{"type": 51,
|
||||
"name": "城区",
|
||||
"level": 1,
|
||||
"grain": 0,
|
||||
"wood": 0,
|
||||
"iron": 0,
|
||||
"stone": 0,
|
||||
"durable": 100000,
|
||||
"defender": 5
|
||||
},
|
||||
{"type": 51,
|
||||
"name": "城区",
|
||||
"level": 2,
|
||||
"grain": 0,
|
||||
"wood": 0,
|
||||
"iron": 0,
|
||||
"stone": 0,
|
||||
"durable": 200000,
|
||||
"defender": 5
|
||||
},
|
||||
{"type": 51,
|
||||
"name": "城区",
|
||||
"level": 3,
|
||||
"grain": 0,
|
||||
"wood": 0,
|
||||
"iron": 0,
|
||||
"stone": 0,
|
||||
"durable": 300000,
|
||||
"defender": 5
|
||||
},
|
||||
{"type": 51,
|
||||
"name": "城区",
|
||||
"level": 4,
|
||||
"grain": 0,
|
||||
"wood": 0,
|
||||
"iron": 0,
|
||||
"stone": 0,
|
||||
"durable": 400000,
|
||||
"defender": 5
|
||||
},
|
||||
{"type": 51,
|
||||
"name": "城区",
|
||||
"level": 5,
|
||||
"grain": 0,
|
||||
"wood": 0,
|
||||
"iron": 0,
|
||||
"stone": 0,
|
||||
"durable": 500000,
|
||||
"defender": 5
|
||||
},
|
||||
{"type": 51,
|
||||
"name": "城区",
|
||||
"level": 6,
|
||||
"grain": 0,
|
||||
"wood": 0,
|
||||
"iron": 0,
|
||||
"stone": 0,
|
||||
"durable": 600000,
|
||||
"defender": 5
|
||||
},
|
||||
{"type": 51,
|
||||
"name": "城区",
|
||||
"level": 7,
|
||||
"grain": 0,
|
||||
"wood": 0,
|
||||
"iron": 0,
|
||||
"stone": 0,
|
||||
"durable": 700000,
|
||||
"defender": 5
|
||||
},
|
||||
{"type": 51,
|
||||
"name": "城区",
|
||||
"level": 8,
|
||||
"grain": 0,
|
||||
"wood": 0,
|
||||
"iron": 0,
|
||||
"stone": 0,
|
||||
"durable": 800000,
|
||||
"defender": 5
|
||||
},
|
||||
{"type": 51,
|
||||
"name": "城区",
|
||||
"level": 9,
|
||||
"grain": 0,
|
||||
"wood": 0,
|
||||
"iron": 0,
|
||||
"stone": 0,
|
||||
"durable": 900000,
|
||||
"defender": 5
|
||||
},
|
||||
{"type": 51,
|
||||
"name": "城区",
|
||||
"level": 10,
|
||||
"grain": 0,
|
||||
"wood": 0,
|
||||
"iron": 0,
|
||||
"stone": 0,
|
||||
"durable": 1000000,
|
||||
"defender": 5
|
||||
},
|
||||
{"type": 52,
|
||||
"name": "土地Lv.1",
|
||||
"level": 1,
|
||||
"grain": 100,
|
||||
"wood": 100,
|
||||
"iron": 100,
|
||||
"stone": 100,
|
||||
"durable": 10000,
|
||||
"defender": 1
|
||||
},
|
||||
{"type": 52,
|
||||
"name": "土地Lv.2",
|
||||
"level": 2,
|
||||
"grain": 200,
|
||||
"wood": 200,
|
||||
"iron": 200,
|
||||
"stone": 200,
|
||||
"durable": 10000,
|
||||
"defender": 2
|
||||
},
|
||||
{"type": 52,
|
||||
"name": "土地Lv.3",
|
||||
"level": 3,
|
||||
"grain": 300,
|
||||
"wood": 300,
|
||||
"iron": 300,
|
||||
"stone": 300,
|
||||
"durable": 100,
|
||||
"defender": 3
|
||||
},
|
||||
{"type": 52,
|
||||
"name": "土地Lv.4",
|
||||
"level": 4,
|
||||
"grain": 0,
|
||||
"wood": 4000,
|
||||
"iron": 0,
|
||||
"stone": 0,
|
||||
"durable": 10000,
|
||||
"defender": 4
|
||||
},
|
||||
{"type": 52,
|
||||
"name": "土地Lv.5",
|
||||
"level": 5,
|
||||
"grain": 0,
|
||||
"wood": 5000,
|
||||
"iron": 0,
|
||||
"stone": 0,
|
||||
"durable": 10000,
|
||||
"defender": 5
|
||||
},
|
||||
{"type": 52,
|
||||
"name": "土地Lv.6",
|
||||
"level": 6,
|
||||
"grain": 0,
|
||||
"wood": 1000,
|
||||
"iron": 0,
|
||||
"stone": 0,
|
||||
"durable": 10000,
|
||||
"defender": 6
|
||||
},
|
||||
{"type": 52,
|
||||
"name": "土地Lv.7",
|
||||
"level": 7,
|
||||
"grain": 0,
|
||||
"wood": 2000,
|
||||
"iron": 0,
|
||||
"stone": 0,
|
||||
"durable": 10000,
|
||||
"defender": 7
|
||||
},
|
||||
{"type": 52,
|
||||
"name": "土地Lv.8",
|
||||
"level": 8,
|
||||
"grain": 0,
|
||||
"wood": 3000,
|
||||
"iron": 0,
|
||||
"stone": 0,
|
||||
"durable": 100,
|
||||
"defender": 8
|
||||
},
|
||||
{"type": 53,
|
||||
"name": "土地Lv.1",
|
||||
"level": 1,
|
||||
"grain": 100,
|
||||
"wood": 100,
|
||||
"iron": 100,
|
||||
"stone": 100,
|
||||
"durable": 10000,
|
||||
"defender": 1
|
||||
},
|
||||
{"type": 53,
|
||||
"name": "土地Lv.2",
|
||||
"level": 2,
|
||||
"grain": 200,
|
||||
"wood": 200,
|
||||
"iron": 200,
|
||||
"stone": 200,
|
||||
"durable": 10000,
|
||||
"defender": 2
|
||||
},
|
||||
{"type": 53,
|
||||
"name": "土地Lv.3",
|
||||
"level": 3,
|
||||
"grain": 300,
|
||||
"wood": 300,
|
||||
"iron": 300,
|
||||
"stone": 300,
|
||||
"durable": 100,
|
||||
"defender": 3
|
||||
},
|
||||
{"type": 53,
|
||||
"name": "土地Lv.4",
|
||||
"level": 4,
|
||||
"grain": 0,
|
||||
"wood": 0,
|
||||
"iron": 4000,
|
||||
"stone": 0,
|
||||
"durable": 10000,
|
||||
"defender": 4
|
||||
},
|
||||
{"type": 53,
|
||||
"name": "土地Lv.5",
|
||||
"level": 5,
|
||||
"grain": 0,
|
||||
"wood": 0,
|
||||
"iron": 5000,
|
||||
"stone": 0,
|
||||
"durable": 100,
|
||||
"defender": 5
|
||||
},
|
||||
{"type": 53,
|
||||
"name": "土地Lv.6",
|
||||
"level": 6,
|
||||
"grain": 0,
|
||||
"wood": 0,
|
||||
"iron": 6000,
|
||||
"stone": 0,
|
||||
"durable": 10000,
|
||||
"defender": 6
|
||||
},
|
||||
{"type": 53,
|
||||
"name": "土地Lv.7",
|
||||
"level": 7,
|
||||
"grain": 0,
|
||||
"wood": 0,
|
||||
"iron": 7000,
|
||||
"stone": 0,
|
||||
"durable": 10000,
|
||||
"defender": 7
|
||||
},
|
||||
{"type": 53,
|
||||
"name": "土地Lv.8",
|
||||
"level": 8,
|
||||
"grain": 0,
|
||||
"wood": 0,
|
||||
"iron": 8000,
|
||||
"stone": 0,
|
||||
"durable": 10000,
|
||||
"defender": 8
|
||||
},
|
||||
{"type": 54,
|
||||
"name": "土地Lv.1",
|
||||
"level": 1,
|
||||
"grain": 100,
|
||||
"wood": 100,
|
||||
"iron": 100,
|
||||
"stone": 100,
|
||||
"durable": 10000,
|
||||
"defender": 1
|
||||
},
|
||||
{"type": 54,
|
||||
"name": "土地Lv.2",
|
||||
"level": 2,
|
||||
"grain": 200,
|
||||
"wood": 200,
|
||||
"iron": 200,
|
||||
"stone": 200,
|
||||
"durable": 10000,
|
||||
"defender": 2
|
||||
},
|
||||
{"type": 54,
|
||||
"name": "土地Lv.3",
|
||||
"level": 3,
|
||||
"grain": 300,
|
||||
"wood": 300,
|
||||
"iron": 300,
|
||||
"stone": 300,
|
||||
"durable": 100,
|
||||
"defender": 3
|
||||
},
|
||||
{"type": 54,
|
||||
"name": "土地Lv.4",
|
||||
"level": 4,
|
||||
"grain": 0,
|
||||
"wood": 0,
|
||||
"iron": 0,
|
||||
"stone": 1000,
|
||||
"durable": 10000,
|
||||
"defender": 1
|
||||
},
|
||||
{"type": 54,
|
||||
"name": "土地Lv.5",
|
||||
"level": 5,
|
||||
"grain": 0,
|
||||
"wood": 0,
|
||||
"iron": 0,
|
||||
"stone": 5000,
|
||||
"durable": 10000,
|
||||
"defender": 5
|
||||
},
|
||||
{"type": 54,
|
||||
"name": "土地Lv.6",
|
||||
"level": 6,
|
||||
"grain": 0,
|
||||
"wood": 0,
|
||||
"iron": 0,
|
||||
"stone": 6000,
|
||||
"durable": 10000,
|
||||
"defender": 6
|
||||
},
|
||||
{"type": 54,
|
||||
"name": "土地Lv.7",
|
||||
"level": 7,
|
||||
"grain": 0,
|
||||
"wood": 0,
|
||||
"iron": 0,
|
||||
"stone": 7000,
|
||||
"durable": 10000,
|
||||
"defender": 7
|
||||
},
|
||||
{"type": 54,
|
||||
"name": "土地Lv.8",
|
||||
"level": 8,
|
||||
"grain": 0,
|
||||
"wood": 0,
|
||||
"iron": 0,
|
||||
"stone": 8000,
|
||||
"durable": 10000,
|
||||
"defender": 8
|
||||
},
|
||||
|
||||
|
||||
|
||||
{"type": 55,
|
||||
"name": "土地Lv.1",
|
||||
"level": 1,
|
||||
"grain": 100,
|
||||
"wood": 100,
|
||||
"iron": 100,
|
||||
"stone": 100,
|
||||
"durable": 10000,
|
||||
"defender": 1
|
||||
},
|
||||
{"type": 55,
|
||||
"name": "土地Lv.2",
|
||||
"level": 2,
|
||||
"grain": 200,
|
||||
"wood": 200,
|
||||
"iron": 200,
|
||||
"stone": 200,
|
||||
"durable": 10000,
|
||||
"defender": 2
|
||||
},
|
||||
{"type": 55,
|
||||
"name": "土地Lv.3",
|
||||
"level": 3,
|
||||
"grain": 300,
|
||||
"wood": 300,
|
||||
"iron": 300,
|
||||
"stone": 300,
|
||||
"durable": 100,
|
||||
"defender": 3
|
||||
},
|
||||
{"type": 55,
|
||||
"name": "土地Lv.4",
|
||||
"level": 4,
|
||||
"grain": 1000,
|
||||
"wood": 0,
|
||||
"iron": 0,
|
||||
"stone": 0,
|
||||
"durable": 10000,
|
||||
"defender": 4
|
||||
},
|
||||
{"type": 55,
|
||||
"name": "土地Lv.5",
|
||||
"level": 5,
|
||||
"grain": 5000,
|
||||
"wood": 0,
|
||||
"iron": 0,
|
||||
"stone": 0,
|
||||
"durable": 10000,
|
||||
"defender": 5
|
||||
},
|
||||
{"type": 55,
|
||||
"name": "土地Lv.6",
|
||||
"level": 6,
|
||||
"grain": 6000,
|
||||
"wood": 0,
|
||||
"iron": 0,
|
||||
"stone": 0,
|
||||
"durable": 10000,
|
||||
"defender": 6
|
||||
},
|
||||
{"type": 55,
|
||||
"name": "土地Lv.7",
|
||||
"level": 7,
|
||||
"grain": 7000,
|
||||
"wood": 0,
|
||||
"iron": 0,
|
||||
"stone": 0,
|
||||
"durable": 10000,
|
||||
"defender": 7
|
||||
},
|
||||
{"type": 55,
|
||||
"name": "土地Lv.8",
|
||||
"level": 8,
|
||||
"grain": 8000,
|
||||
"wood": 0,
|
||||
"iron": 0,
|
||||
"stone": 0,
|
||||
"durable": 10000,
|
||||
"defender": 8
|
||||
}
|
||||
]
|
||||
}
|
||||
43
data/conf/json/map_build_custom.json
Normal file
43
data/conf/json/map_build_custom.json
Normal file
@@ -0,0 +1,43 @@
|
||||
{
|
||||
"title": "地图用户建设的建筑配置",
|
||||
"cfg": [
|
||||
{
|
||||
"type": 56,
|
||||
"name": "要塞",
|
||||
"levels": [
|
||||
{
|
||||
"level": 1,
|
||||
"durable": 10000,
|
||||
"defender": 5,
|
||||
"time": 20,
|
||||
"need": {
|
||||
"decree": 2,
|
||||
"grain": 1000,
|
||||
"wood": 1000,
|
||||
"iron": 1000,
|
||||
"stone": 1000
|
||||
},
|
||||
"result": {
|
||||
"army_cnt": 1
|
||||
}
|
||||
},
|
||||
{
|
||||
"level": 2,
|
||||
"durable": 10000,
|
||||
"defender": 5,
|
||||
"time": 20,
|
||||
"need": {
|
||||
"decree": 3,
|
||||
"grain": 1000,
|
||||
"wood": 1000,
|
||||
"iron": 1000,
|
||||
"stone": 1000
|
||||
},
|
||||
"result": {
|
||||
"army_cnt": 2
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
75
data/conf/json/skill/beidong/baizhanjingbing.json
Normal file
75
data/conf/json/skill/beidong/baizhanjingbing.json
Normal file
@@ -0,0 +1,75 @@
|
||||
{
|
||||
"cfgId": 201,
|
||||
"name": "百战精兵",
|
||||
"trigger": 2,
|
||||
"target": 2,
|
||||
"des": "使自身攻击属性提升%n%、防御属性提升%n%、谋略属性提升%n%、速度属性提升%n%",
|
||||
"limit": 3,
|
||||
"arms": [
|
||||
1,
|
||||
4,
|
||||
7,
|
||||
2,
|
||||
5,
|
||||
8,
|
||||
3,
|
||||
6,
|
||||
9
|
||||
],
|
||||
|
||||
"include_effect": [
|
||||
2,3,4,5
|
||||
],
|
||||
"levels": [
|
||||
{
|
||||
"probability":30,
|
||||
"effect_value": [50,50,50,50],
|
||||
"effect_round": [0]
|
||||
},
|
||||
{
|
||||
"probability":30,
|
||||
"effect_value": [50,50,50,50],
|
||||
"effect_round": [0]
|
||||
},
|
||||
{
|
||||
"probability":30,
|
||||
"effect_value": [50,50,50,50],
|
||||
"effect_round": [0]
|
||||
},
|
||||
{
|
||||
"probability":30,
|
||||
"effect_value": [50,50,50,50],
|
||||
"effect_round": [0]
|
||||
},
|
||||
{
|
||||
"probability":30,
|
||||
"effect_value": [50,50,50,50],
|
||||
"effect_round": [0]
|
||||
},
|
||||
{
|
||||
"probability":30,
|
||||
"effect_value": [50,50,50,50],
|
||||
"effect_round": [0]
|
||||
},
|
||||
{
|
||||
"probability":30,
|
||||
"effect_value": [50,50,50,50],
|
||||
"effect_round": [0]
|
||||
},
|
||||
{
|
||||
"probability":30,
|
||||
"effect_value": [50,50,50,50],
|
||||
"effect_round": [0]
|
||||
},
|
||||
{
|
||||
"probability":30,
|
||||
"effect_value": [50,50,50,50],
|
||||
"effect_round": [0]
|
||||
},
|
||||
{
|
||||
"probability":30,
|
||||
"effect_value": [50,50,50,50],
|
||||
"effect_round": [0]
|
||||
}
|
||||
]
|
||||
}
|
||||
90
data/conf/json/skill/skill_outline.json
Normal file
90
data/conf/json/skill/skill_outline.json
Normal file
@@ -0,0 +1,90 @@
|
||||
{
|
||||
"trigger_type": {
|
||||
"des": "触发类型",
|
||||
"list": [
|
||||
{
|
||||
"type": 1,
|
||||
"des": "主动"
|
||||
},
|
||||
{
|
||||
"type": 2,
|
||||
"des": "被动"
|
||||
},
|
||||
{
|
||||
"type": 3,
|
||||
"des": "追击"
|
||||
},
|
||||
{
|
||||
"type": 4,
|
||||
"des": "指挥"
|
||||
}
|
||||
]
|
||||
},
|
||||
"effect_type": {
|
||||
"des": "效果类型",
|
||||
"list": [
|
||||
{
|
||||
"type": 1,
|
||||
"des": "伤害率",
|
||||
"isRate": true
|
||||
},
|
||||
{
|
||||
"type": 2,
|
||||
"des": "攻击",
|
||||
"isRate": false
|
||||
},
|
||||
{
|
||||
"type": 3,
|
||||
"des": "防御",
|
||||
"isRate": false
|
||||
},
|
||||
{
|
||||
"type": 4,
|
||||
"des": "谋略",
|
||||
"isRate": false
|
||||
},
|
||||
{
|
||||
"type": 5,
|
||||
"des": "速度",
|
||||
"isRate": false
|
||||
}
|
||||
]
|
||||
},
|
||||
"target_type": {
|
||||
"des": "作用目标类型",
|
||||
"list": [
|
||||
{
|
||||
"type": 1,
|
||||
"des": "自己"
|
||||
},
|
||||
{
|
||||
"type": 2,
|
||||
"des": "我军单体"
|
||||
},
|
||||
{
|
||||
"type": 3,
|
||||
"des": "我军1-2个目标"
|
||||
},
|
||||
{
|
||||
"type": 4,
|
||||
"des": "我军全体"
|
||||
},
|
||||
{
|
||||
"type": 5,
|
||||
"des": "敌军单体"
|
||||
},
|
||||
{
|
||||
"type": 6,
|
||||
"des": "敌军1-2个目标"
|
||||
},
|
||||
{
|
||||
"type": 7,
|
||||
"des": "敌军2-3个目标"
|
||||
},
|
||||
{
|
||||
"type": 8,
|
||||
"des": "敌军全体"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
72
data/conf/json/skill/zhihui/fengshi.json
Normal file
72
data/conf/json/skill/zhihui/fengshi.json
Normal file
@@ -0,0 +1,72 @@
|
||||
{
|
||||
"cfgId": 401,
|
||||
"name": "锋矢",
|
||||
"trigger": 4,
|
||||
"target": 2,
|
||||
"des": "战斗中,使我军全体进行普通攻击的伤害提升%n%",
|
||||
"limit": 3,
|
||||
"arms": [
|
||||
2,
|
||||
5,
|
||||
8,
|
||||
3,
|
||||
6,
|
||||
9
|
||||
],
|
||||
|
||||
"include_effect": [
|
||||
1
|
||||
],
|
||||
"levels": [
|
||||
{
|
||||
"probability":30,
|
||||
"effect_value": [50],
|
||||
"effect_round": [0]
|
||||
},
|
||||
{
|
||||
"probability":30,
|
||||
"effect_value": [50],
|
||||
"effect_round": [0]
|
||||
},
|
||||
{
|
||||
"probability":30,
|
||||
"effect_value": [50],
|
||||
"effect_round": [0]
|
||||
},
|
||||
{
|
||||
"probability":30,
|
||||
"effect_value": [50],
|
||||
"effect_round": [0]
|
||||
},
|
||||
{
|
||||
"probability":30,
|
||||
"effect_value": [50],
|
||||
"effect_round": [0]
|
||||
},
|
||||
{
|
||||
"probability":30,
|
||||
"effect_value": [50],
|
||||
"effect_round": [0]
|
||||
},
|
||||
{
|
||||
"probability":30,
|
||||
"effect_value": [50],
|
||||
"effect_round": [0]
|
||||
},
|
||||
{
|
||||
"probability":30,
|
||||
"effect_value": [50],
|
||||
"effect_round": [0]
|
||||
},
|
||||
{
|
||||
"probability":30,
|
||||
"effect_value": [50],
|
||||
"effect_round": [0]
|
||||
},
|
||||
{
|
||||
"probability":30,
|
||||
"effect_value": [50],
|
||||
"effect_round": [0]
|
||||
}
|
||||
]
|
||||
}
|
||||
72
data/conf/json/skill/zhudong/tuji.json
Normal file
72
data/conf/json/skill/zhudong/tuji.json
Normal file
@@ -0,0 +1,72 @@
|
||||
{
|
||||
"cfgId": 101,
|
||||
"name": "突击",
|
||||
"trigger": 1,
|
||||
"target": 5,
|
||||
"des": "对敌军单体发动一次攻击(伤害率`%n%%`)",
|
||||
"limit": 3,
|
||||
"arms": [
|
||||
1,
|
||||
4,
|
||||
7,
|
||||
3,
|
||||
6,
|
||||
9
|
||||
],
|
||||
|
||||
"include_effect": [
|
||||
1
|
||||
],
|
||||
"levels": [
|
||||
{
|
||||
"probability":30,
|
||||
"effect_value": [50],
|
||||
"effect_round": [0]
|
||||
},
|
||||
{
|
||||
"probability":30,
|
||||
"effect_value": [50],
|
||||
"effect_round": [0]
|
||||
},
|
||||
{
|
||||
"probability":30,
|
||||
"effect_value": [50],
|
||||
"effect_round": [0]
|
||||
},
|
||||
{
|
||||
"probability":30,
|
||||
"effect_value": [50],
|
||||
"effect_round": [0]
|
||||
},
|
||||
{
|
||||
"probability":30,
|
||||
"effect_value": [50],
|
||||
"effect_round": [0]
|
||||
},
|
||||
{
|
||||
"probability":30,
|
||||
"effect_value": [50],
|
||||
"effect_round": [0]
|
||||
},
|
||||
{
|
||||
"probability":30,
|
||||
"effect_value": [50],
|
||||
"effect_round": [0]
|
||||
},
|
||||
{
|
||||
"probability":30,
|
||||
"effect_value": [50],
|
||||
"effect_round": [0]
|
||||
},
|
||||
{
|
||||
"probability":30,
|
||||
"effect_value": [50],
|
||||
"effect_round": [0]
|
||||
},
|
||||
{
|
||||
"probability":30,
|
||||
"effect_value": [50],
|
||||
"effect_round": [0]
|
||||
}
|
||||
]
|
||||
}
|
||||
72
data/conf/json/skill/zhuiji/zhongzhan.json
Normal file
72
data/conf/json/skill/zhuiji/zhongzhan.json
Normal file
@@ -0,0 +1,72 @@
|
||||
{
|
||||
"cfgId": 301,
|
||||
"name": "重斩",
|
||||
"trigger": 3,
|
||||
"target": 5,
|
||||
"des": "普通攻击后,对攻击目标再次发动攻击(伤害率%n%%)",
|
||||
"limit": 3,
|
||||
"arms": [
|
||||
1,
|
||||
4,
|
||||
7,
|
||||
3,
|
||||
6,
|
||||
9
|
||||
],
|
||||
|
||||
"include_effect": [
|
||||
1
|
||||
],
|
||||
"levels": [
|
||||
{
|
||||
"probability":30,
|
||||
"effect_value": [50],
|
||||
"effect_round": [0]
|
||||
},
|
||||
{
|
||||
"probability":30,
|
||||
"effect_value": [50],
|
||||
"effect_round": [0]
|
||||
},
|
||||
{
|
||||
"probability":30,
|
||||
"effect_value": [50],
|
||||
"effect_round": [0]
|
||||
},
|
||||
{
|
||||
"probability":30,
|
||||
"effect_value": [50],
|
||||
"effect_round": [0]
|
||||
},
|
||||
{
|
||||
"probability":30,
|
||||
"effect_value": [50],
|
||||
"effect_round": [0]
|
||||
},
|
||||
{
|
||||
"probability":30,
|
||||
"effect_value": [50],
|
||||
"effect_round": [0]
|
||||
},
|
||||
{
|
||||
"probability":30,
|
||||
"effect_value": [50],
|
||||
"effect_round": [0]
|
||||
},
|
||||
{
|
||||
"probability":30,
|
||||
"effect_value": [50],
|
||||
"effect_round": [0]
|
||||
},
|
||||
{
|
||||
"probability":30,
|
||||
"effect_value": [50],
|
||||
"effect_round": [0]
|
||||
},
|
||||
{
|
||||
"probability":30,
|
||||
"effect_value": [50],
|
||||
"effect_round": [0]
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user