feat: add initial Pokémon map data and loader
- Introduced a new JSON file `map_pokemon_v1.json` containing detailed city data for the Pokémon map, including attributes like population, agriculture, commerce, and connections. - Implemented a map loader in `mapLoader.ts` to read and parse map definitions from JSON files, allowing for dynamic loading of map data. - Created a script `generate-map-data.mjs` to convert legacy PHP map data into the new JSON format, ensuring compatibility with the updated map system.
This commit is contained in:
@@ -0,0 +1,2968 @@
|
||||
{
|
||||
"id": "chess",
|
||||
"name": "chess",
|
||||
"cities": [
|
||||
{
|
||||
"id": 1,
|
||||
"name": "A1",
|
||||
"level": 6,
|
||||
"region": 3,
|
||||
"position": {
|
||||
"x": 350.2,
|
||||
"y": 420.2
|
||||
},
|
||||
"connections": [
|
||||
9,
|
||||
2,
|
||||
10
|
||||
],
|
||||
"max": {
|
||||
"population": 800000,
|
||||
"agriculture": 8000,
|
||||
"commerce": 8000,
|
||||
"security": 8000,
|
||||
"defence": 8000,
|
||||
"wall": 8000
|
||||
},
|
||||
"initial": {
|
||||
"population": 100000,
|
||||
"agriculture": 1000,
|
||||
"commerce": 1000,
|
||||
"security": 1000,
|
||||
"defence": 3000,
|
||||
"wall": 3000
|
||||
},
|
||||
"meta": {
|
||||
"source": "legacy",
|
||||
"connectionNames": [
|
||||
"A2",
|
||||
"B1",
|
||||
"B2"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"name": "B1",
|
||||
"level": 6,
|
||||
"region": 4,
|
||||
"position": {
|
||||
"x": 392.7,
|
||||
"y": 395.6
|
||||
},
|
||||
"connections": [
|
||||
1,
|
||||
9,
|
||||
10,
|
||||
3,
|
||||
11
|
||||
],
|
||||
"max": {
|
||||
"population": 800000,
|
||||
"agriculture": 8000,
|
||||
"commerce": 8000,
|
||||
"security": 8000,
|
||||
"defence": 8000,
|
||||
"wall": 8000
|
||||
},
|
||||
"initial": {
|
||||
"population": 100000,
|
||||
"agriculture": 1000,
|
||||
"commerce": 1000,
|
||||
"security": 1000,
|
||||
"defence": 3000,
|
||||
"wall": 3000
|
||||
},
|
||||
"meta": {
|
||||
"source": "legacy",
|
||||
"connectionNames": [
|
||||
"A1",
|
||||
"A2",
|
||||
"B2",
|
||||
"C1",
|
||||
"C2"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"name": "C1",
|
||||
"level": 6,
|
||||
"region": 5,
|
||||
"position": {
|
||||
"x": 435.2,
|
||||
"y": 371.1
|
||||
},
|
||||
"connections": [
|
||||
2,
|
||||
10,
|
||||
11,
|
||||
4,
|
||||
12
|
||||
],
|
||||
"max": {
|
||||
"population": 800000,
|
||||
"agriculture": 8000,
|
||||
"commerce": 8000,
|
||||
"security": 8000,
|
||||
"defence": 8000,
|
||||
"wall": 8000
|
||||
},
|
||||
"initial": {
|
||||
"population": 100000,
|
||||
"agriculture": 1000,
|
||||
"commerce": 1000,
|
||||
"security": 1000,
|
||||
"defence": 3000,
|
||||
"wall": 3000
|
||||
},
|
||||
"meta": {
|
||||
"source": "legacy",
|
||||
"connectionNames": [
|
||||
"B1",
|
||||
"B2",
|
||||
"C2",
|
||||
"D1",
|
||||
"D2"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"name": "D1",
|
||||
"level": 8,
|
||||
"region": 1,
|
||||
"position": {
|
||||
"x": 477.7,
|
||||
"y": 346.5
|
||||
},
|
||||
"connections": [
|
||||
3,
|
||||
11,
|
||||
12,
|
||||
5,
|
||||
13
|
||||
],
|
||||
"max": {
|
||||
"population": 1200000,
|
||||
"agriculture": 12000,
|
||||
"commerce": 12000,
|
||||
"security": 12000,
|
||||
"defence": 12000,
|
||||
"wall": 12000
|
||||
},
|
||||
"initial": {
|
||||
"population": 150000,
|
||||
"agriculture": 1000,
|
||||
"commerce": 1000,
|
||||
"security": 1000,
|
||||
"defence": 5000,
|
||||
"wall": 5000
|
||||
},
|
||||
"meta": {
|
||||
"source": "legacy",
|
||||
"connectionNames": [
|
||||
"C1",
|
||||
"C2",
|
||||
"D2",
|
||||
"E1",
|
||||
"E2"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"name": "E1",
|
||||
"level": 7,
|
||||
"region": 2,
|
||||
"position": {
|
||||
"x": 520.2,
|
||||
"y": 322
|
||||
},
|
||||
"connections": [
|
||||
4,
|
||||
12,
|
||||
13,
|
||||
6,
|
||||
14
|
||||
],
|
||||
"max": {
|
||||
"population": 1000000,
|
||||
"agriculture": 10000,
|
||||
"commerce": 10000,
|
||||
"security": 10000,
|
||||
"defence": 10000,
|
||||
"wall": 10000
|
||||
},
|
||||
"initial": {
|
||||
"population": 150000,
|
||||
"agriculture": 1000,
|
||||
"commerce": 1000,
|
||||
"security": 1000,
|
||||
"defence": 4000,
|
||||
"wall": 4000
|
||||
},
|
||||
"meta": {
|
||||
"source": "legacy",
|
||||
"connectionNames": [
|
||||
"D1",
|
||||
"D2",
|
||||
"E2",
|
||||
"F1",
|
||||
"F2"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"name": "F1",
|
||||
"level": 6,
|
||||
"region": 5,
|
||||
"position": {
|
||||
"x": 562.7,
|
||||
"y": 297.5
|
||||
},
|
||||
"connections": [
|
||||
5,
|
||||
13,
|
||||
14,
|
||||
7,
|
||||
15
|
||||
],
|
||||
"max": {
|
||||
"population": 800000,
|
||||
"agriculture": 8000,
|
||||
"commerce": 8000,
|
||||
"security": 8000,
|
||||
"defence": 8000,
|
||||
"wall": 8000
|
||||
},
|
||||
"initial": {
|
||||
"population": 100000,
|
||||
"agriculture": 1000,
|
||||
"commerce": 1000,
|
||||
"security": 1000,
|
||||
"defence": 3000,
|
||||
"wall": 3000
|
||||
},
|
||||
"meta": {
|
||||
"source": "legacy",
|
||||
"connectionNames": [
|
||||
"E1",
|
||||
"E2",
|
||||
"F2",
|
||||
"G1",
|
||||
"G2"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"name": "G1",
|
||||
"level": 6,
|
||||
"region": 4,
|
||||
"position": {
|
||||
"x": 605.2,
|
||||
"y": 272.9
|
||||
},
|
||||
"connections": [
|
||||
6,
|
||||
14,
|
||||
15,
|
||||
8,
|
||||
16
|
||||
],
|
||||
"max": {
|
||||
"population": 800000,
|
||||
"agriculture": 8000,
|
||||
"commerce": 8000,
|
||||
"security": 8000,
|
||||
"defence": 8000,
|
||||
"wall": 8000
|
||||
},
|
||||
"initial": {
|
||||
"population": 100000,
|
||||
"agriculture": 1000,
|
||||
"commerce": 1000,
|
||||
"security": 1000,
|
||||
"defence": 3000,
|
||||
"wall": 3000
|
||||
},
|
||||
"meta": {
|
||||
"source": "legacy",
|
||||
"connectionNames": [
|
||||
"F1",
|
||||
"F2",
|
||||
"G2",
|
||||
"H1",
|
||||
"H2"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"name": "H1",
|
||||
"level": 6,
|
||||
"region": 3,
|
||||
"position": {
|
||||
"x": 647.7,
|
||||
"y": 248.4
|
||||
},
|
||||
"connections": [
|
||||
7,
|
||||
15,
|
||||
16
|
||||
],
|
||||
"max": {
|
||||
"population": 800000,
|
||||
"agriculture": 8000,
|
||||
"commerce": 8000,
|
||||
"security": 8000,
|
||||
"defence": 8000,
|
||||
"wall": 8000
|
||||
},
|
||||
"initial": {
|
||||
"population": 100000,
|
||||
"agriculture": 1000,
|
||||
"commerce": 1000,
|
||||
"security": 1000,
|
||||
"defence": 3000,
|
||||
"wall": 3000
|
||||
},
|
||||
"meta": {
|
||||
"source": "legacy",
|
||||
"connectionNames": [
|
||||
"G1",
|
||||
"G2",
|
||||
"H2"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"name": "A2",
|
||||
"level": 5,
|
||||
"region": 6,
|
||||
"position": {
|
||||
"x": 307.7,
|
||||
"y": 395.6
|
||||
},
|
||||
"connections": [
|
||||
1,
|
||||
17,
|
||||
2,
|
||||
10,
|
||||
18
|
||||
],
|
||||
"max": {
|
||||
"population": 600000,
|
||||
"agriculture": 6000,
|
||||
"commerce": 6000,
|
||||
"security": 6000,
|
||||
"defence": 6000,
|
||||
"wall": 6000
|
||||
},
|
||||
"initial": {
|
||||
"population": 100000,
|
||||
"agriculture": 1000,
|
||||
"commerce": 1000,
|
||||
"security": 1000,
|
||||
"defence": 2000,
|
||||
"wall": 2000
|
||||
},
|
||||
"meta": {
|
||||
"source": "legacy",
|
||||
"connectionNames": [
|
||||
"A1",
|
||||
"A3",
|
||||
"B1",
|
||||
"B2",
|
||||
"B3"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 10,
|
||||
"name": "B2",
|
||||
"level": 5,
|
||||
"region": 6,
|
||||
"position": {
|
||||
"x": 350.2,
|
||||
"y": 371.1
|
||||
},
|
||||
"connections": [
|
||||
1,
|
||||
9,
|
||||
17,
|
||||
2,
|
||||
18,
|
||||
3,
|
||||
11,
|
||||
19
|
||||
],
|
||||
"max": {
|
||||
"population": 600000,
|
||||
"agriculture": 6000,
|
||||
"commerce": 6000,
|
||||
"security": 6000,
|
||||
"defence": 6000,
|
||||
"wall": 6000
|
||||
},
|
||||
"initial": {
|
||||
"population": 100000,
|
||||
"agriculture": 1000,
|
||||
"commerce": 1000,
|
||||
"security": 1000,
|
||||
"defence": 2000,
|
||||
"wall": 2000
|
||||
},
|
||||
"meta": {
|
||||
"source": "legacy",
|
||||
"connectionNames": [
|
||||
"A1",
|
||||
"A2",
|
||||
"A3",
|
||||
"B1",
|
||||
"B3",
|
||||
"C1",
|
||||
"C2",
|
||||
"C3"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 11,
|
||||
"name": "C2",
|
||||
"level": 5,
|
||||
"region": 6,
|
||||
"position": {
|
||||
"x": 392.7,
|
||||
"y": 346.5
|
||||
},
|
||||
"connections": [
|
||||
2,
|
||||
10,
|
||||
18,
|
||||
3,
|
||||
19,
|
||||
4,
|
||||
12,
|
||||
20
|
||||
],
|
||||
"max": {
|
||||
"population": 600000,
|
||||
"agriculture": 6000,
|
||||
"commerce": 6000,
|
||||
"security": 6000,
|
||||
"defence": 6000,
|
||||
"wall": 6000
|
||||
},
|
||||
"initial": {
|
||||
"population": 100000,
|
||||
"agriculture": 1000,
|
||||
"commerce": 1000,
|
||||
"security": 1000,
|
||||
"defence": 2000,
|
||||
"wall": 2000
|
||||
},
|
||||
"meta": {
|
||||
"source": "legacy",
|
||||
"connectionNames": [
|
||||
"B1",
|
||||
"B2",
|
||||
"B3",
|
||||
"C1",
|
||||
"C3",
|
||||
"D1",
|
||||
"D2",
|
||||
"D3"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 12,
|
||||
"name": "D2",
|
||||
"level": 5,
|
||||
"region": 6,
|
||||
"position": {
|
||||
"x": 435.2,
|
||||
"y": 322
|
||||
},
|
||||
"connections": [
|
||||
3,
|
||||
11,
|
||||
19,
|
||||
4,
|
||||
20,
|
||||
5,
|
||||
13,
|
||||
21
|
||||
],
|
||||
"max": {
|
||||
"population": 600000,
|
||||
"agriculture": 6000,
|
||||
"commerce": 6000,
|
||||
"security": 6000,
|
||||
"defence": 6000,
|
||||
"wall": 6000
|
||||
},
|
||||
"initial": {
|
||||
"population": 100000,
|
||||
"agriculture": 1000,
|
||||
"commerce": 1000,
|
||||
"security": 1000,
|
||||
"defence": 2000,
|
||||
"wall": 2000
|
||||
},
|
||||
"meta": {
|
||||
"source": "legacy",
|
||||
"connectionNames": [
|
||||
"C1",
|
||||
"C2",
|
||||
"C3",
|
||||
"D1",
|
||||
"D3",
|
||||
"E1",
|
||||
"E2",
|
||||
"E3"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 13,
|
||||
"name": "E2",
|
||||
"level": 5,
|
||||
"region": 6,
|
||||
"position": {
|
||||
"x": 477.7,
|
||||
"y": 297.5
|
||||
},
|
||||
"connections": [
|
||||
4,
|
||||
12,
|
||||
20,
|
||||
5,
|
||||
21,
|
||||
6,
|
||||
14,
|
||||
22
|
||||
],
|
||||
"max": {
|
||||
"population": 600000,
|
||||
"agriculture": 6000,
|
||||
"commerce": 6000,
|
||||
"security": 6000,
|
||||
"defence": 6000,
|
||||
"wall": 6000
|
||||
},
|
||||
"initial": {
|
||||
"population": 100000,
|
||||
"agriculture": 1000,
|
||||
"commerce": 1000,
|
||||
"security": 1000,
|
||||
"defence": 2000,
|
||||
"wall": 2000
|
||||
},
|
||||
"meta": {
|
||||
"source": "legacy",
|
||||
"connectionNames": [
|
||||
"D1",
|
||||
"D2",
|
||||
"D3",
|
||||
"E1",
|
||||
"E3",
|
||||
"F1",
|
||||
"F2",
|
||||
"F3"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 14,
|
||||
"name": "F2",
|
||||
"level": 5,
|
||||
"region": 6,
|
||||
"position": {
|
||||
"x": 520.2,
|
||||
"y": 272.9
|
||||
},
|
||||
"connections": [
|
||||
5,
|
||||
13,
|
||||
21,
|
||||
6,
|
||||
22,
|
||||
7,
|
||||
15,
|
||||
23
|
||||
],
|
||||
"max": {
|
||||
"population": 600000,
|
||||
"agriculture": 6000,
|
||||
"commerce": 6000,
|
||||
"security": 6000,
|
||||
"defence": 6000,
|
||||
"wall": 6000
|
||||
},
|
||||
"initial": {
|
||||
"population": 100000,
|
||||
"agriculture": 1000,
|
||||
"commerce": 1000,
|
||||
"security": 1000,
|
||||
"defence": 2000,
|
||||
"wall": 2000
|
||||
},
|
||||
"meta": {
|
||||
"source": "legacy",
|
||||
"connectionNames": [
|
||||
"E1",
|
||||
"E2",
|
||||
"E3",
|
||||
"F1",
|
||||
"F3",
|
||||
"G1",
|
||||
"G2",
|
||||
"G3"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 15,
|
||||
"name": "G2",
|
||||
"level": 5,
|
||||
"region": 6,
|
||||
"position": {
|
||||
"x": 562.7,
|
||||
"y": 248.4
|
||||
},
|
||||
"connections": [
|
||||
6,
|
||||
14,
|
||||
22,
|
||||
7,
|
||||
23,
|
||||
8,
|
||||
16,
|
||||
24
|
||||
],
|
||||
"max": {
|
||||
"population": 600000,
|
||||
"agriculture": 6000,
|
||||
"commerce": 6000,
|
||||
"security": 6000,
|
||||
"defence": 6000,
|
||||
"wall": 6000
|
||||
},
|
||||
"initial": {
|
||||
"population": 100000,
|
||||
"agriculture": 1000,
|
||||
"commerce": 1000,
|
||||
"security": 1000,
|
||||
"defence": 2000,
|
||||
"wall": 2000
|
||||
},
|
||||
"meta": {
|
||||
"source": "legacy",
|
||||
"connectionNames": [
|
||||
"F1",
|
||||
"F2",
|
||||
"F3",
|
||||
"G1",
|
||||
"G3",
|
||||
"H1",
|
||||
"H2",
|
||||
"H3"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 16,
|
||||
"name": "H2",
|
||||
"level": 5,
|
||||
"region": 6,
|
||||
"position": {
|
||||
"x": 605.2,
|
||||
"y": 223.8
|
||||
},
|
||||
"connections": [
|
||||
7,
|
||||
15,
|
||||
23,
|
||||
8,
|
||||
24
|
||||
],
|
||||
"max": {
|
||||
"population": 600000,
|
||||
"agriculture": 6000,
|
||||
"commerce": 6000,
|
||||
"security": 6000,
|
||||
"defence": 6000,
|
||||
"wall": 6000
|
||||
},
|
||||
"initial": {
|
||||
"population": 100000,
|
||||
"agriculture": 1000,
|
||||
"commerce": 1000,
|
||||
"security": 1000,
|
||||
"defence": 2000,
|
||||
"wall": 2000
|
||||
},
|
||||
"meta": {
|
||||
"source": "legacy",
|
||||
"connectionNames": [
|
||||
"G1",
|
||||
"G2",
|
||||
"G3",
|
||||
"H1",
|
||||
"H3"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 17,
|
||||
"name": "A3",
|
||||
"level": 2,
|
||||
"region": 7,
|
||||
"position": {
|
||||
"x": 265.2,
|
||||
"y": 371.1
|
||||
},
|
||||
"connections": [
|
||||
9,
|
||||
25,
|
||||
10,
|
||||
18,
|
||||
26
|
||||
],
|
||||
"max": {
|
||||
"population": 400000,
|
||||
"agriculture": 4000,
|
||||
"commerce": 4000,
|
||||
"security": 4000,
|
||||
"defence": 4000,
|
||||
"wall": 4000
|
||||
},
|
||||
"initial": {
|
||||
"population": 5000,
|
||||
"agriculture": 100,
|
||||
"commerce": 100,
|
||||
"security": 100,
|
||||
"defence": 500,
|
||||
"wall": 500
|
||||
},
|
||||
"meta": {
|
||||
"source": "legacy",
|
||||
"connectionNames": [
|
||||
"A2",
|
||||
"A4",
|
||||
"B2",
|
||||
"B3",
|
||||
"B4"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 18,
|
||||
"name": "B3",
|
||||
"level": 1,
|
||||
"region": 7,
|
||||
"position": {
|
||||
"x": 307.7,
|
||||
"y": 346.5
|
||||
},
|
||||
"connections": [
|
||||
9,
|
||||
17,
|
||||
25,
|
||||
10,
|
||||
26,
|
||||
11,
|
||||
19,
|
||||
27
|
||||
],
|
||||
"max": {
|
||||
"population": 400000,
|
||||
"agriculture": 4000,
|
||||
"commerce": 4000,
|
||||
"security": 4000,
|
||||
"defence": 4000,
|
||||
"wall": 4000
|
||||
},
|
||||
"initial": {
|
||||
"population": 5000,
|
||||
"agriculture": 100,
|
||||
"commerce": 100,
|
||||
"security": 100,
|
||||
"defence": 500,
|
||||
"wall": 500
|
||||
},
|
||||
"meta": {
|
||||
"source": "legacy",
|
||||
"connectionNames": [
|
||||
"A2",
|
||||
"A3",
|
||||
"A4",
|
||||
"B2",
|
||||
"B4",
|
||||
"C2",
|
||||
"C3",
|
||||
"C4"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 19,
|
||||
"name": "C3",
|
||||
"level": 2,
|
||||
"region": 7,
|
||||
"position": {
|
||||
"x": 350.2,
|
||||
"y": 322
|
||||
},
|
||||
"connections": [
|
||||
10,
|
||||
18,
|
||||
26,
|
||||
11,
|
||||
27,
|
||||
12,
|
||||
20,
|
||||
28
|
||||
],
|
||||
"max": {
|
||||
"population": 400000,
|
||||
"agriculture": 4000,
|
||||
"commerce": 4000,
|
||||
"security": 4000,
|
||||
"defence": 4000,
|
||||
"wall": 4000
|
||||
},
|
||||
"initial": {
|
||||
"population": 5000,
|
||||
"agriculture": 100,
|
||||
"commerce": 100,
|
||||
"security": 100,
|
||||
"defence": 500,
|
||||
"wall": 500
|
||||
},
|
||||
"meta": {
|
||||
"source": "legacy",
|
||||
"connectionNames": [
|
||||
"B2",
|
||||
"B3",
|
||||
"B4",
|
||||
"C2",
|
||||
"C4",
|
||||
"D2",
|
||||
"D3",
|
||||
"D4"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 20,
|
||||
"name": "D3",
|
||||
"level": 1,
|
||||
"region": 7,
|
||||
"position": {
|
||||
"x": 392.7,
|
||||
"y": 297.5
|
||||
},
|
||||
"connections": [
|
||||
11,
|
||||
19,
|
||||
27,
|
||||
12,
|
||||
28,
|
||||
13,
|
||||
21,
|
||||
29
|
||||
],
|
||||
"max": {
|
||||
"population": 400000,
|
||||
"agriculture": 4000,
|
||||
"commerce": 4000,
|
||||
"security": 4000,
|
||||
"defence": 4000,
|
||||
"wall": 4000
|
||||
},
|
||||
"initial": {
|
||||
"population": 5000,
|
||||
"agriculture": 100,
|
||||
"commerce": 100,
|
||||
"security": 100,
|
||||
"defence": 500,
|
||||
"wall": 500
|
||||
},
|
||||
"meta": {
|
||||
"source": "legacy",
|
||||
"connectionNames": [
|
||||
"C2",
|
||||
"C3",
|
||||
"C4",
|
||||
"D2",
|
||||
"D4",
|
||||
"E2",
|
||||
"E3",
|
||||
"E4"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 21,
|
||||
"name": "E3",
|
||||
"level": 2,
|
||||
"region": 7,
|
||||
"position": {
|
||||
"x": 435.2,
|
||||
"y": 272.9
|
||||
},
|
||||
"connections": [
|
||||
12,
|
||||
20,
|
||||
28,
|
||||
13,
|
||||
29,
|
||||
14,
|
||||
22,
|
||||
30
|
||||
],
|
||||
"max": {
|
||||
"population": 400000,
|
||||
"agriculture": 4000,
|
||||
"commerce": 4000,
|
||||
"security": 4000,
|
||||
"defence": 4000,
|
||||
"wall": 4000
|
||||
},
|
||||
"initial": {
|
||||
"population": 5000,
|
||||
"agriculture": 100,
|
||||
"commerce": 100,
|
||||
"security": 100,
|
||||
"defence": 500,
|
||||
"wall": 500
|
||||
},
|
||||
"meta": {
|
||||
"source": "legacy",
|
||||
"connectionNames": [
|
||||
"D2",
|
||||
"D3",
|
||||
"D4",
|
||||
"E2",
|
||||
"E4",
|
||||
"F2",
|
||||
"F3",
|
||||
"F4"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 22,
|
||||
"name": "F3",
|
||||
"level": 1,
|
||||
"region": 7,
|
||||
"position": {
|
||||
"x": 477.7,
|
||||
"y": 248.4
|
||||
},
|
||||
"connections": [
|
||||
13,
|
||||
21,
|
||||
29,
|
||||
14,
|
||||
30,
|
||||
15,
|
||||
23,
|
||||
31
|
||||
],
|
||||
"max": {
|
||||
"population": 400000,
|
||||
"agriculture": 4000,
|
||||
"commerce": 4000,
|
||||
"security": 4000,
|
||||
"defence": 4000,
|
||||
"wall": 4000
|
||||
},
|
||||
"initial": {
|
||||
"population": 5000,
|
||||
"agriculture": 100,
|
||||
"commerce": 100,
|
||||
"security": 100,
|
||||
"defence": 500,
|
||||
"wall": 500
|
||||
},
|
||||
"meta": {
|
||||
"source": "legacy",
|
||||
"connectionNames": [
|
||||
"E2",
|
||||
"E3",
|
||||
"E4",
|
||||
"F2",
|
||||
"F4",
|
||||
"G2",
|
||||
"G3",
|
||||
"G4"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 23,
|
||||
"name": "G3",
|
||||
"level": 2,
|
||||
"region": 7,
|
||||
"position": {
|
||||
"x": 520.2,
|
||||
"y": 223.8
|
||||
},
|
||||
"connections": [
|
||||
14,
|
||||
22,
|
||||
30,
|
||||
15,
|
||||
31,
|
||||
16,
|
||||
24,
|
||||
32
|
||||
],
|
||||
"max": {
|
||||
"population": 400000,
|
||||
"agriculture": 4000,
|
||||
"commerce": 4000,
|
||||
"security": 4000,
|
||||
"defence": 4000,
|
||||
"wall": 4000
|
||||
},
|
||||
"initial": {
|
||||
"population": 5000,
|
||||
"agriculture": 100,
|
||||
"commerce": 100,
|
||||
"security": 100,
|
||||
"defence": 500,
|
||||
"wall": 500
|
||||
},
|
||||
"meta": {
|
||||
"source": "legacy",
|
||||
"connectionNames": [
|
||||
"F2",
|
||||
"F3",
|
||||
"F4",
|
||||
"G2",
|
||||
"G4",
|
||||
"H2",
|
||||
"H3",
|
||||
"H4"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 24,
|
||||
"name": "H3",
|
||||
"level": 1,
|
||||
"region": 7,
|
||||
"position": {
|
||||
"x": 562.7,
|
||||
"y": 199.3
|
||||
},
|
||||
"connections": [
|
||||
15,
|
||||
23,
|
||||
31,
|
||||
16,
|
||||
32
|
||||
],
|
||||
"max": {
|
||||
"population": 400000,
|
||||
"agriculture": 4000,
|
||||
"commerce": 4000,
|
||||
"security": 4000,
|
||||
"defence": 4000,
|
||||
"wall": 4000
|
||||
},
|
||||
"initial": {
|
||||
"population": 5000,
|
||||
"agriculture": 100,
|
||||
"commerce": 100,
|
||||
"security": 100,
|
||||
"defence": 500,
|
||||
"wall": 500
|
||||
},
|
||||
"meta": {
|
||||
"source": "legacy",
|
||||
"connectionNames": [
|
||||
"G2",
|
||||
"G3",
|
||||
"G4",
|
||||
"H2",
|
||||
"H4"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 25,
|
||||
"name": "A4",
|
||||
"level": 1,
|
||||
"region": 7,
|
||||
"position": {
|
||||
"x": 222.7,
|
||||
"y": 346.5
|
||||
},
|
||||
"connections": [
|
||||
17,
|
||||
33,
|
||||
18,
|
||||
26,
|
||||
34
|
||||
],
|
||||
"max": {
|
||||
"population": 400000,
|
||||
"agriculture": 4000,
|
||||
"commerce": 4000,
|
||||
"security": 4000,
|
||||
"defence": 4000,
|
||||
"wall": 4000
|
||||
},
|
||||
"initial": {
|
||||
"population": 5000,
|
||||
"agriculture": 100,
|
||||
"commerce": 100,
|
||||
"security": 100,
|
||||
"defence": 500,
|
||||
"wall": 500
|
||||
},
|
||||
"meta": {
|
||||
"source": "legacy",
|
||||
"connectionNames": [
|
||||
"A3",
|
||||
"A5",
|
||||
"B3",
|
||||
"B4",
|
||||
"B5"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 26,
|
||||
"name": "B4",
|
||||
"level": 2,
|
||||
"region": 7,
|
||||
"position": {
|
||||
"x": 265.2,
|
||||
"y": 322
|
||||
},
|
||||
"connections": [
|
||||
17,
|
||||
25,
|
||||
33,
|
||||
18,
|
||||
34,
|
||||
19,
|
||||
27,
|
||||
35
|
||||
],
|
||||
"max": {
|
||||
"population": 400000,
|
||||
"agriculture": 4000,
|
||||
"commerce": 4000,
|
||||
"security": 4000,
|
||||
"defence": 4000,
|
||||
"wall": 4000
|
||||
},
|
||||
"initial": {
|
||||
"population": 5000,
|
||||
"agriculture": 100,
|
||||
"commerce": 100,
|
||||
"security": 100,
|
||||
"defence": 500,
|
||||
"wall": 500
|
||||
},
|
||||
"meta": {
|
||||
"source": "legacy",
|
||||
"connectionNames": [
|
||||
"A3",
|
||||
"A4",
|
||||
"A5",
|
||||
"B3",
|
||||
"B5",
|
||||
"C3",
|
||||
"C4",
|
||||
"C5"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 27,
|
||||
"name": "C4",
|
||||
"level": 1,
|
||||
"region": 7,
|
||||
"position": {
|
||||
"x": 307.7,
|
||||
"y": 297.5
|
||||
},
|
||||
"connections": [
|
||||
18,
|
||||
26,
|
||||
34,
|
||||
19,
|
||||
35,
|
||||
20,
|
||||
28,
|
||||
36
|
||||
],
|
||||
"max": {
|
||||
"population": 400000,
|
||||
"agriculture": 4000,
|
||||
"commerce": 4000,
|
||||
"security": 4000,
|
||||
"defence": 4000,
|
||||
"wall": 4000
|
||||
},
|
||||
"initial": {
|
||||
"population": 5000,
|
||||
"agriculture": 100,
|
||||
"commerce": 100,
|
||||
"security": 100,
|
||||
"defence": 500,
|
||||
"wall": 500
|
||||
},
|
||||
"meta": {
|
||||
"source": "legacy",
|
||||
"connectionNames": [
|
||||
"B3",
|
||||
"B4",
|
||||
"B5",
|
||||
"C3",
|
||||
"C5",
|
||||
"D3",
|
||||
"D4",
|
||||
"D5"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 28,
|
||||
"name": "D4",
|
||||
"level": 2,
|
||||
"region": 7,
|
||||
"position": {
|
||||
"x": 350.2,
|
||||
"y": 272.9
|
||||
},
|
||||
"connections": [
|
||||
19,
|
||||
27,
|
||||
35,
|
||||
20,
|
||||
36,
|
||||
21,
|
||||
29,
|
||||
37
|
||||
],
|
||||
"max": {
|
||||
"population": 400000,
|
||||
"agriculture": 4000,
|
||||
"commerce": 4000,
|
||||
"security": 4000,
|
||||
"defence": 4000,
|
||||
"wall": 4000
|
||||
},
|
||||
"initial": {
|
||||
"population": 5000,
|
||||
"agriculture": 100,
|
||||
"commerce": 100,
|
||||
"security": 100,
|
||||
"defence": 500,
|
||||
"wall": 500
|
||||
},
|
||||
"meta": {
|
||||
"source": "legacy",
|
||||
"connectionNames": [
|
||||
"C3",
|
||||
"C4",
|
||||
"C5",
|
||||
"D3",
|
||||
"D5",
|
||||
"E3",
|
||||
"E4",
|
||||
"E5"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 29,
|
||||
"name": "E4",
|
||||
"level": 1,
|
||||
"region": 7,
|
||||
"position": {
|
||||
"x": 392.7,
|
||||
"y": 248.4
|
||||
},
|
||||
"connections": [
|
||||
20,
|
||||
28,
|
||||
36,
|
||||
21,
|
||||
37,
|
||||
22,
|
||||
30,
|
||||
38
|
||||
],
|
||||
"max": {
|
||||
"population": 400000,
|
||||
"agriculture": 4000,
|
||||
"commerce": 4000,
|
||||
"security": 4000,
|
||||
"defence": 4000,
|
||||
"wall": 4000
|
||||
},
|
||||
"initial": {
|
||||
"population": 5000,
|
||||
"agriculture": 100,
|
||||
"commerce": 100,
|
||||
"security": 100,
|
||||
"defence": 500,
|
||||
"wall": 500
|
||||
},
|
||||
"meta": {
|
||||
"source": "legacy",
|
||||
"connectionNames": [
|
||||
"D3",
|
||||
"D4",
|
||||
"D5",
|
||||
"E3",
|
||||
"E5",
|
||||
"F3",
|
||||
"F4",
|
||||
"F5"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 30,
|
||||
"name": "F4",
|
||||
"level": 2,
|
||||
"region": 7,
|
||||
"position": {
|
||||
"x": 435.2,
|
||||
"y": 223.8
|
||||
},
|
||||
"connections": [
|
||||
21,
|
||||
29,
|
||||
37,
|
||||
22,
|
||||
38,
|
||||
23,
|
||||
31,
|
||||
39
|
||||
],
|
||||
"max": {
|
||||
"population": 400000,
|
||||
"agriculture": 4000,
|
||||
"commerce": 4000,
|
||||
"security": 4000,
|
||||
"defence": 4000,
|
||||
"wall": 4000
|
||||
},
|
||||
"initial": {
|
||||
"population": 5000,
|
||||
"agriculture": 100,
|
||||
"commerce": 100,
|
||||
"security": 100,
|
||||
"defence": 500,
|
||||
"wall": 500
|
||||
},
|
||||
"meta": {
|
||||
"source": "legacy",
|
||||
"connectionNames": [
|
||||
"E3",
|
||||
"E4",
|
||||
"E5",
|
||||
"F3",
|
||||
"F5",
|
||||
"G3",
|
||||
"G4",
|
||||
"G5"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 31,
|
||||
"name": "G4",
|
||||
"level": 1,
|
||||
"region": 7,
|
||||
"position": {
|
||||
"x": 477.7,
|
||||
"y": 199.3
|
||||
},
|
||||
"connections": [
|
||||
22,
|
||||
30,
|
||||
38,
|
||||
23,
|
||||
39,
|
||||
24,
|
||||
32,
|
||||
40
|
||||
],
|
||||
"max": {
|
||||
"population": 400000,
|
||||
"agriculture": 4000,
|
||||
"commerce": 4000,
|
||||
"security": 4000,
|
||||
"defence": 4000,
|
||||
"wall": 4000
|
||||
},
|
||||
"initial": {
|
||||
"population": 5000,
|
||||
"agriculture": 100,
|
||||
"commerce": 100,
|
||||
"security": 100,
|
||||
"defence": 500,
|
||||
"wall": 500
|
||||
},
|
||||
"meta": {
|
||||
"source": "legacy",
|
||||
"connectionNames": [
|
||||
"F3",
|
||||
"F4",
|
||||
"F5",
|
||||
"G3",
|
||||
"G5",
|
||||
"H3",
|
||||
"H4",
|
||||
"H5"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 32,
|
||||
"name": "H4",
|
||||
"level": 2,
|
||||
"region": 7,
|
||||
"position": {
|
||||
"x": 520.2,
|
||||
"y": 174.8
|
||||
},
|
||||
"connections": [
|
||||
23,
|
||||
31,
|
||||
39,
|
||||
24,
|
||||
40
|
||||
],
|
||||
"max": {
|
||||
"population": 400000,
|
||||
"agriculture": 4000,
|
||||
"commerce": 4000,
|
||||
"security": 4000,
|
||||
"defence": 4000,
|
||||
"wall": 4000
|
||||
},
|
||||
"initial": {
|
||||
"population": 5000,
|
||||
"agriculture": 100,
|
||||
"commerce": 100,
|
||||
"security": 100,
|
||||
"defence": 500,
|
||||
"wall": 500
|
||||
},
|
||||
"meta": {
|
||||
"source": "legacy",
|
||||
"connectionNames": [
|
||||
"G3",
|
||||
"G4",
|
||||
"G5",
|
||||
"H3",
|
||||
"H5"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 33,
|
||||
"name": "A5",
|
||||
"level": 2,
|
||||
"region": 7,
|
||||
"position": {
|
||||
"x": 180.2,
|
||||
"y": 322
|
||||
},
|
||||
"connections": [
|
||||
25,
|
||||
41,
|
||||
26,
|
||||
34,
|
||||
42
|
||||
],
|
||||
"max": {
|
||||
"population": 400000,
|
||||
"agriculture": 4000,
|
||||
"commerce": 4000,
|
||||
"security": 4000,
|
||||
"defence": 4000,
|
||||
"wall": 4000
|
||||
},
|
||||
"initial": {
|
||||
"population": 5000,
|
||||
"agriculture": 100,
|
||||
"commerce": 100,
|
||||
"security": 100,
|
||||
"defence": 500,
|
||||
"wall": 500
|
||||
},
|
||||
"meta": {
|
||||
"source": "legacy",
|
||||
"connectionNames": [
|
||||
"A4",
|
||||
"A6",
|
||||
"B4",
|
||||
"B5",
|
||||
"B6"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 34,
|
||||
"name": "B5",
|
||||
"level": 1,
|
||||
"region": 7,
|
||||
"position": {
|
||||
"x": 222.7,
|
||||
"y": 297.5
|
||||
},
|
||||
"connections": [
|
||||
25,
|
||||
33,
|
||||
41,
|
||||
26,
|
||||
42,
|
||||
27,
|
||||
35,
|
||||
43
|
||||
],
|
||||
"max": {
|
||||
"population": 400000,
|
||||
"agriculture": 4000,
|
||||
"commerce": 4000,
|
||||
"security": 4000,
|
||||
"defence": 4000,
|
||||
"wall": 4000
|
||||
},
|
||||
"initial": {
|
||||
"population": 5000,
|
||||
"agriculture": 100,
|
||||
"commerce": 100,
|
||||
"security": 100,
|
||||
"defence": 500,
|
||||
"wall": 500
|
||||
},
|
||||
"meta": {
|
||||
"source": "legacy",
|
||||
"connectionNames": [
|
||||
"A4",
|
||||
"A5",
|
||||
"A6",
|
||||
"B4",
|
||||
"B6",
|
||||
"C4",
|
||||
"C5",
|
||||
"C6"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 35,
|
||||
"name": "C5",
|
||||
"level": 2,
|
||||
"region": 7,
|
||||
"position": {
|
||||
"x": 265.2,
|
||||
"y": 272.9
|
||||
},
|
||||
"connections": [
|
||||
26,
|
||||
34,
|
||||
42,
|
||||
27,
|
||||
43,
|
||||
28,
|
||||
36,
|
||||
44
|
||||
],
|
||||
"max": {
|
||||
"population": 400000,
|
||||
"agriculture": 4000,
|
||||
"commerce": 4000,
|
||||
"security": 4000,
|
||||
"defence": 4000,
|
||||
"wall": 4000
|
||||
},
|
||||
"initial": {
|
||||
"population": 5000,
|
||||
"agriculture": 100,
|
||||
"commerce": 100,
|
||||
"security": 100,
|
||||
"defence": 500,
|
||||
"wall": 500
|
||||
},
|
||||
"meta": {
|
||||
"source": "legacy",
|
||||
"connectionNames": [
|
||||
"B4",
|
||||
"B5",
|
||||
"B6",
|
||||
"C4",
|
||||
"C6",
|
||||
"D4",
|
||||
"D5",
|
||||
"D6"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 36,
|
||||
"name": "D5",
|
||||
"level": 1,
|
||||
"region": 7,
|
||||
"position": {
|
||||
"x": 307.7,
|
||||
"y": 248.4
|
||||
},
|
||||
"connections": [
|
||||
27,
|
||||
35,
|
||||
43,
|
||||
28,
|
||||
44,
|
||||
29,
|
||||
37,
|
||||
45
|
||||
],
|
||||
"max": {
|
||||
"population": 400000,
|
||||
"agriculture": 4000,
|
||||
"commerce": 4000,
|
||||
"security": 4000,
|
||||
"defence": 4000,
|
||||
"wall": 4000
|
||||
},
|
||||
"initial": {
|
||||
"population": 5000,
|
||||
"agriculture": 100,
|
||||
"commerce": 100,
|
||||
"security": 100,
|
||||
"defence": 500,
|
||||
"wall": 500
|
||||
},
|
||||
"meta": {
|
||||
"source": "legacy",
|
||||
"connectionNames": [
|
||||
"C4",
|
||||
"C5",
|
||||
"C6",
|
||||
"D4",
|
||||
"D6",
|
||||
"E4",
|
||||
"E5",
|
||||
"E6"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 37,
|
||||
"name": "E5",
|
||||
"level": 2,
|
||||
"region": 7,
|
||||
"position": {
|
||||
"x": 350.2,
|
||||
"y": 223.8
|
||||
},
|
||||
"connections": [
|
||||
28,
|
||||
36,
|
||||
44,
|
||||
29,
|
||||
45,
|
||||
30,
|
||||
38,
|
||||
46
|
||||
],
|
||||
"max": {
|
||||
"population": 400000,
|
||||
"agriculture": 4000,
|
||||
"commerce": 4000,
|
||||
"security": 4000,
|
||||
"defence": 4000,
|
||||
"wall": 4000
|
||||
},
|
||||
"initial": {
|
||||
"population": 5000,
|
||||
"agriculture": 100,
|
||||
"commerce": 100,
|
||||
"security": 100,
|
||||
"defence": 500,
|
||||
"wall": 500
|
||||
},
|
||||
"meta": {
|
||||
"source": "legacy",
|
||||
"connectionNames": [
|
||||
"D4",
|
||||
"D5",
|
||||
"D6",
|
||||
"E4",
|
||||
"E6",
|
||||
"F4",
|
||||
"F5",
|
||||
"F6"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 38,
|
||||
"name": "F5",
|
||||
"level": 1,
|
||||
"region": 7,
|
||||
"position": {
|
||||
"x": 392.7,
|
||||
"y": 199.3
|
||||
},
|
||||
"connections": [
|
||||
29,
|
||||
37,
|
||||
45,
|
||||
30,
|
||||
46,
|
||||
31,
|
||||
39,
|
||||
47
|
||||
],
|
||||
"max": {
|
||||
"population": 400000,
|
||||
"agriculture": 4000,
|
||||
"commerce": 4000,
|
||||
"security": 4000,
|
||||
"defence": 4000,
|
||||
"wall": 4000
|
||||
},
|
||||
"initial": {
|
||||
"population": 5000,
|
||||
"agriculture": 100,
|
||||
"commerce": 100,
|
||||
"security": 100,
|
||||
"defence": 500,
|
||||
"wall": 500
|
||||
},
|
||||
"meta": {
|
||||
"source": "legacy",
|
||||
"connectionNames": [
|
||||
"E4",
|
||||
"E5",
|
||||
"E6",
|
||||
"F4",
|
||||
"F6",
|
||||
"G4",
|
||||
"G5",
|
||||
"G6"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 39,
|
||||
"name": "G5",
|
||||
"level": 2,
|
||||
"region": 7,
|
||||
"position": {
|
||||
"x": 435.2,
|
||||
"y": 174.8
|
||||
},
|
||||
"connections": [
|
||||
30,
|
||||
38,
|
||||
46,
|
||||
31,
|
||||
47,
|
||||
32,
|
||||
40,
|
||||
48
|
||||
],
|
||||
"max": {
|
||||
"population": 400000,
|
||||
"agriculture": 4000,
|
||||
"commerce": 4000,
|
||||
"security": 4000,
|
||||
"defence": 4000,
|
||||
"wall": 4000
|
||||
},
|
||||
"initial": {
|
||||
"population": 5000,
|
||||
"agriculture": 100,
|
||||
"commerce": 100,
|
||||
"security": 100,
|
||||
"defence": 500,
|
||||
"wall": 500
|
||||
},
|
||||
"meta": {
|
||||
"source": "legacy",
|
||||
"connectionNames": [
|
||||
"F4",
|
||||
"F5",
|
||||
"F6",
|
||||
"G4",
|
||||
"G6",
|
||||
"H4",
|
||||
"H5",
|
||||
"H6"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 40,
|
||||
"name": "H5",
|
||||
"level": 1,
|
||||
"region": 7,
|
||||
"position": {
|
||||
"x": 477.7,
|
||||
"y": 150.2
|
||||
},
|
||||
"connections": [
|
||||
31,
|
||||
39,
|
||||
47,
|
||||
32,
|
||||
48
|
||||
],
|
||||
"max": {
|
||||
"population": 400000,
|
||||
"agriculture": 4000,
|
||||
"commerce": 4000,
|
||||
"security": 4000,
|
||||
"defence": 4000,
|
||||
"wall": 4000
|
||||
},
|
||||
"initial": {
|
||||
"population": 5000,
|
||||
"agriculture": 100,
|
||||
"commerce": 100,
|
||||
"security": 100,
|
||||
"defence": 500,
|
||||
"wall": 500
|
||||
},
|
||||
"meta": {
|
||||
"source": "legacy",
|
||||
"connectionNames": [
|
||||
"G4",
|
||||
"G5",
|
||||
"G6",
|
||||
"H4",
|
||||
"H6"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 41,
|
||||
"name": "A6",
|
||||
"level": 1,
|
||||
"region": 7,
|
||||
"position": {
|
||||
"x": 137.7,
|
||||
"y": 297.5
|
||||
},
|
||||
"connections": [
|
||||
33,
|
||||
49,
|
||||
34,
|
||||
42,
|
||||
50
|
||||
],
|
||||
"max": {
|
||||
"population": 400000,
|
||||
"agriculture": 4000,
|
||||
"commerce": 4000,
|
||||
"security": 4000,
|
||||
"defence": 4000,
|
||||
"wall": 4000
|
||||
},
|
||||
"initial": {
|
||||
"population": 5000,
|
||||
"agriculture": 100,
|
||||
"commerce": 100,
|
||||
"security": 100,
|
||||
"defence": 500,
|
||||
"wall": 500
|
||||
},
|
||||
"meta": {
|
||||
"source": "legacy",
|
||||
"connectionNames": [
|
||||
"A5",
|
||||
"A7",
|
||||
"B5",
|
||||
"B6",
|
||||
"B7"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 42,
|
||||
"name": "B6",
|
||||
"level": 2,
|
||||
"region": 7,
|
||||
"position": {
|
||||
"x": 180.2,
|
||||
"y": 272.9
|
||||
},
|
||||
"connections": [
|
||||
33,
|
||||
41,
|
||||
49,
|
||||
34,
|
||||
50,
|
||||
35,
|
||||
43,
|
||||
51
|
||||
],
|
||||
"max": {
|
||||
"population": 400000,
|
||||
"agriculture": 4000,
|
||||
"commerce": 4000,
|
||||
"security": 4000,
|
||||
"defence": 4000,
|
||||
"wall": 4000
|
||||
},
|
||||
"initial": {
|
||||
"population": 5000,
|
||||
"agriculture": 100,
|
||||
"commerce": 100,
|
||||
"security": 100,
|
||||
"defence": 500,
|
||||
"wall": 500
|
||||
},
|
||||
"meta": {
|
||||
"source": "legacy",
|
||||
"connectionNames": [
|
||||
"A5",
|
||||
"A6",
|
||||
"A7",
|
||||
"B5",
|
||||
"B7",
|
||||
"C5",
|
||||
"C6",
|
||||
"C7"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 43,
|
||||
"name": "C6",
|
||||
"level": 1,
|
||||
"region": 7,
|
||||
"position": {
|
||||
"x": 222.7,
|
||||
"y": 248.4
|
||||
},
|
||||
"connections": [
|
||||
34,
|
||||
42,
|
||||
50,
|
||||
35,
|
||||
51,
|
||||
36,
|
||||
44,
|
||||
52
|
||||
],
|
||||
"max": {
|
||||
"population": 400000,
|
||||
"agriculture": 4000,
|
||||
"commerce": 4000,
|
||||
"security": 4000,
|
||||
"defence": 4000,
|
||||
"wall": 4000
|
||||
},
|
||||
"initial": {
|
||||
"population": 5000,
|
||||
"agriculture": 100,
|
||||
"commerce": 100,
|
||||
"security": 100,
|
||||
"defence": 500,
|
||||
"wall": 500
|
||||
},
|
||||
"meta": {
|
||||
"source": "legacy",
|
||||
"connectionNames": [
|
||||
"B5",
|
||||
"B6",
|
||||
"B7",
|
||||
"C5",
|
||||
"C7",
|
||||
"D5",
|
||||
"D6",
|
||||
"D7"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 44,
|
||||
"name": "D6",
|
||||
"level": 2,
|
||||
"region": 7,
|
||||
"position": {
|
||||
"x": 265.2,
|
||||
"y": 223.8
|
||||
},
|
||||
"connections": [
|
||||
35,
|
||||
43,
|
||||
51,
|
||||
36,
|
||||
52,
|
||||
37,
|
||||
45,
|
||||
53
|
||||
],
|
||||
"max": {
|
||||
"population": 400000,
|
||||
"agriculture": 4000,
|
||||
"commerce": 4000,
|
||||
"security": 4000,
|
||||
"defence": 4000,
|
||||
"wall": 4000
|
||||
},
|
||||
"initial": {
|
||||
"population": 5000,
|
||||
"agriculture": 100,
|
||||
"commerce": 100,
|
||||
"security": 100,
|
||||
"defence": 500,
|
||||
"wall": 500
|
||||
},
|
||||
"meta": {
|
||||
"source": "legacy",
|
||||
"connectionNames": [
|
||||
"C5",
|
||||
"C6",
|
||||
"C7",
|
||||
"D5",
|
||||
"D7",
|
||||
"E5",
|
||||
"E6",
|
||||
"E7"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 45,
|
||||
"name": "E6",
|
||||
"level": 1,
|
||||
"region": 7,
|
||||
"position": {
|
||||
"x": 307.7,
|
||||
"y": 199.3
|
||||
},
|
||||
"connections": [
|
||||
36,
|
||||
44,
|
||||
52,
|
||||
37,
|
||||
53,
|
||||
38,
|
||||
46,
|
||||
54
|
||||
],
|
||||
"max": {
|
||||
"population": 400000,
|
||||
"agriculture": 4000,
|
||||
"commerce": 4000,
|
||||
"security": 4000,
|
||||
"defence": 4000,
|
||||
"wall": 4000
|
||||
},
|
||||
"initial": {
|
||||
"population": 5000,
|
||||
"agriculture": 100,
|
||||
"commerce": 100,
|
||||
"security": 100,
|
||||
"defence": 500,
|
||||
"wall": 500
|
||||
},
|
||||
"meta": {
|
||||
"source": "legacy",
|
||||
"connectionNames": [
|
||||
"D5",
|
||||
"D6",
|
||||
"D7",
|
||||
"E5",
|
||||
"E7",
|
||||
"F5",
|
||||
"F6",
|
||||
"F7"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 46,
|
||||
"name": "F6",
|
||||
"level": 2,
|
||||
"region": 7,
|
||||
"position": {
|
||||
"x": 350.2,
|
||||
"y": 174.8
|
||||
},
|
||||
"connections": [
|
||||
37,
|
||||
45,
|
||||
53,
|
||||
38,
|
||||
54,
|
||||
39,
|
||||
47,
|
||||
55
|
||||
],
|
||||
"max": {
|
||||
"population": 400000,
|
||||
"agriculture": 4000,
|
||||
"commerce": 4000,
|
||||
"security": 4000,
|
||||
"defence": 4000,
|
||||
"wall": 4000
|
||||
},
|
||||
"initial": {
|
||||
"population": 5000,
|
||||
"agriculture": 100,
|
||||
"commerce": 100,
|
||||
"security": 100,
|
||||
"defence": 500,
|
||||
"wall": 500
|
||||
},
|
||||
"meta": {
|
||||
"source": "legacy",
|
||||
"connectionNames": [
|
||||
"E5",
|
||||
"E6",
|
||||
"E7",
|
||||
"F5",
|
||||
"F7",
|
||||
"G5",
|
||||
"G6",
|
||||
"G7"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 47,
|
||||
"name": "G6",
|
||||
"level": 1,
|
||||
"region": 7,
|
||||
"position": {
|
||||
"x": 392.7,
|
||||
"y": 150.2
|
||||
},
|
||||
"connections": [
|
||||
38,
|
||||
46,
|
||||
54,
|
||||
39,
|
||||
55,
|
||||
40,
|
||||
48,
|
||||
56
|
||||
],
|
||||
"max": {
|
||||
"population": 400000,
|
||||
"agriculture": 4000,
|
||||
"commerce": 4000,
|
||||
"security": 4000,
|
||||
"defence": 4000,
|
||||
"wall": 4000
|
||||
},
|
||||
"initial": {
|
||||
"population": 5000,
|
||||
"agriculture": 100,
|
||||
"commerce": 100,
|
||||
"security": 100,
|
||||
"defence": 500,
|
||||
"wall": 500
|
||||
},
|
||||
"meta": {
|
||||
"source": "legacy",
|
||||
"connectionNames": [
|
||||
"F5",
|
||||
"F6",
|
||||
"F7",
|
||||
"G5",
|
||||
"G7",
|
||||
"H5",
|
||||
"H6",
|
||||
"H7"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 48,
|
||||
"name": "H6",
|
||||
"level": 2,
|
||||
"region": 7,
|
||||
"position": {
|
||||
"x": 435.2,
|
||||
"y": 125.7
|
||||
},
|
||||
"connections": [
|
||||
39,
|
||||
47,
|
||||
55,
|
||||
40,
|
||||
56
|
||||
],
|
||||
"max": {
|
||||
"population": 400000,
|
||||
"agriculture": 4000,
|
||||
"commerce": 4000,
|
||||
"security": 4000,
|
||||
"defence": 4000,
|
||||
"wall": 4000
|
||||
},
|
||||
"initial": {
|
||||
"population": 5000,
|
||||
"agriculture": 100,
|
||||
"commerce": 100,
|
||||
"security": 100,
|
||||
"defence": 500,
|
||||
"wall": 500
|
||||
},
|
||||
"meta": {
|
||||
"source": "legacy",
|
||||
"connectionNames": [
|
||||
"G5",
|
||||
"G6",
|
||||
"G7",
|
||||
"H5",
|
||||
"H7"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 49,
|
||||
"name": "A7",
|
||||
"level": 5,
|
||||
"region": 6,
|
||||
"position": {
|
||||
"x": 95.2,
|
||||
"y": 272.9
|
||||
},
|
||||
"connections": [
|
||||
41,
|
||||
57,
|
||||
42,
|
||||
50,
|
||||
58
|
||||
],
|
||||
"max": {
|
||||
"population": 600000,
|
||||
"agriculture": 6000,
|
||||
"commerce": 6000,
|
||||
"security": 6000,
|
||||
"defence": 6000,
|
||||
"wall": 6000
|
||||
},
|
||||
"initial": {
|
||||
"population": 100000,
|
||||
"agriculture": 1000,
|
||||
"commerce": 1000,
|
||||
"security": 1000,
|
||||
"defence": 2000,
|
||||
"wall": 2000
|
||||
},
|
||||
"meta": {
|
||||
"source": "legacy",
|
||||
"connectionNames": [
|
||||
"A6",
|
||||
"A8",
|
||||
"B6",
|
||||
"B7",
|
||||
"B8"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 50,
|
||||
"name": "B7",
|
||||
"level": 5,
|
||||
"region": 6,
|
||||
"position": {
|
||||
"x": 137.7,
|
||||
"y": 248.4
|
||||
},
|
||||
"connections": [
|
||||
41,
|
||||
49,
|
||||
57,
|
||||
42,
|
||||
58,
|
||||
43,
|
||||
51,
|
||||
59
|
||||
],
|
||||
"max": {
|
||||
"population": 600000,
|
||||
"agriculture": 6000,
|
||||
"commerce": 6000,
|
||||
"security": 6000,
|
||||
"defence": 6000,
|
||||
"wall": 6000
|
||||
},
|
||||
"initial": {
|
||||
"population": 100000,
|
||||
"agriculture": 1000,
|
||||
"commerce": 1000,
|
||||
"security": 1000,
|
||||
"defence": 2000,
|
||||
"wall": 2000
|
||||
},
|
||||
"meta": {
|
||||
"source": "legacy",
|
||||
"connectionNames": [
|
||||
"A6",
|
||||
"A7",
|
||||
"A8",
|
||||
"B6",
|
||||
"B8",
|
||||
"C6",
|
||||
"C7",
|
||||
"C8"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 51,
|
||||
"name": "C7",
|
||||
"level": 5,
|
||||
"region": 6,
|
||||
"position": {
|
||||
"x": 180.2,
|
||||
"y": 223.8
|
||||
},
|
||||
"connections": [
|
||||
42,
|
||||
50,
|
||||
58,
|
||||
43,
|
||||
59,
|
||||
44,
|
||||
52,
|
||||
60
|
||||
],
|
||||
"max": {
|
||||
"population": 600000,
|
||||
"agriculture": 6000,
|
||||
"commerce": 6000,
|
||||
"security": 6000,
|
||||
"defence": 6000,
|
||||
"wall": 6000
|
||||
},
|
||||
"initial": {
|
||||
"population": 100000,
|
||||
"agriculture": 1000,
|
||||
"commerce": 1000,
|
||||
"security": 1000,
|
||||
"defence": 2000,
|
||||
"wall": 2000
|
||||
},
|
||||
"meta": {
|
||||
"source": "legacy",
|
||||
"connectionNames": [
|
||||
"B6",
|
||||
"B7",
|
||||
"B8",
|
||||
"C6",
|
||||
"C8",
|
||||
"D6",
|
||||
"D7",
|
||||
"D8"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 52,
|
||||
"name": "D7",
|
||||
"level": 5,
|
||||
"region": 6,
|
||||
"position": {
|
||||
"x": 222.7,
|
||||
"y": 199.3
|
||||
},
|
||||
"connections": [
|
||||
43,
|
||||
51,
|
||||
59,
|
||||
44,
|
||||
60,
|
||||
45,
|
||||
53,
|
||||
61
|
||||
],
|
||||
"max": {
|
||||
"population": 600000,
|
||||
"agriculture": 6000,
|
||||
"commerce": 6000,
|
||||
"security": 6000,
|
||||
"defence": 6000,
|
||||
"wall": 6000
|
||||
},
|
||||
"initial": {
|
||||
"population": 100000,
|
||||
"agriculture": 1000,
|
||||
"commerce": 1000,
|
||||
"security": 1000,
|
||||
"defence": 2000,
|
||||
"wall": 2000
|
||||
},
|
||||
"meta": {
|
||||
"source": "legacy",
|
||||
"connectionNames": [
|
||||
"C6",
|
||||
"C7",
|
||||
"C8",
|
||||
"D6",
|
||||
"D8",
|
||||
"E6",
|
||||
"E7",
|
||||
"E8"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 53,
|
||||
"name": "E7",
|
||||
"level": 5,
|
||||
"region": 6,
|
||||
"position": {
|
||||
"x": 265.2,
|
||||
"y": 174.8
|
||||
},
|
||||
"connections": [
|
||||
44,
|
||||
52,
|
||||
60,
|
||||
45,
|
||||
61,
|
||||
46,
|
||||
54,
|
||||
62
|
||||
],
|
||||
"max": {
|
||||
"population": 600000,
|
||||
"agriculture": 6000,
|
||||
"commerce": 6000,
|
||||
"security": 6000,
|
||||
"defence": 6000,
|
||||
"wall": 6000
|
||||
},
|
||||
"initial": {
|
||||
"population": 100000,
|
||||
"agriculture": 1000,
|
||||
"commerce": 1000,
|
||||
"security": 1000,
|
||||
"defence": 2000,
|
||||
"wall": 2000
|
||||
},
|
||||
"meta": {
|
||||
"source": "legacy",
|
||||
"connectionNames": [
|
||||
"D6",
|
||||
"D7",
|
||||
"D8",
|
||||
"E6",
|
||||
"E8",
|
||||
"F6",
|
||||
"F7",
|
||||
"F8"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 54,
|
||||
"name": "F7",
|
||||
"level": 5,
|
||||
"region": 6,
|
||||
"position": {
|
||||
"x": 307.7,
|
||||
"y": 150.2
|
||||
},
|
||||
"connections": [
|
||||
45,
|
||||
53,
|
||||
61,
|
||||
46,
|
||||
62,
|
||||
47,
|
||||
55,
|
||||
63
|
||||
],
|
||||
"max": {
|
||||
"population": 600000,
|
||||
"agriculture": 6000,
|
||||
"commerce": 6000,
|
||||
"security": 6000,
|
||||
"defence": 6000,
|
||||
"wall": 6000
|
||||
},
|
||||
"initial": {
|
||||
"population": 100000,
|
||||
"agriculture": 1000,
|
||||
"commerce": 1000,
|
||||
"security": 1000,
|
||||
"defence": 2000,
|
||||
"wall": 2000
|
||||
},
|
||||
"meta": {
|
||||
"source": "legacy",
|
||||
"connectionNames": [
|
||||
"E6",
|
||||
"E7",
|
||||
"E8",
|
||||
"F6",
|
||||
"F8",
|
||||
"G6",
|
||||
"G7",
|
||||
"G8"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 55,
|
||||
"name": "G7",
|
||||
"level": 5,
|
||||
"region": 6,
|
||||
"position": {
|
||||
"x": 350.2,
|
||||
"y": 125.7
|
||||
},
|
||||
"connections": [
|
||||
46,
|
||||
54,
|
||||
62,
|
||||
47,
|
||||
63,
|
||||
48,
|
||||
56,
|
||||
64
|
||||
],
|
||||
"max": {
|
||||
"population": 600000,
|
||||
"agriculture": 6000,
|
||||
"commerce": 6000,
|
||||
"security": 6000,
|
||||
"defence": 6000,
|
||||
"wall": 6000
|
||||
},
|
||||
"initial": {
|
||||
"population": 100000,
|
||||
"agriculture": 1000,
|
||||
"commerce": 1000,
|
||||
"security": 1000,
|
||||
"defence": 2000,
|
||||
"wall": 2000
|
||||
},
|
||||
"meta": {
|
||||
"source": "legacy",
|
||||
"connectionNames": [
|
||||
"F6",
|
||||
"F7",
|
||||
"F8",
|
||||
"G6",
|
||||
"G8",
|
||||
"H6",
|
||||
"H7",
|
||||
"H8"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 56,
|
||||
"name": "H7",
|
||||
"level": 5,
|
||||
"region": 6,
|
||||
"position": {
|
||||
"x": 392.7,
|
||||
"y": 101.1
|
||||
},
|
||||
"connections": [
|
||||
47,
|
||||
55,
|
||||
63,
|
||||
48,
|
||||
64
|
||||
],
|
||||
"max": {
|
||||
"population": 600000,
|
||||
"agriculture": 6000,
|
||||
"commerce": 6000,
|
||||
"security": 6000,
|
||||
"defence": 6000,
|
||||
"wall": 6000
|
||||
},
|
||||
"initial": {
|
||||
"population": 100000,
|
||||
"agriculture": 1000,
|
||||
"commerce": 1000,
|
||||
"security": 1000,
|
||||
"defence": 2000,
|
||||
"wall": 2000
|
||||
},
|
||||
"meta": {
|
||||
"source": "legacy",
|
||||
"connectionNames": [
|
||||
"G6",
|
||||
"G7",
|
||||
"G8",
|
||||
"H6",
|
||||
"H8"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 57,
|
||||
"name": "A8",
|
||||
"level": 6,
|
||||
"region": 3,
|
||||
"position": {
|
||||
"x": 52.7,
|
||||
"y": 248.4
|
||||
},
|
||||
"connections": [
|
||||
49,
|
||||
50,
|
||||
58
|
||||
],
|
||||
"max": {
|
||||
"population": 600000,
|
||||
"agriculture": 6000,
|
||||
"commerce": 6000,
|
||||
"security": 6000,
|
||||
"defence": 6000,
|
||||
"wall": 6000
|
||||
},
|
||||
"initial": {
|
||||
"population": 100000,
|
||||
"agriculture": 1000,
|
||||
"commerce": 1000,
|
||||
"security": 1000,
|
||||
"defence": 3000,
|
||||
"wall": 3000
|
||||
},
|
||||
"meta": {
|
||||
"source": "legacy",
|
||||
"connectionNames": [
|
||||
"A7",
|
||||
"B7",
|
||||
"B8"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 58,
|
||||
"name": "B8",
|
||||
"level": 6,
|
||||
"region": 4,
|
||||
"position": {
|
||||
"x": 95.2,
|
||||
"y": 223.8
|
||||
},
|
||||
"connections": [
|
||||
49,
|
||||
57,
|
||||
50,
|
||||
51,
|
||||
59
|
||||
],
|
||||
"max": {
|
||||
"population": 800000,
|
||||
"agriculture": 8000,
|
||||
"commerce": 8000,
|
||||
"security": 8000,
|
||||
"defence": 8000,
|
||||
"wall": 8000
|
||||
},
|
||||
"initial": {
|
||||
"population": 100000,
|
||||
"agriculture": 1000,
|
||||
"commerce": 1000,
|
||||
"security": 1000,
|
||||
"defence": 3000,
|
||||
"wall": 3000
|
||||
},
|
||||
"meta": {
|
||||
"source": "legacy",
|
||||
"connectionNames": [
|
||||
"A7",
|
||||
"A8",
|
||||
"B7",
|
||||
"C7",
|
||||
"C8"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 59,
|
||||
"name": "C8",
|
||||
"level": 6,
|
||||
"region": 5,
|
||||
"position": {
|
||||
"x": 137.7,
|
||||
"y": 199.3
|
||||
},
|
||||
"connections": [
|
||||
50,
|
||||
58,
|
||||
51,
|
||||
52,
|
||||
60
|
||||
],
|
||||
"max": {
|
||||
"population": 800000,
|
||||
"agriculture": 8000,
|
||||
"commerce": 8000,
|
||||
"security": 8000,
|
||||
"defence": 8000,
|
||||
"wall": 8000
|
||||
},
|
||||
"initial": {
|
||||
"population": 100000,
|
||||
"agriculture": 1000,
|
||||
"commerce": 1000,
|
||||
"security": 1000,
|
||||
"defence": 3000,
|
||||
"wall": 3000
|
||||
},
|
||||
"meta": {
|
||||
"source": "legacy",
|
||||
"connectionNames": [
|
||||
"B7",
|
||||
"B8",
|
||||
"C7",
|
||||
"D7",
|
||||
"D8"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 60,
|
||||
"name": "D8",
|
||||
"level": 8,
|
||||
"region": 1,
|
||||
"position": {
|
||||
"x": 180.2,
|
||||
"y": 174.8
|
||||
},
|
||||
"connections": [
|
||||
51,
|
||||
59,
|
||||
52,
|
||||
53,
|
||||
61
|
||||
],
|
||||
"max": {
|
||||
"population": 800000,
|
||||
"agriculture": 8000,
|
||||
"commerce": 8000,
|
||||
"security": 8000,
|
||||
"defence": 8000,
|
||||
"wall": 8000
|
||||
},
|
||||
"initial": {
|
||||
"population": 150000,
|
||||
"agriculture": 1000,
|
||||
"commerce": 1000,
|
||||
"security": 1000,
|
||||
"defence": 5000,
|
||||
"wall": 5000
|
||||
},
|
||||
"meta": {
|
||||
"source": "legacy",
|
||||
"connectionNames": [
|
||||
"C7",
|
||||
"C8",
|
||||
"D7",
|
||||
"E7",
|
||||
"E8"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 61,
|
||||
"name": "E8",
|
||||
"level": 7,
|
||||
"region": 2,
|
||||
"position": {
|
||||
"x": 222.7,
|
||||
"y": 150.2
|
||||
},
|
||||
"connections": [
|
||||
52,
|
||||
60,
|
||||
53,
|
||||
54,
|
||||
62
|
||||
],
|
||||
"max": {
|
||||
"population": 1200000,
|
||||
"agriculture": 12000,
|
||||
"commerce": 12000,
|
||||
"security": 12000,
|
||||
"defence": 12000,
|
||||
"wall": 12000
|
||||
},
|
||||
"initial": {
|
||||
"population": 150000,
|
||||
"agriculture": 1000,
|
||||
"commerce": 1000,
|
||||
"security": 1000,
|
||||
"defence": 4000,
|
||||
"wall": 4000
|
||||
},
|
||||
"meta": {
|
||||
"source": "legacy",
|
||||
"connectionNames": [
|
||||
"D7",
|
||||
"D8",
|
||||
"E7",
|
||||
"F7",
|
||||
"F8"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 62,
|
||||
"name": "F8",
|
||||
"level": 6,
|
||||
"region": 5,
|
||||
"position": {
|
||||
"x": 265.2,
|
||||
"y": 125.7
|
||||
},
|
||||
"connections": [
|
||||
53,
|
||||
61,
|
||||
54,
|
||||
55,
|
||||
63
|
||||
],
|
||||
"max": {
|
||||
"population": 1000000,
|
||||
"agriculture": 10000,
|
||||
"commerce": 10000,
|
||||
"security": 10000,
|
||||
"defence": 10000,
|
||||
"wall": 10000
|
||||
},
|
||||
"initial": {
|
||||
"population": 100000,
|
||||
"agriculture": 1000,
|
||||
"commerce": 1000,
|
||||
"security": 1000,
|
||||
"defence": 3000,
|
||||
"wall": 3000
|
||||
},
|
||||
"meta": {
|
||||
"source": "legacy",
|
||||
"connectionNames": [
|
||||
"E7",
|
||||
"E8",
|
||||
"F7",
|
||||
"G7",
|
||||
"G8"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 63,
|
||||
"name": "G8",
|
||||
"level": 6,
|
||||
"region": 4,
|
||||
"position": {
|
||||
"x": 307.7,
|
||||
"y": 101.1
|
||||
},
|
||||
"connections": [
|
||||
54,
|
||||
62,
|
||||
55,
|
||||
56,
|
||||
64
|
||||
],
|
||||
"max": {
|
||||
"population": 800000,
|
||||
"agriculture": 8000,
|
||||
"commerce": 8000,
|
||||
"security": 8000,
|
||||
"defence": 8000,
|
||||
"wall": 8000
|
||||
},
|
||||
"initial": {
|
||||
"population": 100000,
|
||||
"agriculture": 1000,
|
||||
"commerce": 1000,
|
||||
"security": 1000,
|
||||
"defence": 3000,
|
||||
"wall": 3000
|
||||
},
|
||||
"meta": {
|
||||
"source": "legacy",
|
||||
"connectionNames": [
|
||||
"F7",
|
||||
"F8",
|
||||
"G7",
|
||||
"H7",
|
||||
"H8"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 64,
|
||||
"name": "H8",
|
||||
"level": 6,
|
||||
"region": 3,
|
||||
"position": {
|
||||
"x": 350.2,
|
||||
"y": 76.6
|
||||
},
|
||||
"connections": [
|
||||
55,
|
||||
63,
|
||||
56
|
||||
],
|
||||
"max": {
|
||||
"population": 800000,
|
||||
"agriculture": 8000,
|
||||
"commerce": 8000,
|
||||
"security": 8000,
|
||||
"defence": 8000,
|
||||
"wall": 8000
|
||||
},
|
||||
"initial": {
|
||||
"population": 100000,
|
||||
"agriculture": 1000,
|
||||
"commerce": 1000,
|
||||
"security": 1000,
|
||||
"defence": 3000,
|
||||
"wall": 3000
|
||||
},
|
||||
"meta": {
|
||||
"source": "legacy",
|
||||
"connectionNames": [
|
||||
"G7",
|
||||
"G8",
|
||||
"H7"
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"defaults": {
|
||||
"trust": 50,
|
||||
"trade": 100,
|
||||
"supplyState": 1,
|
||||
"frontState": 0
|
||||
},
|
||||
"meta": {
|
||||
"source": "legacy",
|
||||
"mapName": "chess"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user