forked from agentx-cgn/Hannibal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.py
101 lines (100 loc) · 2.33 KB
/
data.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
data = {
"civs" : [
"athen",
"brit",
"cart",
"celt",
"gaul",
"hele",
"iber",
"mace",
"maur",
"pers",
"ptol",
"rome",
"sele",
"theb",
],
"pathMaps": "/home/noiv/.local/share/0ad/mods/public/maps/scenarios/",
"testMaps": [
"Arcadia 02.xml",
"Azure Coast.xml",
"Barcania.xml",
"Battle for the Tiber.xml",
"Belgian_Bog_night.xml",
"Eire and Albion.xml",
"Gold_Rush.xml",
"Gorge.xml",
],
"mapsAll": [
"Abyss39.xml",
"Arcadia 02.xml",
"Azure Coast.xml",
"Azure Coast(2).xml",
"Azure Coast(4).xml",
"Barcania.xml",
"Battle for the Tiber.xml",
"Belgian_Bog_night.xml",
"Bridge_demo.xml",
"Campaign Test Map.xml",
"Campaign Test Map 2 - heightmap.xml",
"Combat_demo.xml",
"Combat_demo_(huge).xml",
"Death Canyon - Invasion Force.xml",
"Demo_Trading.xml",
"Eire and Albion.xml",
"Fast Oasis.xml",
"Fishing_demo.xml",
"Flight_demo.xml",
"Flight_demo_2.xml",
"Gold_Rush.xml",
"Gorge.xml",
"Height Map Import - Demo (Fractal).xml",
"Height Map Import - Demo (Greece).xml",
"Height Map Import - Demo (Greece-Small).xml",
"Introductory Tutorial.xml",
"Laconia 01.xml",
"Migration.xml",
"Miletus.xml",
"Multiplayer_demo.xml",
"Necropolis.xml",
"Pathfinding_demo.xml",
"Pathfinding_terrain_demo.xml",
"Peloponnese.xml",
"Polynesia.xml",
"reservoir.xml",
"Resource_demo.xml",
"road demo.xml",
"Saharan Oases.xml",
"Sahel.xml",
"Sandbox - Athenians.xml",
"Sandbox - Britons.xml",
"Sandbox - Carthaginians.xml",
"Sandbox - Gauls.xml",
"Sandbox - Iberians.xml",
"Sandbox - Macedonians.xml",
"Sandbox - Mauryans.xml",
"Sandbox - Persians.xml",
"Sandbox - Ptolemies.xml",
"Sandbox - Ptolemies 2.xml",
"Sandbox - Romans.xml",
"Sandbox - Seleucids.xml",
"Sandbox - Spartans.xml",
"Savanna Ravine.xml",
"Serengeti.xml",
"shipattacks.xml",
"Ship Formations.xml",
"Siwa Oasis.xml",
"starting_economy_walkthrough.xml",
"temperate map.xml",
"Territory Demo.xml",
"The Massacre of Delphi.xml",
"The Persian Gates.xml",
"Third Macedonian War.xml",
"Tropical Island.xml",
"Units_demo.xml",
"Walls.xml",
"WallTest.xml",
"We are Legion.xml"
]
}