-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathsettlements.civmap.json
More file actions
6577 lines (6577 loc) · 277 KB
/
settlements.civmap.json
File metadata and controls
6577 lines (6577 loc) · 277 KB
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"name": "Settlements",
"id": "62da2fc3-60ba-49a4-898b-817051e47d9d",
"info": {
"version": "3.0.0-beta3"
},
"source": "https://ccmap.github.io/data/settlements.civmap.json",
"presentations": [
{
"name": "Settlements",
"style_base": {
"color": {
"default": "#ffcc77",
"feature_key": "Zoom Visibility",
"categories": {}
},
"icon_size": {
"default": 8,
"feature_key": "Zoom Visibility",
"categories": {
"1": 18,
"2": 16,
"3": 14,
"4": 12,
"5": 10
}
},
"icon": "circle",
"label": "$name",
"opacity": 0,
"stroke_color": "#000000",
"stroke_width": {
"default": 2,
"feature_key": "Zoom Visibility",
"categories": {}
}
},
"style_highlight": {
"opacity": 1,
"stroke_color": "#ff0000",
"stroke_width": 2
},
"zoom_styles": {
"-6": {
"label": "$nickname",
"opacity": {
"default": 0,
"feature_key": "Zoom Visibility",
"categories": {
"1": 1
}
}
},
"-4": {
"label": {
"default": "",
"feature_key": "Zoom Visibility",
"categories": {
"1": "$name",
"2": "$name",
"3": ""
}
},
"opacity": {
"default": 0,
"feature_key": "Zoom Visibility",
"categories": {
"1": 1,
"2": 1,
"3": 1
}
}
},
"-3": {
"opacity": {
"default": 0,
"feature_key": "Zoom Visibility",
"categories": {
"1": 1,
"2": 1,
"3": 1
}
}
},
"-1": {
"opacity": 1
}
}
}
],
"features": [
{
"name": "(abandoned newfriend town)",
"x": 9291,
"z": 5354,
"nation": "Cortesia Del Mar - Formerly: Entrana, Lowland Hundred",
"contact": "IceCarim#1541, Yodabird19#1542",
"Zoom Visibility": 5,
"notes": "Abandoned newfriend town. Contact the Unified Map Project if you have any info about this",
"id": "abb832c2-b995-4bd0-9f02-2ecfa70921c8"
},
{
"name": "(mesa tower)",
"x": -6230,
"z": 4798,
"nation": "Commonwealth",
"contact": "LordOfMarzipan",
"image": "https://i.imgur.com/4WPPwfN.png",
"discord": "https://discord.gg/j4fNWrk",
"symbol": "https://cdn.discordapp.com/attachments/313388169095806986/317805528531206145/image.jpg",
"Zoom Visibility": 4,
"notes": "Contact the Unified Map Project if you have any info about this",
"id": "45ce68a8-22ba-4a1d-9dd4-904367f43b90"
},
{
"name": "(unnamed)",
"x": 7727,
"z": -8444,
"nation": "Khaphae (\u00c4ggland)",
"contact": "GeneralPingu#8036",
"symbol": "https://cdn.discordapp.com/attachments/897436500315213866/898179475404111882/flag_2.png",
"visitors": "welcome",
"Zoom Visibility": 3,
"notes": "Formerly Akrambet",
"id": "ab7475b9-bd8a-4fd5-87c3-e0175c364779"
},
{
"name": "(unnamed)",
"x": 7943,
"z": -8743,
"nation": "Kaphae (\u00c4ggland)",
"contact": "GeneralPingu#8036",
"symbol": "https://cdn.discordapp.com/attachments/897436500315213866/898179475404111882/flag_2.png",
"visitors": "welcome",
"Zoom Visibility": 3,
"notes": "Formerly: Magnasoria",
"id": "ef14a067-4de7-470a-a89e-ee2d7cb24b76"
},
{
"name": "(unnamed)",
"x": 6611,
"z": 3873,
"nation": "Amyr",
"contact": "WNS2",
"Zoom Visibility": 5
},
{
"name": "(unnamed)",
"x": -6633,
"z": -1616,
"nation": "Coroseia - Formerly: Tierra de Conciencia",
"contact": "Njordomir",
"image": "https://i.imgur.com/BUtrlCc.png",
"discord": "https://discord.gg/7bWsDGm",
"wiki": "https://civwiki.org/wiki/Tierra_de_Conciencia#Ravine_City",
"symbol": "https://i.imgur.com/sMqo0QB.png",
"visitors": "welcome"
},
{
"name": "(unnamed)",
"x": 11881,
"z": 4334,
"nation": "Halcyon",
"contact": "Deo#2690",
"discord": "https://discord.gg/yKMMMvYkdQ",
"visitors": "welcome",
"Zoom Visibility": 3,
"id": "3ac6cb8d-2678-4c3b-86eb-95444f4fbc91"
},
{
"name": "2/3 Africa",
"x": -6222,
"z": 1600,
"nation": "Mir - Formerly: Holy Jaded Empire, Westeros",
"contact": "ComradeNick",
"discord": "ask",
"symbol": "https://static.miraheze.org/civclassicwiki/2/2e/HJEFlagSomewhatOutdated.png",
"Zoom Visibility": 5,
"notes": "nothing built",
"id": "17aed361-d832-4e34-bfa4-461833323348"
},
{
"name": "? (abandoned tower)",
"x": -368,
"z": -3973,
"image": "https://i.imgur.com/Z74oXUq.png",
"Zoom Visibility": 5,
"notes": "Contact the Unified Map Project if you have any info about this",
"id": "07663089-ec76-4201-a0cf-0910d2f087da"
},
{
"name": "? (builds 3)",
"x": 12233,
"z": 3800,
"image": "https://i.imgur.com/FlFb2fM.png",
"Zoom Visibility": 5,
"notes": "Contact the Unified Map Project if you have any info about this",
"id": "c83a925d-ec62-45f0-b896-53511b274ea4"
},
{
"name": "? (commie town)",
"x": -3000,
"z": -6950,
"image": "https://i.imgur.com/HSVbdJ5.png",
"image_album": "https://imgur.com/a/gdPwOhh",
"Zoom Visibility": 5,
"notes": "Contact the Unified Map Project if you have any info about this",
"id": "1e08335b-ec0d-4c0d-a58f-451b22ed7714"
},
{
"name": "? (cross town)",
"x": 4551,
"z": 6363,
"image": "https://i.imgur.com/owC6TAG.png",
"image_album": "https://imgur.com/a/kW7TC10",
"Zoom Visibility": 5,
"notes": "Contact the Unified Map Project if you have any info about this",
"id": "04efb53f-028c-49af-a431-7c2235665fbd"
},
{
"name": "? (decayed town)",
"x": -9259,
"z": -9250,
"image": "https://cdn.discordapp.com/attachments/484751236520738826/498949944426889217/unknown.png",
"Zoom Visibility": 5,
"notes": "Contact the Unified Map Project if you have any info about this",
"id": "82e950a2-a9d0-4b23-b368-a564aab34996"
},
{
"name": "? (farm house 1)",
"x": 8100,
"z": -2165,
"nation": "Formerly: Appomattox",
"image": "https://i.imgur.com/NFOLSW0.png",
"image_album": "https://imgur.com/a/pAKi8RH",
"symbol": "https://static.miraheze.org/civclassicwiki/thumb/b/b9/AppomattoxFlag.png/200px-AppomattoxFlag.png",
"Zoom Visibility": 5,
"notes": "Contact the Unified Map Project if you have any info about this",
"id": "80bf9d90-df19-4e70-8759-5520604c249e"
},
{
"name": "? (german town)",
"x": 6067,
"z": 647,
"nation": "Vuoto - Formerly: Carpathia",
"contact": "TheSkyGod",
"image": "https://i.imgur.com/QZbM2qi.png",
"discord": "https://discord.gg/25PmpQ5",
"symbol": "https://static.miraheze.org/civclassicwiki/e/ed/Bcf.png",
"Zoom Visibility": 5,
"notes": "Contact the Unified Map Project if you have any info about this",
"id": "21e94c4e-738e-48c3-aae9-f3c25b5ac4ce"
},
{
"name": "? (half ellipse)",
"x": 2980,
"z": -2790,
"image": "https://i.imgur.com/cqYJxM5.png",
"Zoom Visibility": 5,
"notes": "Contact the Unified Map Project if you have any info about this",
"id": "192617c5-a6dd-450b-9fbb-a496726166f7"
},
{
"name": "? (house in HJE)",
"x": -6925,
"z": -588,
"nation": "Formerly: Holy Jaded Empire",
"contact": "ComradeNick",
"image": "https://i.imgur.com/ncSl1CX.png",
"discord": "ask",
"Zoom Visibility": 5,
"notes": "Contact the Unified Map Project if you have any info about this",
"id": "e33f29c5-292d-4687-8dd3-33fe365d1529"
},
{
"name": "? (joethesandwich's builds)",
"x": -10000,
"z": 7200,
"contact": "u/joethesandwich",
"web": "https://www.reddit.com/r/civclassics/comments/8n4oa0/claims_map_may_2018/dztnvwf/",
"Zoom Visibility": 5,
"notes": "Contact the Unified Map Project if you have any info about this",
"id": "86cf203d-4741-4c7d-b310-436cb582d533"
},
{
"name": "? (Mountain Outpost)",
"x": 3600,
"z": -4688,
"nation": "Nyasaland - Formerly: Persia",
"contact": "u/LivingFaithlessness",
"image": "https://i.imgur.com/eYVkJRF.png",
"image_album": "https://imgur.com/a/zk694fQ",
"web": "https://www.reddit.com/r/civclassics/comments/8uz9r9/i_live_alone_here_but_its_very_pretty/e1jqnm1/",
"Zoom Visibility": 5,
"notes": "Contact the Unified Map Project if you have any info about this",
"id": "4ef62c7d-b88a-47ba-b524-650b645e51b1",
"Appomattox Builder's Association - Rating": "-"
},
{
"name": "? (nether island)",
"x": 6300,
"z": 6200,
"image": "https://i.imgur.com/WJGIVh3.png",
"Zoom Visibility": 5,
"notes": "nether island builds and farms. Contact the Unified Map Project if you have any info about this",
"id": "152c2f74-3342-4706-ae13-93747c18b466"
},
{
"name": "? (palace with tree garden)",
"x": 1534,
"z": -8111,
"nation": "Formerly: Benistan",
"Zoom Visibility": 5,
"notes": "Contact the Unified Map Project if you have any info about this",
"id": "b703499f-2087-4077-99e7-ddd553c79fb8"
},
{
"name": "? (town in Benistan)",
"x": 3590,
"z": -7728,
"nation": "Formerly: Benistan",
"Zoom Visibility": 5,
"notes": "Contact the Unified Map Project if you have any info about this",
"id": "ed6cf654-9224-49ec-a3ad-680e9e3569b2"
},
{
"name": "? (town in Kaiserreich)",
"x": -2570,
"z": -12100,
"nation": "Kaiserreich (Varkonia)",
"contact": "Wub",
"image": "https://cdn.discordapp.com/attachments/449703111775354900/450407154151718932/unknown.png",
"discord": "https://discord.gg/9XZ2bAQ",
"Zoom Visibility": 5,
"notes": "Contact the Unified Map Project if you have any info about this",
"id": "445397e5-5164-4231-88c8-e143a0f83b9c"
},
{
"name": "? (town in Okashima)",
"x": -500,
"z": 4600,
"nation": "Yoahtl - Formerly: Okashima",
"contact": "WackyAki (Aki#3250) , Logan",
"image": "https://cdn.discordapp.com/attachments/392039722089840673/423334186842193920/2018-03-14_00.09.35.png",
"discord": "https://discord.gg/9kuNUx8",
"symbol": "https://static.miraheze.org/civclassicwiki/thumb/d/d2/Banner_of_Okashima.png/200px-Banner_of_Okashima.png",
"Zoom Visibility": 5,
"notes": "Contact the Unified Map Project if you have any info about this",
"id": "d3180396-79cb-48ae-8595-3e6c1e474c76"
},
{
"name": "? (two houses)",
"x": 3150,
"z": -4625,
"image": "https://i.imgur.com/ZEJjnJC.png",
"Zoom Visibility": 5,
"notes": "Near \"Oak-Springs Farmland\". Contact the Unified Map Project if you have any info about this",
"id": "eeb1b837-d03d-4644-b57e-3b22c750a867"
},
{
"name": "Aberdeen",
"x": 8888,
"z": 553,
"nation": "Caledonia",
"contact": "/u/Badkneemcgee",
"image": "https://cdn.discordapp.com/attachments/563827477911306240/624845980100984832/2019-09-20_22.47.32.png",
"discord": "https://discord.gg/MQWAynhakA",
"symbol": "https://cdn.discordapp.com/attachments/443008910136180746/478646214208782347/flagger.png",
"visitors": "welcome",
"Zoom Visibility": 1,
"id": "b6d69815-aeec-4428-8be1-843fd8eea1ac"
},
{
"name": "Abilene",
"x": -1928,
"z": -4688,
"nation": "Jolington",
"image": "https://i.imgur.com/s6BgWVh.png",
"image_album": "https://imgur.com/a/sU1Bk6j",
"Zoom Visibility": 4,
"id": "935914b1-92a0-4400-b02d-5dbe1c9e1813",
"Appomattox Builder's Association - Rating": "-"
},
{
"name": "Adina",
"x": 4800,
"z": 5750,
"nation": "Adina (Caledonia)",
"contact": "Imp#7400, Evann#4245, prawny#0856, KiWi#6785",
"image": "https://i.imgur.com/vzBlFTS.png",
"image_album": "https://imgur.com/a/8X0zSQ2",
"discord": "https://discord.gg/QyM35B5",
"wiki": "https://civwiki.org/wiki/Adina",
"symbol": "https://cdn.discordapp.com/attachments/595687812116905995/595688115394314252/image0.png",
"Zoom Visibility": 3,
"nickname": "Adina (Caledonia)",
"id": "f25120de-712f-4a13-9cb1-270d6df1067c"
},
{
"name": "Admin Town",
"x": -9250,
"z": -9250,
"contact": "u/LordOfMarzipan",
"image": "https://i.imgur.com/DKG60Zj.png",
"image_album": "https://imgur.com/a/z1JG8qZ",
"Zoom Visibility": 3,
"notes": "Outside the world border, the admins decided to have some fun and tease the players with a giant unreachable tower of beacons, diamond, and Exp.",
"nickname": "Admin Town",
"id": "e66a1858-977c-4210-83ba-9b8b248b792b"
},
{
"name": "Aethelsholm",
"x": 3651,
"z": -3732,
"nation": "Annwyn (Nyasaland)",
"contact": "u/konijntjeu",
"discord": "https://discord.gg/4NNV9A7",
"web": "https://www.reddit.com/r/civclassics/comments/9cmrv2/the_land_of_annwyn/",
"wiki": "https://civwiki.org/wiki/Annwyn",
"Zoom Visibility": 4,
"id": "63b503da-6ff7-4a9c-b28d-e128e9e21d54"
},
{
"name": "Aether Valley",
"x": -7701,
"z": 8152,
"nation": "Etherium",
"contact": "DarkJesusmn",
"Zoom Visibility": 4,
"notes": "Formerly Kielessen, now annexed by Etherium. Builds of Maester's Alliance style.",
"nickname": "Aether Valley",
"id": "5be55edf-b2c8-4796-8c6f-a1cdef9ab36b"
},
{
"name": "Airhaven",
"x": -4556,
"z": 9115,
"nation": "Airhaven",
"contact": "u/Captain_Klutz",
"image": "https://cdn.discordapp.com/attachments/382625600793346060/457868378711785473/2018-06-17_13.14.24.png",
"discord": "https://discord.gg/npjVTR9",
"wiki": "https://civwiki.org/wiki/Airhaven",
"symbol": "https://cdn.discordapp.com/attachments/382625600793346060/416202808816041995/Airhaven.png",
"visitors": "welcome",
"Zoom Visibility": 3,
"nickname": "Airhaven",
"id": "0fc4f590-4044-4d79-ba06-564cf824e89c",
"SpecificLanguage's Notes - Tier": 11,
"SpecificLanguage's Notes - Notes": "Great pagodas, great location, great use of everything.",
"Appomattox Builder's Association - Rating": "-"
},
{
"name": "Alberney",
"x": -10337,
"z": 489,
"nation": "Formerly: Holy Jaded Empire",
"contact": "ComradeNick",
"image": "https://i.imgur.com/wLEP1A4.png",
"discord": "ask",
"wiki": "https://civwiki.org/wiki/Holy_Jaded_Empire#Alberney",
"symbol": "https://static.miraheze.org/civclassicwiki/2/2e/HJEFlagSomewhatOutdated.png",
"Zoom Visibility": 3,
"notes": "Contact the Unified Map Project if you have any info about this",
"nickname": "Alberney",
"id": "a3febe42-c99a-4bb9-b3bb-e52daf1831ad",
"Appomattox Builder's Association - Rating": "-"
},
{
"name": "Albion",
"x": -7470,
"z": -5038,
"nation": "Nevrast (Varkonia) - Formerly: Corvus, Impasse",
"contact": "/u/EggpankakesV2",
"image": "https://i.redd.it/ixwt13ndty811.png",
"discord": "https://discord.gg/69kGW7D",
"web": "https://www.reddit.com/r/civclassics/comments/8xeirx/looking_for_settlers/",
"wiki": "https://civwiki.org/wiki/Impasse#Albion",
"symbol": "https://cdn.discordapp.com/attachments/321815151453929473/441698326908502016/unknown.png",
"visitors": "ask first",
"Zoom Visibility": 3,
"notes": "not to be confused with the nation Albion in -,+",
"id": "e03c0543-282d-4908-ba15-35e592e1ecb2"
},
{
"name": "Albion",
"x": -7200,
"z": 3600,
"nation": "Albion (Commonwealth)",
"contact": "Duke_Arioch",
"web": "https://docs.google.com/document/d/1NivcNq1poZz5tjrQGdb9IPLakqcona4jUbdW_8KGeK0/edit",
"symbol": "https://upload.wikimedia.org/wikipedia/en/thumb/a/ae/Flag_of_the_United_Kingdom.svg/1280px-Flag_of_the_United_Kingdom.svg.png",
"visitors": "welcome",
"Zoom Visibility": 4,
"nickname": "Albion",
"id": "ffd04c76-a6a0-4999-b701-e57391edf595",
"SpecificLanguage's Notes - Tier": 5,
"SpecificLanguage's Notes - Notes": "Quaint factor is up to a 9.",
"Appomattox Builder's Association - Rating": "-"
},
{
"name": "Alexandria",
"x": 555,
"z": 8222,
"nation": "Nro'meagh",
"contact": "gordona22",
"image": "https://cdn.discordapp.com/attachments/633081276060139542/647662716206579722/2019-11-22_23.53.02.png",
"discord": "https://discord.gg/ewcXXuQ",
"symbol": "https://cdn.discordapp.com/attachments/649048618669703189/663439236426498079/Minecraft_Banner_Gallery_-_Google_Chrome_1_5_2020_12_48_41_PM_2.png",
"Zoom Visibility": 3,
"id": "8803152c-faf8-4be1-b528-0725859b2cfd"
},
{
"name": "Altton",
"x": -1798,
"z": -5950,
"nation": "Delve - Formerly: Grand Imperium",
"contact": "attoprak (atto)",
"image": "https://cdn.discordapp.com/attachments/658773139689570304/666301956599578626/Screenshot_924.png",
"discord": "https://discord.gg/PQZYzWW",
"web": "r/GrandImperium",
"wiki": "https://civwiki.org/wiki/Grand_Imperium",
"symbol": "https://i.imgur.com/673iInD.jpg",
"visitors": "ask first",
"Zoom Visibility": 3,
"id": "b9dd5d05-60f4-4dca-9d16-7103bc03a98d"
},
{
"name": "Anacreon",
"x": 10000,
"z": 3444,
"nation": "Halcyon",
"contact": "Deo#2690 ",
"visitors": "ask first",
"Zoom Visibility": 3,
"notes": "Preferably join discord or else guards may attack",
"id": "631683fc-9756-4750-8745-777dfdcab15c"
},
{
"name": "Anarchia",
"x": 1555,
"z": -5111,
"nation": "Nyasaland - Formerly: Kanagawa (Gensokyo)",
"contact": "Takovata",
"image": "https://cdn.discordapp.com/attachments/480400649851502604/517785589311864842/unknown.png",
"discord": "https://discord.gg/6e4yJpx",
"wiki": "https://civwiki.org/wiki/Kanagawa#Faliea_Prefecture",
"symbol": "https://i.imgur.com/P9ZkmrS.png",
"Zoom Visibility": 3,
"notes": "formerly known as Auslafen during Kaltsburg period https://www.reddit.com/r/civclassics/comments/9d6c5d/the_principality_of_auslaufen_new_nation_in/ and later Faliea",
"nickname": "Anarchia",
"id": "e272cca4-8f30-47ee-822f-8a88d8f74c9c"
},
{
"name": "Anburon",
"x": -1070,
"z": -500,
"nation": "Imperial Truidence - Formerly: Westeros",
"contact": "u/ObtainableSpatula",
"image": "https://cdn.discordapp.com/attachments/812188404028669972/832796230072795216/2021-04-16_19.44.20.png",
"discord": "https://discord.gg/UWEj7mh",
"web": "https://www.reddit.com/r/civclassics/comments/b80ay4/i_declare_the_nation_of_imperial_truidence/",
"wiki": "https://civwiki.org/wiki/Imperial_Truidence",
"symbol": "https://cdn.discordapp.com/attachments/562223187509772290/574013337722028033/IT-logo.jpg",
"visitors": "welcome",
"Zoom Visibility": 1,
"notes": "Originally named Concord (under Westeros), but abandoned early into the server",
"nickname": "Imperial Truidence",
"id": "a44cc3b0-29cd-4794-921a-c1fe3a0e5788"
},
{
"name": "Ancapistan",
"x": -2200,
"z": 5400,
"nation": "Yoahtl - Formerly: Nro'meagh, Ancapistan",
"contact": "WackyAki (Aki#3250), /u/jellykidnoo ",
"web": "https://www.reddit.com/r/civclassics/comments/8umh6h/new_lands_claimed_by_ancapistan/",
"Zoom Visibility": 5,
"nickname": "Yoahtl - Formerly: Nro'meagh, Ancapistan",
"id": "f9c535eb-53c7-41e5-b1cb-d7401e45b0b9"
},
{
"name": "Andeon",
"x": 6775,
"z": -6450,
"nation": "Eon Empire",
"contact": "EVDan",
"discord": "https://discord.gg/HsQqGH5tWX",
"visitors": "welcome",
"Zoom Visibility": 3,
"id": "465726f8-df7c-4b87-8a28-20e763802616"
},
{
"name": "Anguish",
"x": 12300,
"z": -950,
"nation": "Mir - Formerly: Anguish",
"contact": "Coni_s2",
"wiki": "https://civwiki.org/wiki/Somber_War#Anguish",
"symbol": "https://cdn.discordapp.com/attachments/341117357231570944/377161295474196480/Anguish_Flag.jpg",
"visitors": "KEEP OUT",
"Zoom Visibility": 4,
"notes": "conquered by Mir during the Somber War",
"nickname": "Anguish",
"id": "a5154dd9-c1d6-406a-b894-bdd8073ca9df"
},
{
"name": "Anguish Vault",
"x": 12882,
"z": -1750,
"nation": "Mir - Formerly: Anguish",
"contact": "Coni_s2",
"image": "https://cdn.discordapp.com/attachments/367499728675405825/367710940558393345/anguishmeme.png",
"wiki": "https://civwiki.org/wiki/Somber_War#Anguish",
"symbol": "https://cdn.discordapp.com/attachments/341117357231570944/377161295474196480/Anguish_Flag.jpg",
"visitors": "KEEP OUT",
"Zoom Visibility": 3,
"notes": "conquered by Mir during the Somber War",
"id": "c00bc5c7-6526-459d-9708-b9ff610e9bf6"
},
{
"name": "Angullia",
"x": -1820,
"z": -3340,
"nation": "Bloom (Icenia) - Formerly: Angullia, Casia",
"contact": "Clara422",
"image": "https://vignette.wikia.nocookie.net/civclassic/images/1/1a/2017-06-22_16.18.59.png",
"discord": "https://discord.gg/97uunvF",
"web": "/r/civcasia",
"symbol": "https://cdn.discordapp.com/attachments/324008477943136276/329339571424985088/Casia.png",
"Zoom Visibility": 4,
"notes": "town originally called Casia",
"nickname": "Angullia",
"id": "f925c3c1-0f53-4ec4-acda-afa87c32281d",
"Appomattox Builder's Association - Rating": "-"
},
{
"name": "Ankara",
"x": -5741,
"z": 9929,
"nation": "Resimere (Yoahtl)",
"contact": "/u/Avery_Goodname",
"image": "https://cdn.discordapp.com/attachments/403989285755158538/486539386427670538/2018-09-04_09.05.45.png",
"discord": "https://discord.gg/9cGQqeg",
"wiki": "https://civwiki.org/wiki/https://civwiki.org/wiki/Resimere#Ankara",
"symbol": "https://static.miraheze.org/civclassicwiki/thumb/f/ff/Resimarian_Flag.PNG/200px-Resimarian_Flag.PNG",
"visitors": "ask first",
"Zoom Visibility": 3,
"nickname": "Resimere",
"id": "325f5e5e-6f80-43e4-b028-1f45ff2c8600"
},
{
"name": "Annwyn",
"x": 3800,
"z": -3850,
"nation": "Annwyn (Nyasaland)",
"contact": "u/konijntjeu @Nekomant#1621",
"image": "https://cdn.discordapp.com/attachments/422250595911729155/463026087102906368/unknown.png",
"image_album": "https://imgur.com/a/VSuEF1x",
"discord": "https://discord.gg/usN78Ur",
"web": "https://www.reddit.com/r/civclassics/comments/8vccul/announcing_the_kinship_of_mithrin/",
"wiki": "https://civwiki.org/wiki/Mithrin",
"symbol": "https://my.mixtape.moe/chbrzk.jpg",
"Zoom Visibility": 3,
"notes": "formerly called Mithrin",
"nickname": "Annwyn",
"id": "dac22bae-27a8-4a0b-a730-5fc69dc56ed2"
},
{
"name": "Anthem",
"x": 8400,
"z": 5890,
"nation": "Halcyon",
"contact": "Deo#2690 or liquidstereo#6219",
"Zoom Visibility": 3,
"id": "7a76f211-5f86-4ed9-8585-30677b4e2e05"
},
{
"name": "Antietam",
"x": 7000,
"z": -2500,
"nation": "Sussex: Formerly Appomattox",
"contact": "u/Tomocat",
"image": "https://i.imgur.com/9x01BO1.png",
"image_album": "https://imgur.com/a/qoCRjXn",
"discord": "https://discord.gg/rvumd3w",
"web": "r/Appomattox",
"wiki": "https://civwiki.org/wiki/https://civwiki.org/wiki/Appomattox",
"symbol": "https://i.imgur.com/1ptsOpg.png",
"Zoom Visibility": 3,
"id": "506f975d-553f-4792-a05f-6bd8413a576d",
"SpecificLanguage's Notes - Tier": 1,
"SpecificLanguage's Notes - Notes": "Despite the pickle rick, it looks pretty bad anyway.",
"Appomattox Builder's Association - Rating": "-"
},
{
"name": "Antietam Isles",
"x": -1312,
"z": -1154,
"nation": "Icenia - Formerly: Antietam Isles",
"contact": "/u/throwawakawakwakwak",
"Zoom Visibility": 4,
"notes": "Contact the Unified Map Project if you have any info about this",
"id": "598c196b-ab2b-40f8-817d-c05f7a0021ed"
},
{
"name": "Antigua",
"x": 5700,
"z": 5500,
"nation": "Adina (Formerly Antigua)",
"contact": "Imp#7400, Evann#4245, prawny#0856, KiWi#6785",
"web": "https://www.reddit.com/r/civclassics/comments/9mj9f5/official_claims_of_antigua/",
"symbol": "https://cdn.discordapp.com/attachments/334324811318689793/516291878010880070/2018-11-25-173823_218x145_scrot.png",
"Zoom Visibility": 3,
"id": "a1f32336-5d6b-4785-b1d0-99bdffb49909"
},
{
"name": "Antonos",
"x": 1150,
"z": 6750,
"nation": "Yoahtl - Formerly: Vinland, Antonos",
"contact": "WackyAki (Aki#3250) ",
"image": "https://i.imgur.com/Dzp61g6.png",
"Zoom Visibility": 4,
"nickname": "Antonos",
"id": "e3ba390e-cf52-4be2-b770-03c0dd7e8fc9",
"Appomattox Builder's Association - Rating": "-"
},
{
"name": "Apoland",
"x": -5100,
"z": -9900,
"nation": "Columbia",
"contact": "lemur#4071 or Knota#7633 via discord",
"image": "https://i.imgur.com/0R9Z28G.png",
"image_album": "https://imgur.com/a/fm4unxT",
"discord": "Ask ",
"web": "https://www.reddit.com/r/CivColumbia/",
"wiki": "https://civwiki.org/wiki/Columbia",
"visitors": "welcome",
"Zoom Visibility": 3,
"id": "b76faca7-7b87-4987-b844-48e2d5335697"
},
{
"name": "Aquaderia",
"x": -11840,
"z": -603,
"nation": "Formerly: Holy Jaded Empire (Dhara)",
"contact": "Mrmamizoupie",
"image": "https://static.miraheze.org/civclassicwiki/2/2e/HJEFlagSomewhatOutdated.png",
"image_album": "https://imgur.com/a/wNXv3",
"discord": "ask",
"wiki": "https://civwiki.org/wiki/Dhara#Aquaderia",
"symbol": "https://static.miraheze.org/civclassicwiki/2/2e/HJEFlagSomewhatOutdated.png",
"Zoom Visibility": 3,
"nickname": "Aquaderia",
"id": "f78ef6e5-ce66-4263-9213-eb84144b516a",
"SpecificLanguage's Notes - Tier": 8,
"SpecificLanguage's Notes - Notes": "It has some pretty impressive building for underground, and also, it makes purpur look good.",
"Appomattox Builder's Association - Rating": "-"
},
{
"name": "Arem",
"x": 7717,
"z": 3950,
"nation": "Monterrey Formerly: Republic of Asiro, Estiran Confederacy",
"contact": "MrDoomBringer",
"image": "https://cdn.discordapp.com/attachments/812188404028669972/863839936729710602/unknown.png",
"Zoom Visibility": 4,
"notes": "Founded in 2020",
"id": "e6bb3230-5656-4b09-bcfd-4e88e6ad89cb"
},
{
"name": "Arkhangel",
"x": 3824,
"z": -5142,
"nation": "Arkhangel",
"contact": "/u/Akatavi",
"Zoom Visibility": 4,
"id": "f3f005d7-8333-4915-8e24-e8a6a0014d93"
},
{
"name": "Arran",
"x": -8200,
"z": 5100,
"nation": "Commonwealth",
"contact": "brinton",
"discord": "https://discord.gg/j4fNWrk",
"web": "r/CivCommonwealth",
"wiki": "https://civwiki.org/wiki/Commonwealth#Arran",
"symbol": "https://cdn.discordapp.com/attachments/313388169095806986/317805528531206145/image.jpg",
"Zoom Visibility": 4,
"nickname": "Arran",
"id": "a8b6cf86-4efc-4304-941b-d0eb1d9c91c4",
"SpecificLanguage's Notes - Tier": 3,
"SpecificLanguage's Notes - Notes": "I know Arran isn\u2019t known for builds. But it\u2019s built very purposefully."
},
{
"name": "Arrelani",
"x": 2509,
"z": 975,
"nation": "Caledonia",
"Zoom Visibility": 4,
"id": "70462198-a0c8-4656-8ab9-1f5efe1239b0"
},
{
"name": "Arsenio",
"x": 4617,
"z": -6901,
"nation": "Icenia (Formerly: The Empire - Formerly: Eddie Murphy)",
"contact": "Naglafer#0299, Yodabird19#1542",
"symbol": "https://static.miraheze.org/civclassicwiki/9/95/EM-Flag.png",
"Zoom Visibility": 3,
"nickname": "Eddie Murphy",
"id": "283afe6d-61c4-4a38-8784-2808e9b4c5f7"
},
{
"name": "Arstotzka",
"x": 6797,
"z": -1727,
"nation": "Arstotzka",
"contact": "u/pigmygnome",
"image": "https://i.imgur.com/Id8GjWC.png",
"web": "https://www.reddit.com/r/civclassics/comments/8jeewj/new_claims_map_send_in_your_borders/dz8yhao/",
"symbol": "https://i.imgur.com/Ne6Mj8Q.png",
"Zoom Visibility": 4,
"notes": "Contact the Unified Map Project if you have any info about this",
"nickname": "Arstotzka",
"id": "8173be08-24ec-424f-acdf-b21ce96bbb71"
},
{
"name": "Ashguard Basin",
"x": -9744,
"z": 4154,
"nation": "Commonwealth (Meditat)",
"contact": "Erecyn",
"discord": "https://discord.gg/j4fNWrk",
"web": "r/CivCommonwealth",
"symbol": "https://cdn.discordapp.com/attachments/415706745566920716/461064957166092289/MeditatTry3.png",
"Zoom Visibility": 4,
"nickname": "Ashguard Basin",
"id": "fda96fe1-129f-4b21-85c6-0d20078f808f"
},
{
"name": "Astanna",
"x": -6100,
"z": 6300,
"nation": "Mir - Formerly: Vzis",
"contact": "Coni_s2",
"discord": "ask",
"wiki": "https://civwiki.org/wiki/Vzis",
"symbol": "https://vignette.wikia.nocookie.net/civclassic/images/f/fa/Vzis.png",
"Zoom Visibility": 4,
"notes": "Sometimes also called Sunfall. Contact the Unified Map Project if you have any info about this",
"id": "1e7d2e43-e781-4782-815c-f3825eba17aa"
},
{
"name": "Atlantis",
"x": -7120,
"z": -2780,
"nation": "Atlantis",
"contact": "u/Matticus_Rex",
"image": "https://c1.staticflickr.com/1/974/40281785520_0ce109584d_c.jpg",
"image_album": "https://flic.kr/s/aHsmfJSGEL",
"discord": "https://discord.gg/nSxSkWe",
"web": "https://www.reddit.com/r/civclassics/comments/8od8af/introducing_atlantis_an_elegant_city_for_a_more/",
"visitors": "welcome",
"Zoom Visibility": 3,
"nickname": "Atlantis",
"id": "e5476756-fc31-4578-ba03-499124f600f4",
"Appomattox Builder's Association - Rating": "3.14",
"Appomattox Builder's Association - Note": "Could be better, but still a nice place to visit"
},
{
"name": "Augska",
"x": -2778,
"z": -7736,
"nation": "Columbia - Formerly: Polska",
"contact": "shadedoom#4559",
"image": "https://i.imgur.com/VY8h9wB.png",
"image_album": "https://imgur.com/a/2yCMsQW",
"Zoom Visibility": 3,
"notes": "Formerly Augska, renamed after long inactivity period",
"nickname": "Columbia - Formerly: Polska",
"id": "fed962c6-0330-4f57-a1de-2bd3d20fecda",
"Appomattox Builder's Association - Rating": "-"
},
{
"name": "Aureus",
"x": 1750,
"z": -4600,
"nation": "SPQR (Varkonia) - Formerly: Aureus",
"contact": "u/waterfruity",
"discord": "https://discord.gg/JFcD46k",
"web": "https://www.reddit.com/r/civclassics/comments/8jeewj/new_claims_map_send_in_your_borders/dz032ju/",
"symbol": "https://vignette.wikia.nocookie.net/civclassic/images/c/c6/Spqr.png",
"Zoom Visibility": 4,
"id": "9120febb-e010-4840-a685-02f136a207ab"
},
{
"name": "Aurora",
"x": 3100,
"z": 3200,
"nation": "Aurora (Commonwealth)",
"contact": "/u/Tambien",
"discord": "https://discord.gg/kU75Mjg",
"symbol": "https://i.imgur.com/R3Y1D3r.png",
"Zoom Visibility": 4,
"notes": "founded by Bennyboo19 on october 2018 as \"Sozialstaat\"",
"nickname": "Aurora (Commonwealth)",
"id": "11aaa25d-9102-4b2d-b0ad-ae933d241d72"
},
{
"name": "Avalon",
"x": 1950,
"z": -980,
"nation": "Camelot (Imperial Truidence)",
"contact": "Stardust of Benevolence#6969 ",
"symbol": "https://cdn.discordapp.com/attachments/839650002669273129/867457261919010856/Colonial_Flag_TemplateCamelot.png",
"Zoom Visibility": 3,
"notes": "Formerly called Craiggrad",
"id": "90e5920b-ea23-4811-950c-68c923842ee3"
},
{
"name": "Avrelia",
"x": 7325,
"z": -3599,
"nation": "Sussex - Formerly: Appomattox",
"image": "https://i.imgur.com/Z2yeC6w.png",
"image_album": "https://imgur.com/a/IaChZSW",
"wiki": "https://civwiki.org/wiki/Appomattox#Avrelia",
"symbol": "https://static.miraheze.org/civclassicwiki/thumb/b/b9/AppomattoxFlag.png/200px-AppomattoxFlag.png",
"Zoom Visibility": 4,
"notes": "Contact the Unified Map Project if you have any info about this",
"id": "177fe020-b364-45b6-a977-3e9cca66633e"
},
{
"name": "Awen",
"x": 3665,
"z": -3840,
"nation": "Annwyn (Nyasaland)",
"contact": "u/konijntjeu",
"discord": "https://discord.gg/4NNV9A7",
"web": "https://www.reddit.com/r/civclassics/comments/9cmrv2/the_land_of_annwyn/",
"Zoom Visibility": 4,
"id": "2cb6bd58-3f77-48e4-83e5-bf7b8d59862f"
},
{
"name": "Awoo's Playground",
"x": 9191,
"z": -9191,
"nation": "Hjaltland",
"contact": "Shapha#7649, awooooo",
"image": "https://static.miraheze.org/civclassicwiki/4/4c/USA.jpg",
"visitors": "KEEP OUT",
"Zoom Visibility": 3,
"id": "f32ed5d7-15af-4675-b4f0-6c7ec7d0264e"
},
{
"name": "Axiom",
"x": 3000,
"z": -1001,
"nation": "Formerly: Verda",
"contact": "u/MagmusCivcraft",
"wiki": "https://civwiki.org/wiki/Verda#The_Axiomite_Regency",
"symbol": "https://cdn.discordapp.com/attachments/320668933260705795/327863358000726028/Verda_Flag.png",
"Zoom Visibility": 4,
"notes": "built by columbians before they moved to -,-",
"id": "6ad14393-06d3-4623-b04d-fe6989a14560"
},
{
"name": "Axochitlan",
"x": 3300,
"z": 12000,
"nation": "Yoahtl - Formerly: Laconia",
"contact": "WackyAki (Aki#3250) ",
"wiki": "https://civwiki.org/wiki/Laconia#Axochitlan",
"Zoom Visibility": 4,
"notes": "Once called Pompeii",
"id": "407715a8-7028-44b2-830e-d37b2ebec8f2",
"Appomattox Builder's Association - Rating": "-"
},
{
"name": "Aynor",
"x": 10700,
"z": -4900,
"nation": "Iria",
"contact": "RedDevel#6158",
"image": "https://static.miraheze.org/civclassicwiki/5/5a/IriaRender.jpg",
"discord": "https://discord.gg/BVjuTwb",
"wiki": "https://civwiki.org/wiki/Iria#Aynor",
"symbol": "https://i.imgur.com/U5ALA6R.png",
"Zoom Visibility": 3,
"notes": "Contact the Unified Map Project if you have any info about this",
"id": "705ceee2-9b27-4271-a0ee-a65e1fbf652a"
},
{
"name": "Bakerswood",
"x": -2698,
"z": -2010,
"nation": "Gabon",