From 785ebb26cc6b5a9a9d7e42d162502308f6288f64 Mon Sep 17 00:00:00 2001 From: Kilvoctu Date: Wed, 18 Dec 2019 18:37:16 -0600 Subject: [PATCH 1/9] Update with cabins Support for a bunch of additional cabins added a while ago --- .../Graphical_Overmap/overmap_terrain.json | 112 ++++++++++++++++++ 1 file changed, 112 insertions(+) diff --git a/data/mods/Graphical_Overmap/overmap_terrain.json b/data/mods/Graphical_Overmap/overmap_terrain.json index 4ba7b584c3525..dab26f768102c 100644 --- a/data/mods/Graphical_Overmap/overmap_terrain.json +++ b/data/mods/Graphical_Overmap/overmap_terrain.json @@ -203,6 +203,118 @@ "copy-from": "cabin", "sym": "â", "color": "brown" + }, + { + "type": "overmap_terrain", + "id": "cabin", + "name": "cabin", + "sym": "â", + "color": "i_green" + }, + { + "type": "overmap_terrain", + "id": "cabin_roof", + "name": "cabin roof", + "sym": "â", + "color": "i_green" + }, + { + "type": "overmap_terrain", + "id": "cabin_1", + "name": "cabin", + "sym": "â", + "color": "i_green" + }, + { + "type": "overmap_terrain", + "id": "cabin_roof_1", + "name": "cabin roof", + "sym": "â", + "color": "i_green" + }, + { + "type": "overmap_terrain", + "id": "cabin_2", + "name": "cabin", + "sym": "â", + "color": "i_green" + }, + { + "type": "overmap_terrain", + "id": "cabin_roof_2", + "name": "cabin roof", + "sym": "â", + "color": "i_green" + }, + { + "type": "overmap_terrain", + "id": "cabin_3", + "name": "cabin", + "sym": "â", + "color": "i_green" + }, + { + "type": "overmap_terrain", + "id": "cabin_roof_3", + "name": "cabin roof", + "sym": "â", + "color": "i_green" + }, + { + "type": "overmap_terrain", + "id": "cabin_4", + "name": "cabin", + "sym": "â", + "color": "i_green" + }, + { + "type": "overmap_terrain", + "id": "cabin_roof_4", + "name": "cabin roof", + "sym": "â", + "color": "i_green" + }, + { + "type": "overmap_terrain", + "id": "cabin_5", + "name": "cabin", + "sym": "â", + "color": "i_green" + }, + { + "type": "overmap_terrain", + "id": "cabin_roof_5", + "name": "cabin roof", + "sym": "â", + "color": "i_green" + }, + { + "type": "overmap_terrain", + "id": "cabin_6", + "name": "cabin", + "sym": "â", + "color": "i_green" + }, + { + "type": "overmap_terrain", + "id": "cabin_roof_6", + "name": "cabin roof", + "sym": "â", + "color": "i_green" + }, + { + "type": "overmap_terrain", + "id": "cabin_7", + "name": "cabin", + "sym": "â", + "color": "i_green" + }, + { + "type": "overmap_terrain", + "id": "cabin_roof_7", + "name": "cabin roof", + "sym": "â", + "color": "i_green" }, { "type": "overmap_terrain", From c941385750b304b9d48a75a716e69d7573fab929 Mon Sep 17 00:00:00 2001 From: Kilvoctu Date: Wed, 18 Dec 2019 18:42:23 -0600 Subject: [PATCH 2/9] Add support for More_City_Locations mod --- .../mod support/overmap_terrain_cityside.json | 51 +++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 data/mods/Graphical_Overmap/mod support/overmap_terrain_cityside.json diff --git a/data/mods/Graphical_Overmap/mod support/overmap_terrain_cityside.json b/data/mods/Graphical_Overmap/mod support/overmap_terrain_cityside.json new file mode 100644 index 0000000000000..4a71faaa2c35f --- /dev/null +++ b/data/mods/Graphical_Overmap/mod support/overmap_terrain_cityside.json @@ -0,0 +1,51 @@ +[ + { + "type": "overmap_terrain", + "id": "s_butcher", + "name": "butcher", + "sym": "ç", + "color": "i_red" + }, + { + "type": "overmap_terrain", + "id": "s_bike_shop", + "name": "bicycle shop", + "sym": "ç", + "color": "i_cyan" + }, + { + "type": "overmap_terrain", + "id": "daycare", + "name": "day care", + "sym": "ç", + "color": "light_blue" + }, + { + "type": "overmap_terrain", + "id": "post_office", + "name": "post office", + "sym": "ç", + "color": "white" + }, + { + "type": "overmap_terrain", + "id": "fishing_supply", + "name": "post office", + "sym": "ç", + "color": "light_cyan" + }, + { + "type": "overmap_terrain", + "id": "govt_office", + "name": "council office", + "sym": "ÿ", + "color": "white" + }, + { + "type": "overmap_terrain", + "id": "construction_site", + "name": "construction site", + "sym": "×", + "color": "i_yellow" + } +] From adeaa84384aa71b93141671c3e9068e50179c66c Mon Sep 17 00:00:00 2001 From: Kilvoctu Date: Wed, 18 Dec 2019 18:44:22 -0600 Subject: [PATCH 3/9] Add support for other mods mods: Fuji_Structures More_Locations secronom Urban_Development --- .../overmap_terrain_fujistruct.json | 298 ++ .../overmap_terrain_more_locations.json | 1731 +++++++++ .../mod support/overmap_terrain_secronom.json | 184 + .../overmap_terrain_urban_development.json | 3223 +++++++++++++++++ 4 files changed, 5436 insertions(+) create mode 100644 data/mods/Graphical_Overmap/mod support/overmap_terrain_fujistruct.json create mode 100644 data/mods/Graphical_Overmap/mod support/overmap_terrain_more_locations.json create mode 100644 data/mods/Graphical_Overmap/mod support/overmap_terrain_secronom.json create mode 100644 data/mods/Graphical_Overmap/mod support/overmap_terrain_urban_development.json diff --git a/data/mods/Graphical_Overmap/mod support/overmap_terrain_fujistruct.json b/data/mods/Graphical_Overmap/mod support/overmap_terrain_fujistruct.json new file mode 100644 index 0000000000000..ae3f53d7dc1ff --- /dev/null +++ b/data/mods/Graphical_Overmap/mod support/overmap_terrain_fujistruct.json @@ -0,0 +1,298 @@ +[ + { + "type": "overmap_terrain", + "id": "s_electronicstore", + "name": "electronics store", + "sym": "ç", + "color": "yellow" + }, + { + "type": "overmap_terrain", + "id": "s_electronicstore_2ndfloor", + "name": "electronics store", + "copy-from": "s_electronicstore" + }, + { + "type": "overmap_terrain", + "id": "s_gunstore", + "name": "gun store", + "sym": "ç", + "color": "red" + }, + { + "type": "overmap_terrain", + "id": "s_gunstore_2ndfloor", + "name": "gun store", + "copy-from": "s_gunstore" + }, + { + "type": "overmap_terrain", + "id": "s_gunstore_roof", + "name": "gun store", + "copy-from": "s_gunstore" + }, + { + "type": "overmap_terrain", + "id": "s_diner", + "name": "diner", + "sym": "ç", + "color": "green" + }, + { + "type": "overmap_terrain", + "id": "s_diner_2ndfloor", + "name": "diner", + "copy-from": "s_diner" + }, + { + "type": "overmap_terrain", + "id": "s_diner_roof", + "name": "diner", + "copy-from": "s_diner" + }, + { + "type": "overmap_terrain", + "id": "s_apt", + "name": "apartment", + "sym": "Ç", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "s_apt_2ndfloor", + "name": "apartment", + "copy-from": "s_apt" + }, + { + "type": "overmap_terrain", + "id": "s_apt_roof", + "name": "apartment", + "copy-from": "s_apt" + }, + { + "type": "overmap_terrain", + "id": "s_apt_2", + "name": "apartment", + "sym": "Ç", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "s_apt_2_2ndfloor", + "name": "apartment", + "copy-from": "s_apt_2" + }, + { + "type": "overmap_terrain", + "id": "s_apt_2_roof", + "name": "apartment", + "copy-from": "s_apt_2" + }, + { + "type": "overmap_terrain", + "id": "s_cardealer", + "name": "dealership", + "sym": "ç", + "color": "blue" + }, + { + "type": "overmap_terrain", + "id": "s_cardealer_roof", + "name": "dealership", + "copy-from": "s_cardealer" + }, + { + "type": "overmap_terrain", + "id": "s_camping", + "name": "outdoorsman's store", + "sym": "ç", + "color": "brown" + }, + { + "type": "overmap_terrain", + "id": "s_camping_roof", + "name": "outdoorsman's store", + "copy-from": "s_camping" + }, + { + "type": "overmap_terrain", + "id": "s_games", + "name": "gaming store", + "sym": "ç", + "color": "cyan" + }, + { + "type": "overmap_terrain", + "id": "s_games_roof", + "name": "gaming store", + "copy-from": "s_games" + }, + { + "type": "overmap_terrain", + "id": "s_air_term", + "name": "airport", + "sym": "ô", + "color": "i_cyan" + }, + { + "type": "overmap_terrain", + "id": "s_air_parking", + "name": "airport", + "sym": "ô", + "color": "i_cyan" + }, + { + "type": "overmap_terrain", + "id": "s_air_atc", + "name": "airport", + "sym": "ô", + "color": "i_cyan" + }, + { + "type": "overmap_terrain", + "id": "s_air_atc_2", + "name": "airport", + "sym": "ô", + "color": "i_cyan" + }, + { + "type": "overmap_terrain", + "id": "s_air_atc_3", + "name": "airport", + "sym": "ô", + "color": "i_cyan" + }, + { + "type": "overmap_terrain", + "id": "s_air_hangars", + "name": "airport", + "sym": "ý", + "color": "i_cyan" + }, + { + "type": "overmap_terrain", + "id": "s_air_runway", + "name": "runway", + "sym": "ô", + "color": "blue" + }, + { + "type": "overmap_terrain", + "id": "s_air_runway_hangars", + "name": "runway", + "sym": "ô", + "color": "blue" + }, + { + "type": "overmap_terrain", + "id": "s_air_runway_l", + "name": "runway", + "sym": "ô", + "color": "blue" + }, + { + "type": "overmap_terrain", + "id": "s_air_runway_r", + "name": "runway", + "sym": "ô", + "color": "blue" + }, + { + "type": "overmap_terrain", + "id": "s_air_runway_term", + "name": "runway", + "sym": "ô", + "color": "blue" + }, + { + "type": "overmap_terrain", + "id": "s_lightindustry_road_0", + "name": "light industry", + "sym": "Ö", + "color": "dark_gray" + }, + { + "type": "overmap_terrain", + "id": "s_lightindustry_road_1", + "name": "light industry", + "sym": "Ö", + "color": "dark_gray" + }, + { + "type": "overmap_terrain", + "id": "s_lightindustry_00", + "name": "light industry", + "sym": "Ö", + "color": "light_blue" + }, + { + "type": "overmap_terrain", + "id": "s_lightindustry_01", + "name": "light industry", + "sym": "Ö", + "color": "light_blue" + }, + { + "type": "overmap_terrain", + "id": "s_lightindustry_10", + "name": "light industry", + "sym": "Ö", + "color": "light_blue" + }, + { + "type": "overmap_terrain", + "id": "s_lightindustry_11", + "name": "light industry", + "sym": "Ö", + "color": "light_blue" + }, + { + "type": "overmap_terrain", + "id": "s_gas_g1", + "name": "gas station", + "sym": "ú", + "color": "light_blue" + }, + { + "type": "overmap_terrain", + "id": "s_gas_g0", + "name": "gas station", + "sym": "ú", + "color": "light_blue" + }, + { + "type": "overmap_terrain", + "id": "s_gas_b11", + "name": "reception", + "sym": "ú", + "color": "red" + }, + { + "type": "overmap_terrain", + "id": "s_gas_b20", + "name": "bunker", + "sym": "Õ", + "color": "red" + }, + { + "type": "overmap_terrain", + "id": "s_gas_b21", + "name": "bunker", + "sym": "Õ", + "color": "red" + }, + { + "type": "overmap_terrain", + "id": "s_bunker_shop_g", + "name": "derelict property", + "sym": "à", + "color": "white" + }, + { + "type": "overmap_terrain", + "id": "s_bunker_shop_b", + "name": "scavenger bunker", + "sym": "Õ", + "color": "light_green" + } +] diff --git a/data/mods/Graphical_Overmap/mod support/overmap_terrain_more_locations.json b/data/mods/Graphical_Overmap/mod support/overmap_terrain_more_locations.json new file mode 100644 index 0000000000000..1ee1b7dd6ed3b --- /dev/null +++ b/data/mods/Graphical_Overmap/mod support/overmap_terrain_more_locations.json @@ -0,0 +1,1731 @@ +[ + { + "type": "overmap_terrain", + "id": "bandit_tower_1gate", + "name": "apartment towers", + "sym": "Ç", + "color": "brown" + }, + { + "type": "overmap_terrain", + "id": "bandit_tower_1ybe", + "name": "apartment towers", + "sym": "Ç", + "color": "brown" + }, + { + "type": "overmap_terrain", + "id": "bandit_tower_1yle", + "name": "apartment towers", + "sym": "Ç", + "color": "brown" + }, + { + "type": "overmap_terrain", + "id": "bandit_tower_1yre", + "name": "apartment towers", + "sym": "Ç", + "color": "brown" + }, + { + "type": "overmap_terrain", + "id": "bandit_tower_1yte", + "name": "apartment towers", + "sym": "Ç", + "color": "brown" + }, + { + "type": "overmap_terrain", + "id": "bandit_tower_1cyblc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "bandit_tower_1cybrc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "bandit_tower_1cytlc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "bandit_tower_1cytrc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "bandit_tower_1blc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "bandit_tower_1brc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "bandit_tower_1tlc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "bandit_tower_1trc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "bandit_tower_2blc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "bandit_tower_2brc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "bandit_tower_2tlc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "bandit_tower_2trc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "bandit_tower_3blc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "bandit_tower_3brc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "bandit_tower_3tlc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "bandit_tower_3trc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "bandit_tower_4blc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "bandit_tower_4brc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "bandit_tower_4tlc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "bandit_tower_4trc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "bandit_tower_ublc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "bandit_tower_ubrc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "bandit_tower_utlc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "bandit_tower_utrc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "estate_umid", + "name": "mansion", + "sym": "Ð", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "estate_ube", + "name": "mansion", + "sym": "Ð", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "estate_ule", + "name": "mansion", + "sym": "Ð", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "estate_ure", + "name": "mansion", + "sym": "Ð", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "estate_ute", + "name": "mansion", + "sym": "Ð", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "estate_mid", + "name": "mansion", + "sym": "Ð", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "estate_1be", + "name": "mansion", + "sym": "Ð", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "estate_1bloc", + "name": "mansion", + "sym": "Ð", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "estate_1broc", + "name": "mansion", + "sym": "Ð", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "estate_1by", + "name": "mansion", + "sym": "Ð", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "estate_1ica", + "name": "mansion", + "sym": "Ð", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "estate_1icb", + "name": "mansion", + "sym": "Ð", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "estate_1icc", + "name": "mansion", + "sym": "Ð", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "estate_1icd", + "name": "mansion", + "sym": "Ð", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "estate_1le", + "name": "mansion", + "sym": "Ð", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "estate_1re", + "name": "mansion", + "sym": "Ð", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "estate_1te", + "name": "mansion", + "sym": "Ð", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "estate_1tloc", + "name": "mansion", + "sym": "Ð", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "estate_1troc", + "name": "mansion", + "sym": "Ð", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "estate_1ty", + "name": "mansion", + "sym": "Ð", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "estate_2be", + "name": "mansion", + "sym": "Ð", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "estate_2bloc", + "name": "mansion", + "sym": "Ð", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "estate_2broc", + "name": "mansion", + "sym": "Ð", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "estate_2ica", + "name": "mansion", + "sym": "Ð", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "estate_2icb", + "name": "mansion", + "sym": "Ð", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "estate_2icc", + "name": "mansion", + "sym": "Ð", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "estate_2icd", + "name": "mansion", + "sym": "Ð", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "estate_2le", + "name": "mansion", + "sym": "Ð", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "estate_2re", + "name": "mansion", + "sym": "Ð", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "estate_2te", + "name": "mansion", + "sym": "Ð", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "estate_2tloc", + "name": "mansion", + "sym": "Ð", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "estate_2troc", + "name": "mansion", + "sym": "Ð", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "factory_tlc", + "name": "factory", + "sym": "Ö", + "color": "i_black" + }, + { + "type": "overmap_terrain", + "id": "factory_te", + "name": "factory", + "sym": "Ö", + "color": "i_black" + }, + { + "type": "overmap_terrain", + "id": "factory_trc", + "name": "factory", + "sym": "Ö", + "color": "i_black" + }, + { + "type": "overmap_terrain", + "id": "factory_le", + "name": "factory", + "sym": "Ö", + "color": "i_black" + }, + { + "type": "overmap_terrain", + "id": "factory_mid", + "name": "factory", + "sym": "Ö", + "color": "i_black" + }, + { + "type": "overmap_terrain", + "id": "factory_re", + "name": "factory", + "sym": "Ö", + "color": "i_black" + }, + { + "type": "overmap_terrain", + "id": "factory_blc", + "name": "factory", + "sym": "Ö", + "color": "i_black" + }, + { + "type": "overmap_terrain", + "id": "factory_be", + "name": "factory", + "sym": "Ö", + "color": "i_black" + }, + { + "type": "overmap_terrain", + "id": "factory_be_gate", + "name": "factory", + "sym": "Ö", + "color": "i_black" + }, + { + "type": "overmap_terrain", + "id": "factory_brc", + "name": "factory", + "sym": "Ö", + "color": "i_black" + }, + { + "type": "overmap_terrain", + "id": "mil_outpost_ytlc", + "name": "mine field", + "sym": "¨", + "color": "brown" + }, + { + "type": "overmap_terrain", + "id": "mil_outpost_yte", + "name": "mine field", + "sym": "¨", + "color": "brown" + }, + { + "type": "overmap_terrain", + "id": "mil_outpost_ytrc", + "name": "mine field", + "sym": "¨", + "color": "brown" + }, + { + "type": "overmap_terrain", + "id": "mil_outpost_yle", + "name": "mine field", + "sym": "¨", + "color": "brown" + }, + { + "type": "overmap_terrain", + "id": "mil_outpost_yre", + "name": "mine field", + "sym": "¨", + "color": "brown" + }, + { + "type": "overmap_terrain", + "id": "mil_outpost_yblc", + "name": "mine field", + "sym": "¨", + "color": "brown" + }, + { + "type": "overmap_terrain", + "id": "mil_outpost_ybe", + "name": "mine field", + "sym": "¨", + "color": "brown" + }, + { + "type": "overmap_terrain", + "id": "mil_outpost_ybe_gate", + "name": "gate", + "sym": ".", + "color": "white" + }, + { + "type": "overmap_terrain", + "id": "mil_outpost_ybrc", + "name": "mine field", + "sym": "¨", + "color": "brown" + }, + { + "type": "overmap_terrain", + "id": "mil_outpost_1tlc", + "name": "military outpost", + "sym": "Å", + "color": "i_red" + }, + { + "type": "overmap_terrain", + "id": "mil_outpost_1te", + "name": "military outpost", + "sym": "Å", + "color": "i_red" + }, + { + "type": "overmap_terrain", + "id": "mil_outpost_1trc", + "name": "military outpost", + "sym": "Å", + "color": "i_red" + }, + { + "type": "overmap_terrain", + "id": "mil_outpost_1le", + "name": "military outpost", + "sym": "Å", + "color": "i_red" + }, + { + "type": "overmap_terrain", + "id": "mil_outpost_1mid", + "name": "military outpost", + "sym": "Å", + "color": "i_red" + }, + { + "type": "overmap_terrain", + "id": "mil_outpost_1re", + "name": "military outpost", + "sym": "Å", + "color": "i_red" + }, + { + "type": "overmap_terrain", + "id": "mil_outpost_1blc", + "name": "military outpost", + "sym": "Å", + "color": "i_red" + }, + { + "type": "overmap_terrain", + "id": "mil_outpost_1be", + "name": "military outpost", + "sym": "Å", + "color": "i_red" + }, + { + "type": "overmap_terrain", + "id": "mil_outpost_1brc", + "name": "military outpost", + "sym": "Å", + "color": "i_red" + }, + { + "type": "overmap_terrain", + "id": "mil_outpost_2tlc", + "name": "military outpost", + "sym": "Å", + "color": "i_red" + }, + { + "type": "overmap_terrain", + "id": "mil_outpost_2te", + "name": "military outpost", + "sym": "Å", + "color": "i_red" + }, + { + "type": "overmap_terrain", + "id": "mil_outpost_2trc", + "name": "military outpost", + "sym": "Å", + "color": "i_red" + }, + { + "type": "overmap_terrain", + "id": "mil_outpost_2le", + "name": "military outpost", + "sym": "Å", + "color": "i_red" + }, + { + "type": "overmap_terrain", + "id": "mil_outpost_2re", + "name": "military outpost", + "sym": "Å", + "color": "i_red" + }, + { + "type": "overmap_terrain", + "id": "mil_outpost_2blc", + "name": "military outpost", + "sym": "Å", + "color": "i_red" + }, + { + "type": "overmap_terrain", + "id": "mil_outpost_2be", + "name": "military outpost", + "sym": "Å", + "color": "i_red" + }, + { + "type": "overmap_terrain", + "id": "mil_outpost_2brc", + "name": "military outpost", + "sym": "Å", + "color": "i_red" + }, + { + "type": "overmap_terrain", + "id": "mil_outpost_3c", + "name": "military outpost", + "sym": "Å", + "color": "i_red" + }, + { + "type": "overmap_terrain", + "id": "mil_outpost_utlc", + "name": "military outpost", + "sym": "Å", + "color": "i_red" + }, + { + "type": "overmap_terrain", + "id": "mil_outpost_utea", + "name": "military outpost", + "sym": "Å", + "color": "i_red" + }, + { + "type": "overmap_terrain", + "id": "mil_outpost_uteb", + "name": "military outpost", + "sym": "Å", + "color": "i_red" + }, + { + "type": "overmap_terrain", + "id": "mil_outpost_utrc", + "name": "military outpost", + "sym": "Å", + "color": "i_red" + }, + { + "type": "overmap_terrain", + "id": "mil_outpost_ule", + "name": "military outpost", + "sym": "Å", + "color": "i_red" + }, + { + "type": "overmap_terrain", + "id": "mil_outpost_umid", + "name": "military outpost", + "sym": "Å", + "color": "i_red" + }, + { + "type": "overmap_terrain", + "id": "mil_outpost_umid_finale", + "name": "military outpost", + "sym": "Å", + "color": "red_white" + }, + { + "type": "overmap_terrain", + "id": "mil_outpost_ure", + "name": "military outpost", + "sym": "Å", + "color": "i_red" + }, + { + "type": "overmap_terrain", + "id": "mil_outpost_ublc", + "name": "military outpost", + "sym": "Å", + "color": "i_red" + }, + { + "type": "overmap_terrain", + "id": "mil_outpost_ubea", + "name": "military outpost", + "sym": "Å", + "color": "i_red" + }, + { + "type": "overmap_terrain", + "id": "mil_outpost_ubeb", + "name": "military outpost", + "sym": "Å", + "color": "i_red" + }, + { + "type": "overmap_terrain", + "id": "mil_outpost_ubrc", + "name": "military outpost", + "sym": "Å", + "color": "i_red" + }, + { + "type": "overmap_terrain", + "id": "3storyA_first", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "3storyA_second", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "3storyA_third", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "3storyA_basement", + "name": "house basement", + "sym": "à", + "color": "dark_gray" + }, + { + "type": "overmap_terrain", + "id": "3storyA_roof", + "name": "house roof", + "sym": "à", + "color": "dark_gray" + }, + { + "type": "overmap_terrain", + "id": "3storyB_first", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "3storyB_second", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "3storyB_third", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "3storyB_basement", + "name": "house basement", + "sym": "à", + "color": "dark_gray" + }, + { + "type": "overmap_terrain", + "id": "3storyB_roof", + "name": "house roof", + "sym": "à", + "color": "dark_gray" + }, + { + "type": "overmap_terrain", + "id": "3storyC_first", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "3storyC_second", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "3storyC_third", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "3storyC_basement", + "name": "house basement", + "sym": "à", + "color": "dark_gray" + }, + { + "type": "overmap_terrain", + "id": "3storyC_roof", + "name": "house roof", + "sym": "à", + "color": "dark_gray" + }, + { + "type": "overmap_terrain", + "id": "3storyD_first", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "3storyD_second", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "3storyD_third", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "3storyD_basement", + "name": "house basement", + "sym": "à", + "color": "dark_gray" + }, + { + "type": "overmap_terrain", + "id": "3storyD_roof", + "name": "house roof", + "sym": "à", + "color": "dark_gray" + }, + { + "type": "overmap_terrain", + "id": "3storyE_first", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "3storyE_second", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "3storyE_third", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "3storyE_basement", + "name": "house basement", + "sym": "à", + "color": "dark_gray" + }, + { + "type": "overmap_terrain", + "id": "3storyE_roof", + "name": "house roof", + "sym": "à", + "color": "dark_gray" + }, + { + "type": "overmap_terrain", + "id": "3storyF_first", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "3storyF_second", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "3storyF_third", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "3storyF_basement", + "name": "house basement", + "sym": "à", + "color": "dark_gray" + }, + { + "type": "overmap_terrain", + "id": "3storyF_roof", + "name": "house roof", + "sym": "à", + "color": "dark_gray" + }, + { + "type": "overmap_terrain", + "id": "2storyA_first", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "2storyA_second", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "2storyA_basement", + "name": "house basement", + "sym": "à", + "color": "dark_gray" + }, + { + "type": "overmap_terrain", + "id": "2storyA_roof", + "name": "house roof", + "sym": "à", + "color": "dark_gray" + }, + { + "type": "overmap_terrain", + "id": "2storyB_first", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "2storyB_second", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "2storyB_basement", + "name": "house basement", + "sym": "à", + "color": "dark_gray" + }, + { + "type": "overmap_terrain", + "id": "2storyB_roof", + "name": "house roof", + "sym": "à", + "color": "dark_gray" + }, + { + "type": "overmap_terrain", + "id": "2storyC_first", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "2storyC_second", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "2storyC_basement", + "name": "house basement", + "sym": "à", + "color": "dark_gray" + }, + { + "type": "overmap_terrain", + "id": "2storyC_roof", + "name": "house roof", + "sym": "à", + "color": "dark_gray" + }, + { + "type": "overmap_terrain", + "id": "2storyD_first", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "2storyD_second", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "2storyD_basement", + "name": "house basement", + "sym": "à", + "color": "dark_gray" + }, + { + "type": "overmap_terrain", + "id": "2storyD_roof", + "name": "house roof", + "sym": "à", + "color": "dark_gray" + }, + { + "type": "overmap_terrain", + "id": "2storyE_first", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "2storyE_second", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "2storyE_basement", + "name": "house basement", + "sym": "à", + "color": "dark_gray" + }, + { + "type": "overmap_terrain", + "id": "2storyE_roof", + "name": "house roof", + "sym": "à", + "color": "dark_gray" + }, + { + "type": "overmap_terrain", + "id": "2storyF_first", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "2storyF_second", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "2storyF_basement", + "name": "house basement", + "sym": "à", + "color": "dark_gray" + }, + { + "type": "overmap_terrain", + "id": "2storyF_roof", + "name": "house roof", + "sym": "à", + "color": "dark_gray" + }, + { + "type": "overmap_terrain", + "id": "combohouseA_first", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "combohouseA_second", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "combohouseA_basement", + "name": "house basement", + "sym": "à", + "color": "dark_gray" + }, + { + "type": "overmap_terrain", + "id": "combohouseA_roof", + "name": "house roof", + "sym": "à", + "color": "dark_gray" + }, + { + "type": "overmap_terrain", + "id": "combogarageA_first", + "name": "attached garage", + "sym": "^", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "combogarageA_second", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "combogarageA_roof", + "name": "house roof", + "sym": "à", + "color": "magenta_white" + }, + { + "type": "overmap_terrain", + "id": "combohouseB_first", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "combohouseB_second", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "combohouseB_basement", + "name": "house basement", + "sym": "à", + "color": "dark_gray" + }, + { + "type": "overmap_terrain", + "id": "combohouseB_roof", + "name": "house roof", + "sym": "à", + "color": "dark_gray" + }, + { + "type": "overmap_terrain", + "id": "combogarageB_first", + "name": "attached garage", + "sym": "^", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "combogarageB_second", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "combogarageB_roof", + "name": "house roof", + "sym": "à", + "color": "magenta_white" + }, + { + "type": "overmap_terrain", + "id": "combohouseC_first", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "combohouseC_second", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "combohouseC_basement", + "name": "house basement", + "sym": "à", + "color": "dark_gray" + }, + { + "type": "overmap_terrain", + "id": "combohouseC_roof", + "name": "house roof", + "sym": "à", + "color": "dark_gray" + }, + { + "type": "overmap_terrain", + "id": "combogarageC_first", + "name": "attached garage", + "sym": "^", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "combogarageC_second", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "combogarageC_roof", + "name": "house roof", + "sym": "à", + "color": "magenta_white" + }, + { + "type": "overmap_terrain", + "id": "refugee_tower_1gate", + "name": "apartment towers", + "sym": "Ç", + "color": "brown" + }, + { + "type": "overmap_terrain", + "id": "refugee_tower_1ybe", + "name": "apartment towers", + "sym": "Ç", + "color": "brown" + }, + { + "type": "overmap_terrain", + "id": "refugee_tower_1yle", + "name": "apartment towers", + "sym": "Ç", + "color": "brown" + }, + { + "type": "overmap_terrain", + "id": "refugee_tower_1yre", + "name": "apartment towers", + "sym": "Ç", + "color": "brown" + }, + { + "type": "overmap_terrain", + "id": "refugee_tower_1yte", + "name": "apartment towers", + "sym": "Ç", + "color": "brown" + }, + { + "type": "overmap_terrain", + "id": "refugee_tower_1cyblc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "refugee_tower_1cybrc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "refugee_tower_1cytlc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "refugee_tower_1cytrc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "refugee_tower_1blc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "refugee_tower_1brc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "refugee_tower_1tlc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "refugee_tower_1trc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "refugee_tower_2blc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "refugee_tower_2brc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "refugee_tower_2tlc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "refugee_tower_2trc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "refugee_tower_3blc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "refugee_tower_3brc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "refugee_tower_3tlc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "refugee_tower_3trc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "refugee_tower_4blc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "refugee_tower_4brc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "refugee_tower_4tlc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "refugee_tower_4trc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "refugee_tower_5blc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "refugee_tower_5brc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "refugee_tower_5tlc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "refugee_tower_5trc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "refugee_tower_ublc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "refugee_tower_ubrc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "refugee_tower_utlc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "refugee_tower_utrc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "tri_tower_1gate", + "name": "apartment towers", + "sym": "Ç", + "color": "brown" + }, + { + "type": "overmap_terrain", + "id": "tri_tower_1ybe", + "name": "apartment towers", + "sym": "Ç", + "color": "brown" + }, + { + "type": "overmap_terrain", + "id": "tri_tower_1yle", + "name": "apartment towers", + "sym": "Ç", + "color": "brown" + }, + { + "type": "overmap_terrain", + "id": "tri_tower_1yre", + "name": "apartment towers", + "sym": "Ç", + "color": "brown" + }, + { + "type": "overmap_terrain", + "id": "tri_tower_1yte", + "name": "apartment towers", + "sym": "Ç", + "color": "brown" + }, + { + "type": "overmap_terrain", + "id": "tri_tower_1cyblc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "tri_tower_1cybrc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "tri_tower_1cytlc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "tri_tower_1cytrc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "tri_tower_1blc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "tri_tower_1brc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "tri_tower_1tlc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "tri_tower_1trc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "tri_tower_2blc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "tri_tower_2brc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "tri_tower_2tlc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "tri_tower_2trc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "tri_tower_3blc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "tri_tower_3brc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "tri_tower_3tlc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "tri_tower_3trc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "tri_tower_4blc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "tri_tower_4brc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "tri_tower_4tlc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "tri_tower_4trc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "tri_tower_ublc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "tri_tower_ubrc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "tri_tower_utlc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "tri_tower_utrc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + } +] diff --git a/data/mods/Graphical_Overmap/mod support/overmap_terrain_secronom.json b/data/mods/Graphical_Overmap/mod support/overmap_terrain_secronom.json new file mode 100644 index 0000000000000..f49a1359a68d4 --- /dev/null +++ b/data/mods/Graphical_Overmap/mod support/overmap_terrain_secronom.json @@ -0,0 +1,184 @@ +[{ + "type": "overmap_terrain", + "id": "SecronomSSLab_top", + "name": "secronom lab", + "sym": "Á", + "color": "ltgray" + }, { + "type": "overmap_terrain", + "id": "SecronomSSLab_b1", + "name": "underground secronom lab", + "sym": "Á", + "color": "ltgray" + }, { + "type": "overmap_terrain", + "id": "SecronomSSLab_bowspecs", + "name": "underground secronom lab", + "sym": "Á", + "color": "ltgray" + }, { + "type": "overmap_terrain", + "id": "SecronomSSLab_b2", + "name": "underground secronom lab", + "sym": "Á", + "color": "ltgray" + }, { + "type": "overmap_terrain", + "id": "SecronomSSLab_failspecs", + "name": "underground secronom lab", + "sym": "Á", + "color": "ltgray" + }, { + "type": "overmap_terrain", + "id": "SecronomSSLab_b3", + "name": "underground secronom lab", + "sym": "Á", + "color": "ltgray" + }, { + "type": "overmap_terrain", + "id": "SecronomSSLab_Climax", + "name": "underground secronom lab", + "sym": "Á", + "color": "ltgray" + }, { + "id": "saddler_cave_entrance_1", + "type": "overmap_terrain", + "name": "field", + "sym": "¨", + "color": "brown" + }, { + "id": "saddler_cave_entrance_2", + "type": "overmap_terrain", + "name": "field", + "sym": "¨", + "color": "brown" + }, { + "id": "saddler_cave_entrance_3", + "type": "overmap_terrain", + "name": "field", + "sym": "¨", + "color": "brown" + }, { + "id": "saddler_cave_entrance_4", + "type": "overmap_terrain", + "name": "field", + "sym": "¨", + "color": "brown" + }, { + "id": "saddler_cave_entrance_5", + "type": "overmap_terrain", + "name": "field", + "sym": "¨", + "color": "green" + }, { + "id": "saddler_cave_entrance_6", + "type": "overmap_terrain", + "name": "field", + "sym": "¨", + "color": "brown" + }, { + "id": "saddler_cave_entrance_7", + "type": "overmap_terrain", + "name": "field", + "sym": "¨", + "color": "brown" + }, { + "id": "saddler_cave_entrance_8", + "type": "overmap_terrain", + "name": "field", + "sym": "¨", + "color": "brown" + }, { + "id": "saddler_cave_entrance_9", + "type": "overmap_terrain", + "name": "field", + "sym": "¨", + "color": "brown" + }, { + "id": "saddler_cave_up", + "type": "overmap_terrain", + "name": "saddler nest", + "sym": "ê", + "color": "green" + }, { + "id": "saddler_cave_north", + "type": "overmap_terrain", + "name": "saddler nest", + "sym": "ê", + "color": "green" + }, { + "id": "saddler_cave_west", + "type": "overmap_terrain", + "name": "saddler nest", + "sym": "ê", + "color": "green" + }, { + "id": "saddler_cave_brood", + "type": "overmap_terrain", + "name": "saddler nest", + "sym": "ê", + "color": "light_green" + }, { + "type": "overmap_terrain", + "id": "secro_house_flesh", + "copy-from": "generic_residential_medium", + "name": "house", + "sym": "à", + "color": "green_red" + }, + { + "id": "flesh_forest_1", + "type": "overmap_terrain", + "name": "forest", + "sym": "è", + "color": "red" + }, { + "id": "flesh_forest_2", + "type": "overmap_terrain", + "name": "forest", + "sym": "è", + "color": "red" + }, { + "id": "flesh_forest_3", + "type": "overmap_terrain", + "name": "forest", + "sym": "è", + "color": "red" + }, { + "id": "flesh_forest_4", + "type": "overmap_terrain", + "name": "forest", + "sym": "è", + "color": "red" + }, { + "id": "flesh_forest_5", + "type": "overmap_terrain", + "name": "forest", + "sym": "è", + "color": "light_red" + }, { + "id": "flesh_forest_6", + "type": "overmap_terrain", + "name": "forest", + "sym": "è", + "color": "red" + }, { + "id": "flesh_forest_7", + "type": "overmap_terrain", + "name": "forest", + "sym": "è", + "color": "red" + }, { + "id": "flesh_forest_8", + "type": "overmap_terrain", + "name": "forest", + "sym": "è", + "color": "red" + }, { + "id": "flesh_forest_9", + "type": "overmap_terrain", + "name": "forest", + "sym": "è", + "color": "red" + } +] diff --git a/data/mods/Graphical_Overmap/mod support/overmap_terrain_urban_development.json b/data/mods/Graphical_Overmap/mod support/overmap_terrain_urban_development.json new file mode 100644 index 0000000000000..c6323a5dafdfa --- /dev/null +++ b/data/mods/Graphical_Overmap/mod support/overmap_terrain_urban_development.json @@ -0,0 +1,3223 @@ +[ + { + "id": "urban_1_1", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_1_2", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_1_3", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_1_4", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_1_6", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_2_1", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_2_2", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_2_3", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_2_4", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_2_5", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_2_6", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_3_1", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_3_2", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_3_3", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_3_4", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_3_5", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_3_6", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_4_1", + "type": "overmap_terrain", + "name": "basement", + "sym": "à", + "color": "dark_gray" + }, + { + "id": "urban_4_2", + "type": "overmap_terrain", + "name": "basement", + "sym": "à", + "color": "dark_gray" + }, + { + "id": "urban_4_3", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_4_4", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_4_5", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_4_6", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_4_7", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_4_8", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_5_1", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_5_2", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_5_3", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_5_4", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_5_5", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_5_6", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_6_1", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_6_2", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_6_3", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_6_4", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_6_5", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_6_6", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_7_1", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_7_2", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_7_3", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_7_4", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_7_5", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_7_6", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_8_1", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_8_2", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_8_3", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_8_4", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_8_6", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_9_1", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_9_2", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_9_3", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_9_4", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_9_5", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_9_6", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_10_1", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_10_2", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_10_3", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_10_4", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_10_5", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_10_6", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_11_1", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_11_2", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_11_3", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_11_4", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_11_5", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_11_6", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_12_1", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_12_2", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_12_3", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_12_4", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_12_5", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_12_6", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_13_1", + "type": "overmap_terrain", + "name": "basement", + "sym": "à", + "color": "dark_gray" + }, + { + "id": "urban_13_2", + "type": "overmap_terrain", + "name": "basement", + "sym": "à", + "color": "dark_gray" + }, + { + "id": "urban_13_3", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_13_4", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_13_5", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_13_6", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_13_7", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_13_8", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_13_9", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_13_10", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_13_11", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_13_12", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_14_1", + "type": "overmap_terrain", + "name": "basement", + "sym": "à", + "color": "dark_gray" + }, + { + "id": "urban_14_2", + "type": "overmap_terrain", + "name": "basement", + "sym": "à", + "color": "dark_gray" + }, + { + "id": "urban_14_3", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_14_4", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_14_5", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_14_6", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_14_7", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_14_8", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_14_9", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_14_10", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_14_11", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_14_12", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_14_13", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_14_14", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_15_1", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_15_2", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_15_3", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_15_4", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_15_5", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_15_6", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_16_1", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_16_2", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_16_3", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_16_4", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_17_1", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_17_2", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_17_3", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_17_4", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_18_1", + "type": "overmap_terrain", + "name": "basement", + "sym": "à", + "color": "dark_gray" + }, + { + "id": "urban_18_2", + "type": "overmap_terrain", + "name": "basement", + "sym": "à", + "color": "dark_gray" + }, + { + "id": "urban_18_3", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_18_4", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_18_5", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_18_6", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_18_7", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_18_8", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_18_9", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_18_10", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_19_1", + "type": "overmap_terrain", + "name": "basement", + "sym": "à", + "color": "dark_gray" + }, + { + "id": "urban_19_2", + "type": "overmap_terrain", + "name": "basement", + "sym": "à", + "color": "dark_gray" + }, + { + "id": "urban_19_3", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_19_4", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_19_5", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_19_6", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_19_7", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_19_8", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_19_9", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_19_10", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_19_11", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_19_12", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_20_1", + "type": "overmap_terrain", + "name": "basement", + "sym": "à", + "color": "dark_gray" + }, + { + "id": "urban_20_2", + "type": "overmap_terrain", + "name": "basement", + "sym": "à", + "color": "dark_gray" + }, + { + "id": "urban_20_3", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_20_4", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_20_5", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_20_6", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_20_7", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_20_8", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_21_1", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_21_2", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_21_3", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_21_4", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_22_1", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_22_2", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_22_3", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_22_4", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_23_1", + "type": "overmap_terrain", + "name": "basement", + "sym": "à", + "color": "dark_gray" + }, + { + "id": "urban_23_2", + "type": "overmap_terrain", + "name": "basement", + "sym": "à", + "color": "dark_gray" + }, + { + "id": "urban_23_3", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_23_4", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_23_5", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_23_6", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_23_7", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_23_8", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_23_9", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_23_10", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_23_11", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_24_1", + "type": "overmap_terrain", + "name": "basement", + "sym": "à", + "color": "dark_gray" + }, + { + "id": "urban_24_2", + "type": "overmap_terrain", + "name": "basement", + "sym": "à", + "color": "dark_gray" + }, + { + "id": "urban_24_3", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_24_4", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_24_5", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_24_6", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_24_7", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_24_8", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_24_9", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_24_10", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_24_11", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_24_12", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_24_14", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_25_1", + "type": "overmap_terrain", + "name": "basement", + "sym": "à", + "color": "dark_gray" + }, + { + "id": "urban_25_2", + "type": "overmap_terrain", + "name": "basement", + "sym": "à", + "color": "dark_gray" + }, + { + "id": "urban_25_3", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_25_4", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_25_5", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_25_6", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_25_7", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_25_8", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_25_9", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_25_10", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_25_12", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_26_1", + "type": "overmap_terrain", + "name": "basement", + "sym": "à", + "color": "dark_gray" + }, + { + "id": "urban_26_2", + "type": "overmap_terrain", + "name": "basement", + "sym": "à", + "color": "dark_gray" + }, + { + "id": "urban_26_3", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_26_4", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_26_5", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_26_6", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_26_7", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_26_8", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_26_9", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_26_10", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_26_11", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_26_12", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_27_1", + "type": "overmap_terrain", + "name": "basement", + "sym": "à", + "color": "dark_gray" + }, + { + "id": "urban_27_2", + "type": "overmap_terrain", + "name": "basement", + "sym": "à", + "color": "dark_gray" + }, + { + "id": "urban_27_3", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_27_4", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_27_5", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_27_6", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_27_7", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_27_8", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_27_9", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_27_10", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_27_11", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_27_12", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_27_13", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_28_1", + "type": "overmap_terrain", + "name": "basement", + "sym": "à", + "color": "dark_gray" + }, + { + "id": "urban_28_2", + "type": "overmap_terrain", + "name": "basement", + "sym": "à", + "color": "dark_gray" + }, + { + "id": "urban_28_3", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_28_4", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_28_5", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_28_6", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_28_7", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_28_8", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_28_9", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_28_10", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_28_11", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_29_1", + "type": "overmap_terrain", + "name": "basement", + "sym": "à", + "color": "dark_gray" + }, + { + "id": "urban_29_2", + "type": "overmap_terrain", + "name": "basement", + "sym": "à", + "color": "dark_gray" + }, + { + "id": "urban_29_3", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_29_4", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_29_5", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_29_6", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_29_7", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_29_8", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_29_9", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_29_10", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_30_1", + "type": "overmap_terrain", + "name": "basement", + "sym": "à", + "color": "dark_gray" + }, + { + "id": "urban_30_2", + "type": "overmap_terrain", + "name": "subway station", + "sym": "S", + "color": "yellow" + }, + { + "id": "urban_30_3", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_30_4", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_30_5", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_30_6", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_30_7", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_30_8", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_30_9", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_30_10", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_31_1", + "type": "overmap_terrain", + "name": "police station", + "sym": "ÿ", + "color": "h_yellow" + }, + { + "id": "urban_31_2", + "type": "overmap_terrain", + "name": "police station", + "sym": "ÿ", + "color": "h_yellow" + }, + { + "id": "urban_31_3", + "type": "overmap_terrain", + "name": "police station", + "sym": "ÿ", + "color": "h_yellow" + }, + { + "id": "urban_31_4", + "type": "overmap_terrain", + "name": "police station", + "sym": "ÿ", + "color": "h_yellow" + }, + { + "id": "urban_31_5", + "type": "overmap_terrain", + "name": "police station", + "sym": "ÿ", + "color": "h_yellow" + }, + { + "id": "urban_31_6", + "type": "overmap_terrain", + "name": "police station", + "sym": "ÿ", + "color": "h_yellow" + }, + { + "id": "urban_31_7", + "type": "overmap_terrain", + "name": "police station", + "sym": "ÿ", + "color": "h_yellow" + }, + { + "id": "urban_31_8", + "type": "overmap_terrain", + "name": "police station", + "sym": "ÿ", + "color": "h_yellow" + }, + { + "id": "urban_31_9", + "type": "overmap_terrain", + "name": "police station", + "sym": "ÿ", + "color": "h_yellow" + }, + { + "id": "urban_31_10", + "type": "overmap_terrain", + "name": "police station", + "sym": "ÿ", + "color": "h_yellow" + }, + { + "id": "urban_31_11", + "type": "overmap_terrain", + "name": "police station", + "sym": "ÿ", + "color": "h_yellow" + }, + { + "id": "urban_31_12", + "type": "overmap_terrain", + "name": "police station", + "sym": "ÿ", + "color": "h_yellow" + }, + { + "id": "urban_31_13", + "type": "overmap_terrain", + "name": "police station", + "sym": "ÿ", + "color": "h_yellow" + }, + { + "id": "urban_31_15", + "type": "overmap_terrain", + "name": "police station", + "sym": "ÿ", + "color": "h_yellow" + }, + { + "id": "urban_31_16", + "type": "overmap_terrain", + "name": "police station", + "sym": "ÿ", + "color": "h_yellow" + }, + { + "id": "urban_31_17", + "type": "overmap_terrain", + "name": "police station", + "sym": "ÿ", + "color": "h_yellow" + }, + { + "id": "urban_31_19", + "type": "overmap_terrain", + "name": "police station", + "sym": "ÿ", + "color": "h_yellow" + }, + { + "id": "urban_32_1", + "type": "overmap_terrain", + "name": "fire station", + "sym": "Æ", + "color": "red" + }, + { + "id": "urban_32_2", + "type": "overmap_terrain", + "name": "fire station", + "sym": "Æ", + "color": "red" + }, + { + "id": "urban_32_3", + "type": "overmap_terrain", + "name": "fire station", + "sym": "Æ", + "color": "red" + }, + { + "id": "urban_32_4", + "type": "overmap_terrain", + "name": "fire station", + "sym": "Æ", + "color": "red" + }, + { + "id": "urban_32_5", + "type": "overmap_terrain", + "name": "fire station", + "sym": "Æ", + "color": "red" + }, + { + "id": "urban_32_6", + "type": "overmap_terrain", + "name": "fire station", + "sym": "Æ", + "color": "red" + }, + { + "id": "urban_32_7", + "type": "overmap_terrain", + "name": "fire station", + "sym": "Æ", + "color": "red" + }, + { + "id": "urban_32_8", + "type": "overmap_terrain", + "name": "fire station", + "sym": "Æ", + "color": "red" + }, + { + "id": "urban_32_9", + "type": "overmap_terrain", + "name": "fire station", + "sym": "Æ", + "color": "red" + }, + { + "id": "urban_32_10", + "type": "overmap_terrain", + "name": "fire station", + "sym": "Æ", + "color": "red" + }, + { + "id": "urban_32_11", + "type": "overmap_terrain", + "name": "fire station", + "sym": "Æ", + "color": "red" + }, + { + "id": "urban_32_12", + "type": "overmap_terrain", + "name": "fire station", + "sym": "Æ", + "color": "red" + }, + { + "id": "urban_32_13", + "type": "overmap_terrain", + "name": "fire station", + "sym": "Æ", + "color": "red" + }, + { + "id": "urban_32_14", + "type": "overmap_terrain", + "name": "fire station", + "sym": "Æ", + "color": "red" + }, + { + "id": "urban_32_15", + "type": "overmap_terrain", + "name": "fire station", + "sym": "Æ", + "color": "red" + }, + { + "id": "urban_32_16", + "type": "overmap_terrain", + "name": "fire station", + "sym": "Æ", + "color": "red" + }, + { + "id": "urban_32_17", + "type": "overmap_terrain", + "name": "fire station", + "sym": "Æ", + "color": "red" + }, + { + "id": "urban_32_18", + "type": "overmap_terrain", + "name": "fire station", + "sym": "Æ", + "color": "red" + }, + { + "id": "urban_32_19", + "type": "overmap_terrain", + "name": "fire station", + "sym": "Æ", + "color": "red" + }, + { + "id": "urban_32_20", + "type": "overmap_terrain", + "name": "fire station", + "sym": "Æ", + "color": "red" + }, + { + "id": "urban_32_21", + "type": "overmap_terrain", + "name": "fire station", + "sym": "Æ", + "color": "red" + }, + { + "id": "urban_33_1", + "type": "overmap_terrain", + "name": "hotel", + "sym": "ô", + "color": "light_blue" + }, + { + "id": "urban_33_2", + "type": "overmap_terrain", + "name": "hotel", + "sym": "ô", + "color": "light_blue" + }, + { + "id": "urban_33_3", + "type": "overmap_terrain", + "name": "hotel", + "sym": "ô", + "color": "light_blue" + }, + { + "id": "urban_33_4", + "type": "overmap_terrain", + "name": "hotel", + "sym": "ô", + "color": "light_blue" + }, + { + "id": "urban_33_5", + "type": "overmap_terrain", + "name": "hotel", + "sym": "ô", + "color": "light_blue" + }, + { + "id": "urban_33_6", + "type": "overmap_terrain", + "name": "hotel", + "sym": "ô", + "color": "light_blue" + }, + { + "id": "urban_33_7", + "type": "overmap_terrain", + "name": "hotel", + "sym": "ô", + "color": "light_blue" + }, + { + "id": "urban_33_8", + "type": "overmap_terrain", + "name": "hotel", + "sym": "ô", + "color": "light_blue" + }, + { + "id": "urban_33_9", + "type": "overmap_terrain", + "name": "hotel", + "sym": "ô", + "color": "light_blue" + }, + { + "id": "urban_33_10", + "type": "overmap_terrain", + "name": "hotel", + "sym": "ô", + "color": "light_blue" + }, + { + "id": "urban_33_11", + "type": "overmap_terrain", + "name": "hotel", + "sym": "ô", + "color": "light_blue" + }, + { + "id": "urban_33_12", + "type": "overmap_terrain", + "name": "hotel", + "sym": "ô", + "color": "light_blue" + }, + { + "id": "urban_33_13", + "type": "overmap_terrain", + "name": "hotel", + "sym": "ô", + "color": "light_blue" + }, + { + "id": "urban_33_14", + "type": "overmap_terrain", + "name": "hotel", + "sym": "ô", + "color": "light_blue" + }, + { + "id": "urban_33_15", + "type": "overmap_terrain", + "name": "hotel", + "sym": "ô", + "color": "light_blue" + }, + { + "id": "urban_33_16", + "type": "overmap_terrain", + "name": "hotel", + "sym": "ô", + "color": "light_blue" + }, + { + "id": "urban_33_17", + "type": "overmap_terrain", + "name": "hotel", + "sym": "ô", + "color": "light_blue" + }, + { + "id": "urban_33_18", + "type": "overmap_terrain", + "name": "hotel", + "sym": "ô", + "color": "light_blue" + }, + { + "id": "urban_33_19", + "type": "overmap_terrain", + "name": "hotel", + "sym": "ô", + "color": "light_blue" + }, + { + "id": "urban_33_20", + "type": "overmap_terrain", + "name": "hotel", + "sym": "ô", + "color": "light_blue" + }, + { + "id": "urban_33_21", + "type": "overmap_terrain", + "name": "hotel", + "sym": "ô", + "color": "light_blue" + }, + { + "id": "urban_33_22", + "type": "overmap_terrain", + "name": "hotel", + "sym": "ô", + "color": "light_blue" + }, + { + "id": "urban_33_23", + "type": "overmap_terrain", + "name": "hotel", + "sym": "ô", + "color": "light_blue" + }, + { + "id": "urban_33_24", + "type": "overmap_terrain", + "name": "hotel", + "sym": "ô", + "color": "light_blue" + }, + { + "id": "urban_33_25", + "type": "overmap_terrain", + "name": "hotel", + "sym": "ô", + "color": "light_blue" + }, + { + "id": "urban_33_26", + "type": "overmap_terrain", + "name": "hotel", + "sym": "ô", + "color": "light_blue" + }, + { + "id": "urban_33_27", + "type": "overmap_terrain", + "name": "hotel", + "sym": "ô", + "color": "light_blue" + }, + { + "id": "urban_33_28", + "type": "overmap_terrain", + "name": "hotel", + "sym": "ô", + "color": "light_blue" + }, + { + "id": "urban_33_29", + "type": "overmap_terrain", + "name": "hotel", + "sym": "ô", + "color": "light_blue" + }, + { + "id": "urban_33_30", + "type": "overmap_terrain", + "name": "hotel", + "sym": "ô", + "color": "light_blue" + }, + { + "id": "urban_33_31", + "type": "overmap_terrain", + "name": "hotel", + "sym": "ô", + "color": "light_blue" + }, + { + "id": "urban_33_32", + "type": "overmap_terrain", + "name": "hotel", + "sym": "ô", + "color": "light_blue" + }, + { + "id": "urban_33_34", + "type": "overmap_terrain", + "name": "hotel", + "sym": "ô", + "color": "light_blue" + }, + { + "id": "urban_33_35", + "type": "overmap_terrain", + "name": "hotel", + "sym": "ô", + "color": "light_blue" + }, + { + "id": "urban_33_36", + "type": "overmap_terrain", + "name": "hotel", + "sym": "ô", + "color": "light_blue" + }, + { + "id": "urban_34_1", + "type": "overmap_terrain", + "name": "school", + "sym": "Á", + "color": "light_blue" + }, + { + "id": "urban_34_2", + "type": "overmap_terrain", + "name": "school", + "sym": "Á", + "color": "light_blue" + }, + { + "id": "urban_34_3", + "type": "overmap_terrain", + "name": "school", + "sym": "Á", + "color": "light_blue" + }, + { + "id": "urban_34_4", + "type": "overmap_terrain", + "name": "school", + "sym": "Á", + "color": "light_blue" + }, + { + "id": "urban_34_5", + "type": "overmap_terrain", + "name": "school", + "sym": "Á", + "color": "light_blue" + }, + { + "id": "urban_34_6", + "type": "overmap_terrain", + "name": "school", + "sym": "Á", + "color": "light_blue" + }, + { + "id": "urban_34_7", + "type": "overmap_terrain", + "name": "school", + "sym": "Á", + "color": "light_blue" + }, + { + "id": "urban_34_8", + "type": "overmap_terrain", + "name": "school", + "sym": "Á", + "color": "light_blue" + }, + { + "id": "urban_34_9", + "type": "overmap_terrain", + "name": "school", + "sym": "Á", + "color": "light_blue" + }, + { + "id": "urban_34_10", + "type": "overmap_terrain", + "name": "school", + "sym": "Á", + "color": "light_blue" + }, + { + "id": "urban_34_11", + "type": "overmap_terrain", + "name": "school", + "sym": "Á", + "color": "light_blue" + }, + { + "id": "urban_34_12", + "type": "overmap_terrain", + "name": "school", + "sym": "Á", + "color": "light_blue" + }, + { + "id": "urban_34_13", + "type": "overmap_terrain", + "name": "school", + "sym": "Á", + "color": "light_blue" + }, + { + "id": "urban_34_14", + "type": "overmap_terrain", + "name": "school", + "sym": "Á", + "color": "light_blue" + }, + { + "id": "urban_34_15", + "type": "overmap_terrain", + "name": "school", + "sym": "Á", + "color": "light_blue" + }, + { + "id": "urban_34_16", + "type": "overmap_terrain", + "name": "school", + "sym": "Á", + "color": "light_blue" + }, + { + "id": "urban_34_17", + "type": "overmap_terrain", + "name": "school", + "sym": "Á", + "color": "light_blue" + }, + { + "id": "urban_34_19", + "type": "overmap_terrain", + "name": "school", + "sym": "Á", + "color": "light_blue" + }, + { + "id": "urban_35_1", + "type": "overmap_terrain", + "name": "hospital", + "sym": "Á", + "color": "red" + }, + { + "id": "urban_35_2", + "type": "overmap_terrain", + "name": "hospital", + "sym": "Á", + "color": "red" + }, + { + "id": "urban_35_3", + "type": "overmap_terrain", + "name": "hospital", + "sym": "Á", + "color": "red" + }, + { + "id": "urban_35_4", + "type": "overmap_terrain", + "name": "hospital", + "sym": "Á", + "color": "red" + }, + { + "id": "urban_35_5", + "type": "overmap_terrain", + "name": "hospital", + "sym": "Á", + "color": "red" + }, + { + "id": "urban_35_6", + "type": "overmap_terrain", + "name": "hospital", + "sym": "Á", + "color": "red" + }, + { + "id": "urban_35_7", + "type": "overmap_terrain", + "name": "hospital", + "sym": "Á", + "color": "red" + }, + { + "id": "urban_35_8", + "type": "overmap_terrain", + "name": "hospital", + "sym": "Á", + "color": "red" + }, + { + "id": "urban_35_9", + "type": "overmap_terrain", + "name": "hospital", + "sym": "Á", + "color": "red" + }, + { + "id": "urban_35_10", + "type": "overmap_terrain", + "name": "hospital", + "sym": "Á", + "color": "red" + }, + { + "id": "urban_35_11", + "type": "overmap_terrain", + "name": "hospital", + "sym": "Á", + "color": "red" + }, + { + "id": "urban_35_12", + "type": "overmap_terrain", + "name": "hospital", + "sym": "Á", + "color": "red" + }, + { + "id": "urban_35_13", + "type": "overmap_terrain", + "name": "hospital", + "sym": "Á", + "color": "red" + }, + { + "id": "urban_35_14", + "type": "overmap_terrain", + "name": "hospital", + "sym": "Á", + "color": "red" + }, + { + "id": "urban_35_15", + "type": "overmap_terrain", + "name": "hospital", + "sym": "Á", + "color": "red" + }, + { + "id": "urban_35_16", + "type": "overmap_terrain", + "name": "hospital", + "sym": "Á", + "color": "red" + }, + { + "id": "urban_35_17", + "type": "overmap_terrain", + "name": "hospital", + "sym": "Á", + "color": "red" + }, + { + "id": "urban_35_18", + "type": "overmap_terrain", + "name": "hospital", + "sym": "Á", + "color": "red" + }, + { + "id": "urban_35_19", + "type": "overmap_terrain", + "name": "hospital", + "sym": "Á", + "color": "red" + }, + { + "id": "urban_35_20", + "type": "overmap_terrain", + "name": "hospital", + "sym": "Á", + "color": "red" + }, + { + "id": "urban_35_21", + "type": "overmap_terrain", + "name": "hospital", + "sym": "Á", + "color": "red" + }, + { + "id": "urban_35_22", + "type": "overmap_terrain", + "name": "hospital", + "sym": "Á", + "color": "red" + }, + { + "id": "urban_35_23", + "type": "overmap_terrain", + "name": "hospital", + "sym": "Á", + "color": "red" + }, + { + "id": "urban_36_1", + "type": "overmap_terrain", + "name": "projects", + "sym": "Ç", + "color": "light_green" + }, + { + "id": "urban_36_2", + "type": "overmap_terrain", + "name": "projects", + "sym": "Ç", + "color": "light_green" + }, + { + "id": "urban_36_3", + "type": "overmap_terrain", + "name": "projects", + "sym": "Ç", + "color": "light_green" + }, + { + "id": "urban_36_4", + "type": "overmap_terrain", + "name": "projects", + "sym": "Ç", + "color": "light_green" + }, + { + "id": "urban_36_5", + "type": "overmap_terrain", + "name": "projects", + "sym": "Ç", + "color": "light_green" + }, + { + "id": "urban_36_6", + "type": "overmap_terrain", + "name": "projects", + "sym": "Ç", + "color": "light_green" + }, + { + "id": "urban_36_7", + "type": "overmap_terrain", + "name": "projects", + "sym": "Ç", + "color": "light_green" + }, + { + "id": "urban_36_8", + "type": "overmap_terrain", + "name": "projects", + "sym": "Ç", + "color": "light_green" + }, + { + "id": "urban_36_9", + "type": "overmap_terrain", + "name": "projects", + "sym": "Ç", + "color": "light_green" + }, + { + "id": "urban_36_10", + "type": "overmap_terrain", + "name": "projects", + "sym": "Ç", + "color": "light_green" + }, + { + "id": "urban_36_11", + "type": "overmap_terrain", + "name": "projects", + "sym": "Ç", + "color": "light_green" + }, + { + "id": "urban_36_12", + "type": "overmap_terrain", + "name": "projects", + "sym": "Ç", + "color": "light_green" + }, + { + "id": "urban_36_13", + "type": "overmap_terrain", + "name": "projects", + "sym": "Ç", + "color": "light_green" + }, + { + "id": "urban_36_14", + "type": "overmap_terrain", + "name": "projects", + "sym": "Ç", + "color": "light_green" + }, + { + "id": "urban_36_15", + "type": "overmap_terrain", + "name": "projects", + "sym": "Ç", + "color": "light_green" + }, + { + "id": "urban_36_16", + "type": "overmap_terrain", + "name": "projects", + "sym": "Ç", + "color": "light_green" + }, + { + "id": "urban_36_17", + "type": "overmap_terrain", + "name": "projects", + "sym": "Ç", + "color": "light_green" + }, + { + "id": "urban_36_18", + "type": "overmap_terrain", + "name": "projects", + "sym": "Ç", + "color": "light_green" + }, + { + "id": "urban_36_19", + "type": "overmap_terrain", + "name": "projects", + "sym": "Ç", + "color": "light_green" + }, + { + "id": "urban_36_20", + "type": "overmap_terrain", + "name": "projects", + "sym": "Ç", + "color": "light_green" + }, + { + "id": "urban_36_21", + "type": "overmap_terrain", + "name": "projects", + "sym": "Ç", + "color": "light_green" + }, + { + "id": "urban_36_22", + "type": "overmap_terrain", + "name": "projects", + "sym": "Ç", + "color": "light_green" + }, + { + "id": "urban_36_23", + "type": "overmap_terrain", + "name": "projects", + "sym": "Ç", + "color": "light_green" + }, + { + "id": "urban_36_24", + "type": "overmap_terrain", + "name": "projects", + "sym": "Ç", + "color": "light_green" + }, + { + "id": "urban_36_25", + "type": "overmap_terrain", + "name": "projects", + "sym": "Ç", + "color": "light_green" + }, + { + "id": "urban_36_26", + "type": "overmap_terrain", + "name": "projects", + "sym": "Ç", + "color": "light_green" + }, + { + "id": "urban_36_27", + "type": "overmap_terrain", + "name": "projects", + "sym": "Ç", + "color": "light_green" + }, + { + "id": "urban_36_28", + "type": "overmap_terrain", + "name": "projects", + "sym": "Ç", + "color": "light_green" + }, + { + "id": "urban_36_29", + "type": "overmap_terrain", + "name": "projects", + "sym": "Ç", + "color": "light_green" + }, + { + "id": "urban_36_30", + "type": "overmap_terrain", + "name": "projects", + "sym": "Ç", + "color": "light_green" + }, + { + "id": "urban_36_31", + "type": "overmap_terrain", + "name": "projects", + "sym": "Ç", + "color": "light_green" + }, + { + "id": "urban_36_32", + "type": "overmap_terrain", + "name": "projects", + "sym": "Ç", + "color": "light_green" + }, + { + "id": "urban_37_1", + "type": "overmap_terrain", + "name": "office tower", + "sym": "å", + "color": "light_gray" + }, + { + "id": "urban_37_2", + "type": "overmap_terrain", + "name": "office tower", + "sym": "å", + "color": "light_gray" + }, + { + "id": "urban_37_3", + "type": "overmap_terrain", + "name": "office tower", + "sym": "å", + "color": "light_gray" + }, + { + "id": "urban_37_4", + "type": "overmap_terrain", + "name": "office tower", + "sym": "å", + "color": "light_gray" + }, + { + "id": "urban_37_5", + "type": "overmap_terrain", + "name": "office tower", + "sym": "å", + "color": "light_gray" + }, + { + "id": "urban_37_6", + "type": "overmap_terrain", + "name": "office tower", + "sym": "å", + "color": "light_gray" + }, + { + "id": "urban_37_7", + "type": "overmap_terrain", + "name": "office tower", + "sym": "å", + "color": "light_gray" + }, + { + "id": "urban_37_8", + "type": "overmap_terrain", + "name": "office tower", + "sym": "å", + "color": "light_gray" + }, + { + "id": "urban_37_9", + "type": "overmap_terrain", + "name": "office tower", + "sym": "å", + "color": "light_gray" + }, + { + "id": "urban_37_10", + "type": "overmap_terrain", + "name": "office tower", + "sym": "å", + "color": "light_gray" + }, + { + "id": "urban_37_11", + "type": "overmap_terrain", + "name": "office tower", + "sym": "å", + "color": "light_gray" + }, + { + "id": "urban_37_12", + "type": "overmap_terrain", + "name": "office tower", + "sym": "å", + "color": "light_gray" + }, + { + "id": "urban_37_13", + "type": "overmap_terrain", + "name": "office tower", + "sym": "å", + "color": "light_gray" + }, + { + "id": "urban_37_14", + "type": "overmap_terrain", + "name": "office tower", + "sym": "å", + "color": "light_gray" + }, + { + "id": "urban_37_15", + "type": "overmap_terrain", + "name": "office tower", + "sym": "å", + "color": "light_gray" + }, + { + "id": "urban_37_16", + "type": "overmap_terrain", + "name": "office tower", + "sym": "å", + "color": "light_gray" + }, + { + "id": "urban_37_17", + "type": "overmap_terrain", + "name": "office tower", + "sym": "å", + "color": "light_gray" + }, + { + "id": "urban_37_18", + "type": "overmap_terrain", + "name": "office tower", + "sym": "å", + "color": "light_gray" + }, + { + "id": "urban_37_19", + "type": "overmap_terrain", + "name": "office tower", + "sym": "å", + "color": "light_gray" + }, + { + "id": "urban_37_20", + "type": "overmap_terrain", + "name": "office tower", + "sym": "å", + "color": "light_gray" + }, + { + "id": "urban_37_21", + "type": "overmap_terrain", + "name": "office tower", + "sym": "å", + "color": "light_gray" + }, + { + "id": "urban_37_22", + "type": "overmap_terrain", + "name": "office tower", + "sym": "å", + "color": "light_gray" + }, + { + "id": "urban_37_23", + "type": "overmap_terrain", + "name": "office tower", + "sym": "å", + "color": "light_gray" + }, + { + "id": "urban_37_24", + "type": "overmap_terrain", + "name": "office tower", + "sym": "å", + "color": "light_gray" + }, + { + "id": "urban_37_25", + "type": "overmap_terrain", + "name": "office tower", + "sym": "å", + "color": "light_gray" + }, + { + "id": "urban_37_26", + "type": "overmap_terrain", + "name": "office tower", + "sym": "å", + "color": "light_gray" + }, + { + "id": "urban_37_27", + "type": "overmap_terrain", + "name": "office tower", + "sym": "å", + "color": "light_gray" + }, + { + "id": "urban_37_28", + "type": "overmap_terrain", + "name": "office tower", + "sym": "å", + "color": "light_gray" + }, + { + "id": "urban_37_29", + "type": "overmap_terrain", + "name": "office tower", + "sym": "å", + "color": "light_gray" + }, + { + "id": "urban_37_30", + "type": "overmap_terrain", + "name": "office tower", + "sym": "å", + "color": "light_gray" + }, + { + "id": "urban_37_31", + "type": "overmap_terrain", + "name": "office tower", + "sym": "å", + "color": "light_gray" + }, + { + "id": "urban_37_32", + "type": "overmap_terrain", + "name": "office tower", + "sym": "å", + "color": "light_gray" + }, + { + "id": "urban_37_33", + "type": "overmap_terrain", + "name": "office tower", + "sym": "å", + "color": "light_gray" + }, + { + "id": "urban_37_34", + "type": "overmap_terrain", + "name": "office tower", + "sym": "å", + "color": "light_gray" + }, + { + "id": "urban_37_35", + "type": "overmap_terrain", + "name": "office tower", + "sym": "å", + "color": "light_gray" + }, + { + "id": "urban_37_36", + "type": "overmap_terrain", + "name": "office tower", + "sym": "å", + "color": "light_gray" + }, + { + "id": "urban_38_1", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_38_2", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_38_3", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_38_4", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_38_5", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_38_6", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_38_7", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_38_8", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_38_9", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_38_10", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_38_11", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_38_12", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_39_1", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_39_2", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_39_3", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_39_4", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_39_5", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_39_6", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_39_7", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_39_8", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_39_9", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_39_10", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_40_1", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_40_2", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_40_3", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_40_4", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_40_5", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_40_6", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "id": "urban_41_1", + "//": "Northwest corner", + "type": "overmap_terrain", + "name": "public library", + "sym": "ÿ", + "color": "white" + }, + { + "id": "urban_41_2", + "//": "Northeast corner", + "type": "overmap_terrain", + "name": "public library", + "sym": "ÿ", + "color": "white" + }, + { + "id": "urban_41_3", + "//": "Southwest corner", + "type": "overmap_terrain", + "name": "public library", + "sym": "ÿ", + "color": "white" + }, + { + "id": "urban_41_4", + "//": "Southeast corner", + "type": "overmap_terrain", + "name": "public library", + "sym": "ÿ", + "color": "white" + }, + { + "id": "urban_41_5", + "//": "Northwest corner", + "type": "overmap_terrain", + "name": "public library, 2nd floor", + "sym": "ÿ", + "color": "white" + }, + { + "id": "urban_41_6", + "//": "Northeast corner", + "type": "overmap_terrain", + "name": "public library, 2nd floor", + "sym": "ÿ", + "color": "white" + }, + { + "id": "urban_41_7", + "//": "Southwest corner", + "type": "overmap_terrain", + "name": "public library, 2nd floor", + "sym": "ÿ", + "color": "white" + }, + { + "id": "urban_41_8", + "//": "Southeast corner", + "type": "overmap_terrain", + "name": "public library, 2nd floor", + "sym": "ÿ", + "color": "white" + } +] From 9e7a6df129346c351ae9724c020543692fee3cf4 Mon Sep 17 00:00:00 2001 From: Kilvoctu Date: Wed, 18 Dec 2019 19:49:16 -0600 Subject: [PATCH 4/9] update houses to light_gray Update generic houses to "color": "light_gray" in order to be consistent with color in Graphical_Overmap mod --- .../overmap_terrain_urban_development.json | 244 +++++++++--------- 1 file changed, 122 insertions(+), 122 deletions(-) diff --git a/data/mods/Graphical_Overmap/mod support/overmap_terrain_urban_development.json b/data/mods/Graphical_Overmap/mod support/overmap_terrain_urban_development.json index c6323a5dafdfa..248cf95fae97e 100644 --- a/data/mods/Graphical_Overmap/mod support/overmap_terrain_urban_development.json +++ b/data/mods/Graphical_Overmap/mod support/overmap_terrain_urban_development.json @@ -4,119 +4,119 @@ "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_1_2", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_1_3", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_1_4", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_1_6", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_2_1", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_2_2", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_2_3", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_2_4", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_2_5", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_2_6", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_3_1", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_3_2", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_3_3", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_3_4", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_3_5", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_3_6", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_4_1", @@ -137,371 +137,371 @@ "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_4_4", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_4_5", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_4_6", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_4_7", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_4_8", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_5_1", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_5_2", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_5_3", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_5_4", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_5_5", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_5_6", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_6_1", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_6_2", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_6_3", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_6_4", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_6_5", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_6_6", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_7_1", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_7_2", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_7_3", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_7_4", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_7_5", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_7_6", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_8_1", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_8_2", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_8_3", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_8_4", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_8_6", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_9_1", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_9_2", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_9_3", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_9_4", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_9_5", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_9_6", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_10_1", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_10_2", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_10_3", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_10_4", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_10_5", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_10_6", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_11_1", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_11_2", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_11_3", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_11_4", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_11_5", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_11_6", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_12_1", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_12_2", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_12_3", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_12_4", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_12_5", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_12_6", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_13_1", @@ -690,98 +690,98 @@ "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_15_2", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_15_3", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_15_4", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_15_5", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_15_6", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_16_1", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_16_2", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_16_3", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_16_4", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_17_1", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_17_2", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_17_3", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_17_4", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_18_1", @@ -802,56 +802,56 @@ "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_18_4", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_18_5", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_18_6", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_18_7", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_18_8", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_18_9", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_18_10", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_19_1", @@ -872,70 +872,70 @@ "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_19_4", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_19_5", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_19_6", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_19_7", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_19_8", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_19_9", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_19_10", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_19_11", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_19_12", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_20_1", @@ -956,98 +956,98 @@ "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_20_4", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_20_5", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_20_6", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_20_7", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_20_8", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_21_1", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_21_2", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_21_3", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_21_4", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_22_1", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_22_2", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_22_3", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_22_4", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_23_1", @@ -3119,42 +3119,42 @@ "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_40_2", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_40_3", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_40_4", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_40_5", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_40_6", "type": "overmap_terrain", "name": "house", "sym": "à", - "color": "light_green" + "color": "light_gray" }, { "id": "urban_41_1", From 96c6a7c2eb6a59de753e0fa1c7414ae9753846e4 Mon Sep 17 00:00:00 2001 From: Kilvoctu Date: Thu, 19 Dec 2019 12:49:19 -0600 Subject: [PATCH 5/9] Revert "Add support for More_City_Locations mod" This reverts commit c941385750b304b9d48a75a716e69d7573fab929. --- .../mod support/overmap_terrain_cityside.json | 51 ------------------- 1 file changed, 51 deletions(-) delete mode 100644 data/mods/Graphical_Overmap/mod support/overmap_terrain_cityside.json diff --git a/data/mods/Graphical_Overmap/mod support/overmap_terrain_cityside.json b/data/mods/Graphical_Overmap/mod support/overmap_terrain_cityside.json deleted file mode 100644 index 4a71faaa2c35f..0000000000000 --- a/data/mods/Graphical_Overmap/mod support/overmap_terrain_cityside.json +++ /dev/null @@ -1,51 +0,0 @@ -[ - { - "type": "overmap_terrain", - "id": "s_butcher", - "name": "butcher", - "sym": "ç", - "color": "i_red" - }, - { - "type": "overmap_terrain", - "id": "s_bike_shop", - "name": "bicycle shop", - "sym": "ç", - "color": "i_cyan" - }, - { - "type": "overmap_terrain", - "id": "daycare", - "name": "day care", - "sym": "ç", - "color": "light_blue" - }, - { - "type": "overmap_terrain", - "id": "post_office", - "name": "post office", - "sym": "ç", - "color": "white" - }, - { - "type": "overmap_terrain", - "id": "fishing_supply", - "name": "post office", - "sym": "ç", - "color": "light_cyan" - }, - { - "type": "overmap_terrain", - "id": "govt_office", - "name": "council office", - "sym": "ÿ", - "color": "white" - }, - { - "type": "overmap_terrain", - "id": "construction_site", - "name": "construction site", - "sym": "×", - "color": "i_yellow" - } -] From 7c65e79ed36b83a050d6035ac10ed4a233ab499b Mon Sep 17 00:00:00 2001 From: Kilvoctu Date: Thu, 19 Dec 2019 12:59:12 -0600 Subject: [PATCH 6/9] revert revert reest of files --- .../overmap_terrain_fujistruct.json | 298 -- .../overmap_terrain_more_locations.json | 1731 --------- .../mod support/overmap_terrain_secronom.json | 184 - .../overmap_terrain_urban_development.json | 3223 ----------------- 4 files changed, 5436 deletions(-) delete mode 100644 data/mods/Graphical_Overmap/mod support/overmap_terrain_fujistruct.json delete mode 100644 data/mods/Graphical_Overmap/mod support/overmap_terrain_more_locations.json delete mode 100644 data/mods/Graphical_Overmap/mod support/overmap_terrain_secronom.json delete mode 100644 data/mods/Graphical_Overmap/mod support/overmap_terrain_urban_development.json diff --git a/data/mods/Graphical_Overmap/mod support/overmap_terrain_fujistruct.json b/data/mods/Graphical_Overmap/mod support/overmap_terrain_fujistruct.json deleted file mode 100644 index ae3f53d7dc1ff..0000000000000 --- a/data/mods/Graphical_Overmap/mod support/overmap_terrain_fujistruct.json +++ /dev/null @@ -1,298 +0,0 @@ -[ - { - "type": "overmap_terrain", - "id": "s_electronicstore", - "name": "electronics store", - "sym": "ç", - "color": "yellow" - }, - { - "type": "overmap_terrain", - "id": "s_electronicstore_2ndfloor", - "name": "electronics store", - "copy-from": "s_electronicstore" - }, - { - "type": "overmap_terrain", - "id": "s_gunstore", - "name": "gun store", - "sym": "ç", - "color": "red" - }, - { - "type": "overmap_terrain", - "id": "s_gunstore_2ndfloor", - "name": "gun store", - "copy-from": "s_gunstore" - }, - { - "type": "overmap_terrain", - "id": "s_gunstore_roof", - "name": "gun store", - "copy-from": "s_gunstore" - }, - { - "type": "overmap_terrain", - "id": "s_diner", - "name": "diner", - "sym": "ç", - "color": "green" - }, - { - "type": "overmap_terrain", - "id": "s_diner_2ndfloor", - "name": "diner", - "copy-from": "s_diner" - }, - { - "type": "overmap_terrain", - "id": "s_diner_roof", - "name": "diner", - "copy-from": "s_diner" - }, - { - "type": "overmap_terrain", - "id": "s_apt", - "name": "apartment", - "sym": "Ç", - "color": "light_green" - }, - { - "type": "overmap_terrain", - "id": "s_apt_2ndfloor", - "name": "apartment", - "copy-from": "s_apt" - }, - { - "type": "overmap_terrain", - "id": "s_apt_roof", - "name": "apartment", - "copy-from": "s_apt" - }, - { - "type": "overmap_terrain", - "id": "s_apt_2", - "name": "apartment", - "sym": "Ç", - "color": "light_green" - }, - { - "type": "overmap_terrain", - "id": "s_apt_2_2ndfloor", - "name": "apartment", - "copy-from": "s_apt_2" - }, - { - "type": "overmap_terrain", - "id": "s_apt_2_roof", - "name": "apartment", - "copy-from": "s_apt_2" - }, - { - "type": "overmap_terrain", - "id": "s_cardealer", - "name": "dealership", - "sym": "ç", - "color": "blue" - }, - { - "type": "overmap_terrain", - "id": "s_cardealer_roof", - "name": "dealership", - "copy-from": "s_cardealer" - }, - { - "type": "overmap_terrain", - "id": "s_camping", - "name": "outdoorsman's store", - "sym": "ç", - "color": "brown" - }, - { - "type": "overmap_terrain", - "id": "s_camping_roof", - "name": "outdoorsman's store", - "copy-from": "s_camping" - }, - { - "type": "overmap_terrain", - "id": "s_games", - "name": "gaming store", - "sym": "ç", - "color": "cyan" - }, - { - "type": "overmap_terrain", - "id": "s_games_roof", - "name": "gaming store", - "copy-from": "s_games" - }, - { - "type": "overmap_terrain", - "id": "s_air_term", - "name": "airport", - "sym": "ô", - "color": "i_cyan" - }, - { - "type": "overmap_terrain", - "id": "s_air_parking", - "name": "airport", - "sym": "ô", - "color": "i_cyan" - }, - { - "type": "overmap_terrain", - "id": "s_air_atc", - "name": "airport", - "sym": "ô", - "color": "i_cyan" - }, - { - "type": "overmap_terrain", - "id": "s_air_atc_2", - "name": "airport", - "sym": "ô", - "color": "i_cyan" - }, - { - "type": "overmap_terrain", - "id": "s_air_atc_3", - "name": "airport", - "sym": "ô", - "color": "i_cyan" - }, - { - "type": "overmap_terrain", - "id": "s_air_hangars", - "name": "airport", - "sym": "ý", - "color": "i_cyan" - }, - { - "type": "overmap_terrain", - "id": "s_air_runway", - "name": "runway", - "sym": "ô", - "color": "blue" - }, - { - "type": "overmap_terrain", - "id": "s_air_runway_hangars", - "name": "runway", - "sym": "ô", - "color": "blue" - }, - { - "type": "overmap_terrain", - "id": "s_air_runway_l", - "name": "runway", - "sym": "ô", - "color": "blue" - }, - { - "type": "overmap_terrain", - "id": "s_air_runway_r", - "name": "runway", - "sym": "ô", - "color": "blue" - }, - { - "type": "overmap_terrain", - "id": "s_air_runway_term", - "name": "runway", - "sym": "ô", - "color": "blue" - }, - { - "type": "overmap_terrain", - "id": "s_lightindustry_road_0", - "name": "light industry", - "sym": "Ö", - "color": "dark_gray" - }, - { - "type": "overmap_terrain", - "id": "s_lightindustry_road_1", - "name": "light industry", - "sym": "Ö", - "color": "dark_gray" - }, - { - "type": "overmap_terrain", - "id": "s_lightindustry_00", - "name": "light industry", - "sym": "Ö", - "color": "light_blue" - }, - { - "type": "overmap_terrain", - "id": "s_lightindustry_01", - "name": "light industry", - "sym": "Ö", - "color": "light_blue" - }, - { - "type": "overmap_terrain", - "id": "s_lightindustry_10", - "name": "light industry", - "sym": "Ö", - "color": "light_blue" - }, - { - "type": "overmap_terrain", - "id": "s_lightindustry_11", - "name": "light industry", - "sym": "Ö", - "color": "light_blue" - }, - { - "type": "overmap_terrain", - "id": "s_gas_g1", - "name": "gas station", - "sym": "ú", - "color": "light_blue" - }, - { - "type": "overmap_terrain", - "id": "s_gas_g0", - "name": "gas station", - "sym": "ú", - "color": "light_blue" - }, - { - "type": "overmap_terrain", - "id": "s_gas_b11", - "name": "reception", - "sym": "ú", - "color": "red" - }, - { - "type": "overmap_terrain", - "id": "s_gas_b20", - "name": "bunker", - "sym": "Õ", - "color": "red" - }, - { - "type": "overmap_terrain", - "id": "s_gas_b21", - "name": "bunker", - "sym": "Õ", - "color": "red" - }, - { - "type": "overmap_terrain", - "id": "s_bunker_shop_g", - "name": "derelict property", - "sym": "à", - "color": "white" - }, - { - "type": "overmap_terrain", - "id": "s_bunker_shop_b", - "name": "scavenger bunker", - "sym": "Õ", - "color": "light_green" - } -] diff --git a/data/mods/Graphical_Overmap/mod support/overmap_terrain_more_locations.json b/data/mods/Graphical_Overmap/mod support/overmap_terrain_more_locations.json deleted file mode 100644 index 1ee1b7dd6ed3b..0000000000000 --- a/data/mods/Graphical_Overmap/mod support/overmap_terrain_more_locations.json +++ /dev/null @@ -1,1731 +0,0 @@ -[ - { - "type": "overmap_terrain", - "id": "bandit_tower_1gate", - "name": "apartment towers", - "sym": "Ç", - "color": "brown" - }, - { - "type": "overmap_terrain", - "id": "bandit_tower_1ybe", - "name": "apartment towers", - "sym": "Ç", - "color": "brown" - }, - { - "type": "overmap_terrain", - "id": "bandit_tower_1yle", - "name": "apartment towers", - "sym": "Ç", - "color": "brown" - }, - { - "type": "overmap_terrain", - "id": "bandit_tower_1yre", - "name": "apartment towers", - "sym": "Ç", - "color": "brown" - }, - { - "type": "overmap_terrain", - "id": "bandit_tower_1yte", - "name": "apartment towers", - "sym": "Ç", - "color": "brown" - }, - { - "type": "overmap_terrain", - "id": "bandit_tower_1cyblc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "bandit_tower_1cybrc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "bandit_tower_1cytlc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "bandit_tower_1cytrc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "bandit_tower_1blc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "bandit_tower_1brc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "bandit_tower_1tlc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "bandit_tower_1trc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "bandit_tower_2blc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "bandit_tower_2brc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "bandit_tower_2tlc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "bandit_tower_2trc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "bandit_tower_3blc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "bandit_tower_3brc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "bandit_tower_3tlc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "bandit_tower_3trc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "bandit_tower_4blc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "bandit_tower_4brc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "bandit_tower_4tlc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "bandit_tower_4trc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "bandit_tower_ublc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "bandit_tower_ubrc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "bandit_tower_utlc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "bandit_tower_utrc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "estate_umid", - "name": "mansion", - "sym": "Ð", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "estate_ube", - "name": "mansion", - "sym": "Ð", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "estate_ule", - "name": "mansion", - "sym": "Ð", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "estate_ure", - "name": "mansion", - "sym": "Ð", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "estate_ute", - "name": "mansion", - "sym": "Ð", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "estate_mid", - "name": "mansion", - "sym": "Ð", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "estate_1be", - "name": "mansion", - "sym": "Ð", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "estate_1bloc", - "name": "mansion", - "sym": "Ð", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "estate_1broc", - "name": "mansion", - "sym": "Ð", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "estate_1by", - "name": "mansion", - "sym": "Ð", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "estate_1ica", - "name": "mansion", - "sym": "Ð", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "estate_1icb", - "name": "mansion", - "sym": "Ð", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "estate_1icc", - "name": "mansion", - "sym": "Ð", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "estate_1icd", - "name": "mansion", - "sym": "Ð", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "estate_1le", - "name": "mansion", - "sym": "Ð", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "estate_1re", - "name": "mansion", - "sym": "Ð", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "estate_1te", - "name": "mansion", - "sym": "Ð", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "estate_1tloc", - "name": "mansion", - "sym": "Ð", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "estate_1troc", - "name": "mansion", - "sym": "Ð", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "estate_1ty", - "name": "mansion", - "sym": "Ð", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "estate_2be", - "name": "mansion", - "sym": "Ð", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "estate_2bloc", - "name": "mansion", - "sym": "Ð", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "estate_2broc", - "name": "mansion", - "sym": "Ð", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "estate_2ica", - "name": "mansion", - "sym": "Ð", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "estate_2icb", - "name": "mansion", - "sym": "Ð", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "estate_2icc", - "name": "mansion", - "sym": "Ð", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "estate_2icd", - "name": "mansion", - "sym": "Ð", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "estate_2le", - "name": "mansion", - "sym": "Ð", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "estate_2re", - "name": "mansion", - "sym": "Ð", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "estate_2te", - "name": "mansion", - "sym": "Ð", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "estate_2tloc", - "name": "mansion", - "sym": "Ð", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "estate_2troc", - "name": "mansion", - "sym": "Ð", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "factory_tlc", - "name": "factory", - "sym": "Ö", - "color": "i_black" - }, - { - "type": "overmap_terrain", - "id": "factory_te", - "name": "factory", - "sym": "Ö", - "color": "i_black" - }, - { - "type": "overmap_terrain", - "id": "factory_trc", - "name": "factory", - "sym": "Ö", - "color": "i_black" - }, - { - "type": "overmap_terrain", - "id": "factory_le", - "name": "factory", - "sym": "Ö", - "color": "i_black" - }, - { - "type": "overmap_terrain", - "id": "factory_mid", - "name": "factory", - "sym": "Ö", - "color": "i_black" - }, - { - "type": "overmap_terrain", - "id": "factory_re", - "name": "factory", - "sym": "Ö", - "color": "i_black" - }, - { - "type": "overmap_terrain", - "id": "factory_blc", - "name": "factory", - "sym": "Ö", - "color": "i_black" - }, - { - "type": "overmap_terrain", - "id": "factory_be", - "name": "factory", - "sym": "Ö", - "color": "i_black" - }, - { - "type": "overmap_terrain", - "id": "factory_be_gate", - "name": "factory", - "sym": "Ö", - "color": "i_black" - }, - { - "type": "overmap_terrain", - "id": "factory_brc", - "name": "factory", - "sym": "Ö", - "color": "i_black" - }, - { - "type": "overmap_terrain", - "id": "mil_outpost_ytlc", - "name": "mine field", - "sym": "¨", - "color": "brown" - }, - { - "type": "overmap_terrain", - "id": "mil_outpost_yte", - "name": "mine field", - "sym": "¨", - "color": "brown" - }, - { - "type": "overmap_terrain", - "id": "mil_outpost_ytrc", - "name": "mine field", - "sym": "¨", - "color": "brown" - }, - { - "type": "overmap_terrain", - "id": "mil_outpost_yle", - "name": "mine field", - "sym": "¨", - "color": "brown" - }, - { - "type": "overmap_terrain", - "id": "mil_outpost_yre", - "name": "mine field", - "sym": "¨", - "color": "brown" - }, - { - "type": "overmap_terrain", - "id": "mil_outpost_yblc", - "name": "mine field", - "sym": "¨", - "color": "brown" - }, - { - "type": "overmap_terrain", - "id": "mil_outpost_ybe", - "name": "mine field", - "sym": "¨", - "color": "brown" - }, - { - "type": "overmap_terrain", - "id": "mil_outpost_ybe_gate", - "name": "gate", - "sym": ".", - "color": "white" - }, - { - "type": "overmap_terrain", - "id": "mil_outpost_ybrc", - "name": "mine field", - "sym": "¨", - "color": "brown" - }, - { - "type": "overmap_terrain", - "id": "mil_outpost_1tlc", - "name": "military outpost", - "sym": "Å", - "color": "i_red" - }, - { - "type": "overmap_terrain", - "id": "mil_outpost_1te", - "name": "military outpost", - "sym": "Å", - "color": "i_red" - }, - { - "type": "overmap_terrain", - "id": "mil_outpost_1trc", - "name": "military outpost", - "sym": "Å", - "color": "i_red" - }, - { - "type": "overmap_terrain", - "id": "mil_outpost_1le", - "name": "military outpost", - "sym": "Å", - "color": "i_red" - }, - { - "type": "overmap_terrain", - "id": "mil_outpost_1mid", - "name": "military outpost", - "sym": "Å", - "color": "i_red" - }, - { - "type": "overmap_terrain", - "id": "mil_outpost_1re", - "name": "military outpost", - "sym": "Å", - "color": "i_red" - }, - { - "type": "overmap_terrain", - "id": "mil_outpost_1blc", - "name": "military outpost", - "sym": "Å", - "color": "i_red" - }, - { - "type": "overmap_terrain", - "id": "mil_outpost_1be", - "name": "military outpost", - "sym": "Å", - "color": "i_red" - }, - { - "type": "overmap_terrain", - "id": "mil_outpost_1brc", - "name": "military outpost", - "sym": "Å", - "color": "i_red" - }, - { - "type": "overmap_terrain", - "id": "mil_outpost_2tlc", - "name": "military outpost", - "sym": "Å", - "color": "i_red" - }, - { - "type": "overmap_terrain", - "id": "mil_outpost_2te", - "name": "military outpost", - "sym": "Å", - "color": "i_red" - }, - { - "type": "overmap_terrain", - "id": "mil_outpost_2trc", - "name": "military outpost", - "sym": "Å", - "color": "i_red" - }, - { - "type": "overmap_terrain", - "id": "mil_outpost_2le", - "name": "military outpost", - "sym": "Å", - "color": "i_red" - }, - { - "type": "overmap_terrain", - "id": "mil_outpost_2re", - "name": "military outpost", - "sym": "Å", - "color": "i_red" - }, - { - "type": "overmap_terrain", - "id": "mil_outpost_2blc", - "name": "military outpost", - "sym": "Å", - "color": "i_red" - }, - { - "type": "overmap_terrain", - "id": "mil_outpost_2be", - "name": "military outpost", - "sym": "Å", - "color": "i_red" - }, - { - "type": "overmap_terrain", - "id": "mil_outpost_2brc", - "name": "military outpost", - "sym": "Å", - "color": "i_red" - }, - { - "type": "overmap_terrain", - "id": "mil_outpost_3c", - "name": "military outpost", - "sym": "Å", - "color": "i_red" - }, - { - "type": "overmap_terrain", - "id": "mil_outpost_utlc", - "name": "military outpost", - "sym": "Å", - "color": "i_red" - }, - { - "type": "overmap_terrain", - "id": "mil_outpost_utea", - "name": "military outpost", - "sym": "Å", - "color": "i_red" - }, - { - "type": "overmap_terrain", - "id": "mil_outpost_uteb", - "name": "military outpost", - "sym": "Å", - "color": "i_red" - }, - { - "type": "overmap_terrain", - "id": "mil_outpost_utrc", - "name": "military outpost", - "sym": "Å", - "color": "i_red" - }, - { - "type": "overmap_terrain", - "id": "mil_outpost_ule", - "name": "military outpost", - "sym": "Å", - "color": "i_red" - }, - { - "type": "overmap_terrain", - "id": "mil_outpost_umid", - "name": "military outpost", - "sym": "Å", - "color": "i_red" - }, - { - "type": "overmap_terrain", - "id": "mil_outpost_umid_finale", - "name": "military outpost", - "sym": "Å", - "color": "red_white" - }, - { - "type": "overmap_terrain", - "id": "mil_outpost_ure", - "name": "military outpost", - "sym": "Å", - "color": "i_red" - }, - { - "type": "overmap_terrain", - "id": "mil_outpost_ublc", - "name": "military outpost", - "sym": "Å", - "color": "i_red" - }, - { - "type": "overmap_terrain", - "id": "mil_outpost_ubea", - "name": "military outpost", - "sym": "Å", - "color": "i_red" - }, - { - "type": "overmap_terrain", - "id": "mil_outpost_ubeb", - "name": "military outpost", - "sym": "Å", - "color": "i_red" - }, - { - "type": "overmap_terrain", - "id": "mil_outpost_ubrc", - "name": "military outpost", - "sym": "Å", - "color": "i_red" - }, - { - "type": "overmap_terrain", - "id": "3storyA_first", - "name": "house", - "sym": "à", - "color": "light_green" - }, - { - "type": "overmap_terrain", - "id": "3storyA_second", - "name": "house", - "sym": "à", - "color": "light_green" - }, - { - "type": "overmap_terrain", - "id": "3storyA_third", - "name": "house", - "sym": "à", - "color": "light_green" - }, - { - "type": "overmap_terrain", - "id": "3storyA_basement", - "name": "house basement", - "sym": "à", - "color": "dark_gray" - }, - { - "type": "overmap_terrain", - "id": "3storyA_roof", - "name": "house roof", - "sym": "à", - "color": "dark_gray" - }, - { - "type": "overmap_terrain", - "id": "3storyB_first", - "name": "house", - "sym": "à", - "color": "light_green" - }, - { - "type": "overmap_terrain", - "id": "3storyB_second", - "name": "house", - "sym": "à", - "color": "light_green" - }, - { - "type": "overmap_terrain", - "id": "3storyB_third", - "name": "house", - "sym": "à", - "color": "light_green" - }, - { - "type": "overmap_terrain", - "id": "3storyB_basement", - "name": "house basement", - "sym": "à", - "color": "dark_gray" - }, - { - "type": "overmap_terrain", - "id": "3storyB_roof", - "name": "house roof", - "sym": "à", - "color": "dark_gray" - }, - { - "type": "overmap_terrain", - "id": "3storyC_first", - "name": "house", - "sym": "à", - "color": "light_green" - }, - { - "type": "overmap_terrain", - "id": "3storyC_second", - "name": "house", - "sym": "à", - "color": "light_green" - }, - { - "type": "overmap_terrain", - "id": "3storyC_third", - "name": "house", - "sym": "à", - "color": "light_green" - }, - { - "type": "overmap_terrain", - "id": "3storyC_basement", - "name": "house basement", - "sym": "à", - "color": "dark_gray" - }, - { - "type": "overmap_terrain", - "id": "3storyC_roof", - "name": "house roof", - "sym": "à", - "color": "dark_gray" - }, - { - "type": "overmap_terrain", - "id": "3storyD_first", - "name": "house", - "sym": "à", - "color": "light_green" - }, - { - "type": "overmap_terrain", - "id": "3storyD_second", - "name": "house", - "sym": "à", - "color": "light_green" - }, - { - "type": "overmap_terrain", - "id": "3storyD_third", - "name": "house", - "sym": "à", - "color": "light_green" - }, - { - "type": "overmap_terrain", - "id": "3storyD_basement", - "name": "house basement", - "sym": "à", - "color": "dark_gray" - }, - { - "type": "overmap_terrain", - "id": "3storyD_roof", - "name": "house roof", - "sym": "à", - "color": "dark_gray" - }, - { - "type": "overmap_terrain", - "id": "3storyE_first", - "name": "house", - "sym": "à", - "color": "light_green" - }, - { - "type": "overmap_terrain", - "id": "3storyE_second", - "name": "house", - "sym": "à", - "color": "light_green" - }, - { - "type": "overmap_terrain", - "id": "3storyE_third", - "name": "house", - "sym": "à", - "color": "light_green" - }, - { - "type": "overmap_terrain", - "id": "3storyE_basement", - "name": "house basement", - "sym": "à", - "color": "dark_gray" - }, - { - "type": "overmap_terrain", - "id": "3storyE_roof", - "name": "house roof", - "sym": "à", - "color": "dark_gray" - }, - { - "type": "overmap_terrain", - "id": "3storyF_first", - "name": "house", - "sym": "à", - "color": "light_green" - }, - { - "type": "overmap_terrain", - "id": "3storyF_second", - "name": "house", - "sym": "à", - "color": "light_green" - }, - { - "type": "overmap_terrain", - "id": "3storyF_third", - "name": "house", - "sym": "à", - "color": "light_green" - }, - { - "type": "overmap_terrain", - "id": "3storyF_basement", - "name": "house basement", - "sym": "à", - "color": "dark_gray" - }, - { - "type": "overmap_terrain", - "id": "3storyF_roof", - "name": "house roof", - "sym": "à", - "color": "dark_gray" - }, - { - "type": "overmap_terrain", - "id": "2storyA_first", - "name": "house", - "sym": "à", - "color": "light_green" - }, - { - "type": "overmap_terrain", - "id": "2storyA_second", - "name": "house", - "sym": "à", - "color": "light_green" - }, - { - "type": "overmap_terrain", - "id": "2storyA_basement", - "name": "house basement", - "sym": "à", - "color": "dark_gray" - }, - { - "type": "overmap_terrain", - "id": "2storyA_roof", - "name": "house roof", - "sym": "à", - "color": "dark_gray" - }, - { - "type": "overmap_terrain", - "id": "2storyB_first", - "name": "house", - "sym": "à", - "color": "light_green" - }, - { - "type": "overmap_terrain", - "id": "2storyB_second", - "name": "house", - "sym": "à", - "color": "light_green" - }, - { - "type": "overmap_terrain", - "id": "2storyB_basement", - "name": "house basement", - "sym": "à", - "color": "dark_gray" - }, - { - "type": "overmap_terrain", - "id": "2storyB_roof", - "name": "house roof", - "sym": "à", - "color": "dark_gray" - }, - { - "type": "overmap_terrain", - "id": "2storyC_first", - "name": "house", - "sym": "à", - "color": "light_green" - }, - { - "type": "overmap_terrain", - "id": "2storyC_second", - "name": "house", - "sym": "à", - "color": "light_green" - }, - { - "type": "overmap_terrain", - "id": "2storyC_basement", - "name": "house basement", - "sym": "à", - "color": "dark_gray" - }, - { - "type": "overmap_terrain", - "id": "2storyC_roof", - "name": "house roof", - "sym": "à", - "color": "dark_gray" - }, - { - "type": "overmap_terrain", - "id": "2storyD_first", - "name": "house", - "sym": "à", - "color": "light_green" - }, - { - "type": "overmap_terrain", - "id": "2storyD_second", - "name": "house", - "sym": "à", - "color": "light_green" - }, - { - "type": "overmap_terrain", - "id": "2storyD_basement", - "name": "house basement", - "sym": "à", - "color": "dark_gray" - }, - { - "type": "overmap_terrain", - "id": "2storyD_roof", - "name": "house roof", - "sym": "à", - "color": "dark_gray" - }, - { - "type": "overmap_terrain", - "id": "2storyE_first", - "name": "house", - "sym": "à", - "color": "light_green" - }, - { - "type": "overmap_terrain", - "id": "2storyE_second", - "name": "house", - "sym": "à", - "color": "light_green" - }, - { - "type": "overmap_terrain", - "id": "2storyE_basement", - "name": "house basement", - "sym": "à", - "color": "dark_gray" - }, - { - "type": "overmap_terrain", - "id": "2storyE_roof", - "name": "house roof", - "sym": "à", - "color": "dark_gray" - }, - { - "type": "overmap_terrain", - "id": "2storyF_first", - "name": "house", - "sym": "à", - "color": "light_green" - }, - { - "type": "overmap_terrain", - "id": "2storyF_second", - "name": "house", - "sym": "à", - "color": "light_green" - }, - { - "type": "overmap_terrain", - "id": "2storyF_basement", - "name": "house basement", - "sym": "à", - "color": "dark_gray" - }, - { - "type": "overmap_terrain", - "id": "2storyF_roof", - "name": "house roof", - "sym": "à", - "color": "dark_gray" - }, - { - "type": "overmap_terrain", - "id": "combohouseA_first", - "name": "house", - "sym": "à", - "color": "light_green" - }, - { - "type": "overmap_terrain", - "id": "combohouseA_second", - "name": "house", - "sym": "à", - "color": "light_green" - }, - { - "type": "overmap_terrain", - "id": "combohouseA_basement", - "name": "house basement", - "sym": "à", - "color": "dark_gray" - }, - { - "type": "overmap_terrain", - "id": "combohouseA_roof", - "name": "house roof", - "sym": "à", - "color": "dark_gray" - }, - { - "type": "overmap_terrain", - "id": "combogarageA_first", - "name": "attached garage", - "sym": "^", - "color": "light_green" - }, - { - "type": "overmap_terrain", - "id": "combogarageA_second", - "name": "house", - "sym": "à", - "color": "light_green" - }, - { - "type": "overmap_terrain", - "id": "combogarageA_roof", - "name": "house roof", - "sym": "à", - "color": "magenta_white" - }, - { - "type": "overmap_terrain", - "id": "combohouseB_first", - "name": "house", - "sym": "à", - "color": "light_green" - }, - { - "type": "overmap_terrain", - "id": "combohouseB_second", - "name": "house", - "sym": "à", - "color": "light_green" - }, - { - "type": "overmap_terrain", - "id": "combohouseB_basement", - "name": "house basement", - "sym": "à", - "color": "dark_gray" - }, - { - "type": "overmap_terrain", - "id": "combohouseB_roof", - "name": "house roof", - "sym": "à", - "color": "dark_gray" - }, - { - "type": "overmap_terrain", - "id": "combogarageB_first", - "name": "attached garage", - "sym": "^", - "color": "light_green" - }, - { - "type": "overmap_terrain", - "id": "combogarageB_second", - "name": "house", - "sym": "à", - "color": "light_green" - }, - { - "type": "overmap_terrain", - "id": "combogarageB_roof", - "name": "house roof", - "sym": "à", - "color": "magenta_white" - }, - { - "type": "overmap_terrain", - "id": "combohouseC_first", - "name": "house", - "sym": "à", - "color": "light_green" - }, - { - "type": "overmap_terrain", - "id": "combohouseC_second", - "name": "house", - "sym": "à", - "color": "light_green" - }, - { - "type": "overmap_terrain", - "id": "combohouseC_basement", - "name": "house basement", - "sym": "à", - "color": "dark_gray" - }, - { - "type": "overmap_terrain", - "id": "combohouseC_roof", - "name": "house roof", - "sym": "à", - "color": "dark_gray" - }, - { - "type": "overmap_terrain", - "id": "combogarageC_first", - "name": "attached garage", - "sym": "^", - "color": "light_green" - }, - { - "type": "overmap_terrain", - "id": "combogarageC_second", - "name": "house", - "sym": "à", - "color": "light_green" - }, - { - "type": "overmap_terrain", - "id": "combogarageC_roof", - "name": "house roof", - "sym": "à", - "color": "magenta_white" - }, - { - "type": "overmap_terrain", - "id": "refugee_tower_1gate", - "name": "apartment towers", - "sym": "Ç", - "color": "brown" - }, - { - "type": "overmap_terrain", - "id": "refugee_tower_1ybe", - "name": "apartment towers", - "sym": "Ç", - "color": "brown" - }, - { - "type": "overmap_terrain", - "id": "refugee_tower_1yle", - "name": "apartment towers", - "sym": "Ç", - "color": "brown" - }, - { - "type": "overmap_terrain", - "id": "refugee_tower_1yre", - "name": "apartment towers", - "sym": "Ç", - "color": "brown" - }, - { - "type": "overmap_terrain", - "id": "refugee_tower_1yte", - "name": "apartment towers", - "sym": "Ç", - "color": "brown" - }, - { - "type": "overmap_terrain", - "id": "refugee_tower_1cyblc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "refugee_tower_1cybrc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "refugee_tower_1cytlc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "refugee_tower_1cytrc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "refugee_tower_1blc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "refugee_tower_1brc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "refugee_tower_1tlc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "refugee_tower_1trc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "refugee_tower_2blc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "refugee_tower_2brc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "refugee_tower_2tlc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "refugee_tower_2trc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "refugee_tower_3blc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "refugee_tower_3brc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "refugee_tower_3tlc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "refugee_tower_3trc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "refugee_tower_4blc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "refugee_tower_4brc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "refugee_tower_4tlc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "refugee_tower_4trc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "refugee_tower_5blc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "refugee_tower_5brc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "refugee_tower_5tlc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "refugee_tower_5trc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "refugee_tower_ublc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "refugee_tower_ubrc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "refugee_tower_utlc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "refugee_tower_utrc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "tri_tower_1gate", - "name": "apartment towers", - "sym": "Ç", - "color": "brown" - }, - { - "type": "overmap_terrain", - "id": "tri_tower_1ybe", - "name": "apartment towers", - "sym": "Ç", - "color": "brown" - }, - { - "type": "overmap_terrain", - "id": "tri_tower_1yle", - "name": "apartment towers", - "sym": "Ç", - "color": "brown" - }, - { - "type": "overmap_terrain", - "id": "tri_tower_1yre", - "name": "apartment towers", - "sym": "Ç", - "color": "brown" - }, - { - "type": "overmap_terrain", - "id": "tri_tower_1yte", - "name": "apartment towers", - "sym": "Ç", - "color": "brown" - }, - { - "type": "overmap_terrain", - "id": "tri_tower_1cyblc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "tri_tower_1cybrc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "tri_tower_1cytlc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "tri_tower_1cytrc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "tri_tower_1blc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "tri_tower_1brc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "tri_tower_1tlc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "tri_tower_1trc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "tri_tower_2blc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "tri_tower_2brc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "tri_tower_2tlc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "tri_tower_2trc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "tri_tower_3blc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "tri_tower_3brc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "tri_tower_3tlc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "tri_tower_3trc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "tri_tower_4blc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "tri_tower_4brc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "tri_tower_4tlc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "tri_tower_4trc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "tri_tower_ublc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "tri_tower_ubrc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "tri_tower_utlc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" - }, - { - "type": "overmap_terrain", - "id": "tri_tower_utrc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" - } -] diff --git a/data/mods/Graphical_Overmap/mod support/overmap_terrain_secronom.json b/data/mods/Graphical_Overmap/mod support/overmap_terrain_secronom.json deleted file mode 100644 index f49a1359a68d4..0000000000000 --- a/data/mods/Graphical_Overmap/mod support/overmap_terrain_secronom.json +++ /dev/null @@ -1,184 +0,0 @@ -[{ - "type": "overmap_terrain", - "id": "SecronomSSLab_top", - "name": "secronom lab", - "sym": "Á", - "color": "ltgray" - }, { - "type": "overmap_terrain", - "id": "SecronomSSLab_b1", - "name": "underground secronom lab", - "sym": "Á", - "color": "ltgray" - }, { - "type": "overmap_terrain", - "id": "SecronomSSLab_bowspecs", - "name": "underground secronom lab", - "sym": "Á", - "color": "ltgray" - }, { - "type": "overmap_terrain", - "id": "SecronomSSLab_b2", - "name": "underground secronom lab", - "sym": "Á", - "color": "ltgray" - }, { - "type": "overmap_terrain", - "id": "SecronomSSLab_failspecs", - "name": "underground secronom lab", - "sym": "Á", - "color": "ltgray" - }, { - "type": "overmap_terrain", - "id": "SecronomSSLab_b3", - "name": "underground secronom lab", - "sym": "Á", - "color": "ltgray" - }, { - "type": "overmap_terrain", - "id": "SecronomSSLab_Climax", - "name": "underground secronom lab", - "sym": "Á", - "color": "ltgray" - }, { - "id": "saddler_cave_entrance_1", - "type": "overmap_terrain", - "name": "field", - "sym": "¨", - "color": "brown" - }, { - "id": "saddler_cave_entrance_2", - "type": "overmap_terrain", - "name": "field", - "sym": "¨", - "color": "brown" - }, { - "id": "saddler_cave_entrance_3", - "type": "overmap_terrain", - "name": "field", - "sym": "¨", - "color": "brown" - }, { - "id": "saddler_cave_entrance_4", - "type": "overmap_terrain", - "name": "field", - "sym": "¨", - "color": "brown" - }, { - "id": "saddler_cave_entrance_5", - "type": "overmap_terrain", - "name": "field", - "sym": "¨", - "color": "green" - }, { - "id": "saddler_cave_entrance_6", - "type": "overmap_terrain", - "name": "field", - "sym": "¨", - "color": "brown" - }, { - "id": "saddler_cave_entrance_7", - "type": "overmap_terrain", - "name": "field", - "sym": "¨", - "color": "brown" - }, { - "id": "saddler_cave_entrance_8", - "type": "overmap_terrain", - "name": "field", - "sym": "¨", - "color": "brown" - }, { - "id": "saddler_cave_entrance_9", - "type": "overmap_terrain", - "name": "field", - "sym": "¨", - "color": "brown" - }, { - "id": "saddler_cave_up", - "type": "overmap_terrain", - "name": "saddler nest", - "sym": "ê", - "color": "green" - }, { - "id": "saddler_cave_north", - "type": "overmap_terrain", - "name": "saddler nest", - "sym": "ê", - "color": "green" - }, { - "id": "saddler_cave_west", - "type": "overmap_terrain", - "name": "saddler nest", - "sym": "ê", - "color": "green" - }, { - "id": "saddler_cave_brood", - "type": "overmap_terrain", - "name": "saddler nest", - "sym": "ê", - "color": "light_green" - }, { - "type": "overmap_terrain", - "id": "secro_house_flesh", - "copy-from": "generic_residential_medium", - "name": "house", - "sym": "à", - "color": "green_red" - }, - { - "id": "flesh_forest_1", - "type": "overmap_terrain", - "name": "forest", - "sym": "è", - "color": "red" - }, { - "id": "flesh_forest_2", - "type": "overmap_terrain", - "name": "forest", - "sym": "è", - "color": "red" - }, { - "id": "flesh_forest_3", - "type": "overmap_terrain", - "name": "forest", - "sym": "è", - "color": "red" - }, { - "id": "flesh_forest_4", - "type": "overmap_terrain", - "name": "forest", - "sym": "è", - "color": "red" - }, { - "id": "flesh_forest_5", - "type": "overmap_terrain", - "name": "forest", - "sym": "è", - "color": "light_red" - }, { - "id": "flesh_forest_6", - "type": "overmap_terrain", - "name": "forest", - "sym": "è", - "color": "red" - }, { - "id": "flesh_forest_7", - "type": "overmap_terrain", - "name": "forest", - "sym": "è", - "color": "red" - }, { - "id": "flesh_forest_8", - "type": "overmap_terrain", - "name": "forest", - "sym": "è", - "color": "red" - }, { - "id": "flesh_forest_9", - "type": "overmap_terrain", - "name": "forest", - "sym": "è", - "color": "red" - } -] diff --git a/data/mods/Graphical_Overmap/mod support/overmap_terrain_urban_development.json b/data/mods/Graphical_Overmap/mod support/overmap_terrain_urban_development.json deleted file mode 100644 index 248cf95fae97e..0000000000000 --- a/data/mods/Graphical_Overmap/mod support/overmap_terrain_urban_development.json +++ /dev/null @@ -1,3223 +0,0 @@ -[ - { - "id": "urban_1_1", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_1_2", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_1_3", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_1_4", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_1_6", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_2_1", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_2_2", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_2_3", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_2_4", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_2_5", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_2_6", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_3_1", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_3_2", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_3_3", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_3_4", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_3_5", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_3_6", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_4_1", - "type": "overmap_terrain", - "name": "basement", - "sym": "à", - "color": "dark_gray" - }, - { - "id": "urban_4_2", - "type": "overmap_terrain", - "name": "basement", - "sym": "à", - "color": "dark_gray" - }, - { - "id": "urban_4_3", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_4_4", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_4_5", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_4_6", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_4_7", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_4_8", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_5_1", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_5_2", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_5_3", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_5_4", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_5_5", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_5_6", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_6_1", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_6_2", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_6_3", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_6_4", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_6_5", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_6_6", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_7_1", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_7_2", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_7_3", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_7_4", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_7_5", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_7_6", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_8_1", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_8_2", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_8_3", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_8_4", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_8_6", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_9_1", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_9_2", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_9_3", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_9_4", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_9_5", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_9_6", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_10_1", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_10_2", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_10_3", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_10_4", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_10_5", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_10_6", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_11_1", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_11_2", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_11_3", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_11_4", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_11_5", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_11_6", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_12_1", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_12_2", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_12_3", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_12_4", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_12_5", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_12_6", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_13_1", - "type": "overmap_terrain", - "name": "basement", - "sym": "à", - "color": "dark_gray" - }, - { - "id": "urban_13_2", - "type": "overmap_terrain", - "name": "basement", - "sym": "à", - "color": "dark_gray" - }, - { - "id": "urban_13_3", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_13_4", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_13_5", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_13_6", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_13_7", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_13_8", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_13_9", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_13_10", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_13_11", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_13_12", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_14_1", - "type": "overmap_terrain", - "name": "basement", - "sym": "à", - "color": "dark_gray" - }, - { - "id": "urban_14_2", - "type": "overmap_terrain", - "name": "basement", - "sym": "à", - "color": "dark_gray" - }, - { - "id": "urban_14_3", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_14_4", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_14_5", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_14_6", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_14_7", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_14_8", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_14_9", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_14_10", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_14_11", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_14_12", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_14_13", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_14_14", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_15_1", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_15_2", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_15_3", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_15_4", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_15_5", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_15_6", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_16_1", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_16_2", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_16_3", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_16_4", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_17_1", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_17_2", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_17_3", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_17_4", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_18_1", - "type": "overmap_terrain", - "name": "basement", - "sym": "à", - "color": "dark_gray" - }, - { - "id": "urban_18_2", - "type": "overmap_terrain", - "name": "basement", - "sym": "à", - "color": "dark_gray" - }, - { - "id": "urban_18_3", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_18_4", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_18_5", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_18_6", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_18_7", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_18_8", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_18_9", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_18_10", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_19_1", - "type": "overmap_terrain", - "name": "basement", - "sym": "à", - "color": "dark_gray" - }, - { - "id": "urban_19_2", - "type": "overmap_terrain", - "name": "basement", - "sym": "à", - "color": "dark_gray" - }, - { - "id": "urban_19_3", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_19_4", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_19_5", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_19_6", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_19_7", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_19_8", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_19_9", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_19_10", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_19_11", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_19_12", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_20_1", - "type": "overmap_terrain", - "name": "basement", - "sym": "à", - "color": "dark_gray" - }, - { - "id": "urban_20_2", - "type": "overmap_terrain", - "name": "basement", - "sym": "à", - "color": "dark_gray" - }, - { - "id": "urban_20_3", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_20_4", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_20_5", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_20_6", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_20_7", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_20_8", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_21_1", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_21_2", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_21_3", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_21_4", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_22_1", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_22_2", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_22_3", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_22_4", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_23_1", - "type": "overmap_terrain", - "name": "basement", - "sym": "à", - "color": "dark_gray" - }, - { - "id": "urban_23_2", - "type": "overmap_terrain", - "name": "basement", - "sym": "à", - "color": "dark_gray" - }, - { - "id": "urban_23_3", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_23_4", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_23_5", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_23_6", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_23_7", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_23_8", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_23_9", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_23_10", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_23_11", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_24_1", - "type": "overmap_terrain", - "name": "basement", - "sym": "à", - "color": "dark_gray" - }, - { - "id": "urban_24_2", - "type": "overmap_terrain", - "name": "basement", - "sym": "à", - "color": "dark_gray" - }, - { - "id": "urban_24_3", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_24_4", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_24_5", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_24_6", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_24_7", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_24_8", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_24_9", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_24_10", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_24_11", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_24_12", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_24_14", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_25_1", - "type": "overmap_terrain", - "name": "basement", - "sym": "à", - "color": "dark_gray" - }, - { - "id": "urban_25_2", - "type": "overmap_terrain", - "name": "basement", - "sym": "à", - "color": "dark_gray" - }, - { - "id": "urban_25_3", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_25_4", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_25_5", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_25_6", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_25_7", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_25_8", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_25_9", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_25_10", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_25_12", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_26_1", - "type": "overmap_terrain", - "name": "basement", - "sym": "à", - "color": "dark_gray" - }, - { - "id": "urban_26_2", - "type": "overmap_terrain", - "name": "basement", - "sym": "à", - "color": "dark_gray" - }, - { - "id": "urban_26_3", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_26_4", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_26_5", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_26_6", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_26_7", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_26_8", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_26_9", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_26_10", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_26_11", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_26_12", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_27_1", - "type": "overmap_terrain", - "name": "basement", - "sym": "à", - "color": "dark_gray" - }, - { - "id": "urban_27_2", - "type": "overmap_terrain", - "name": "basement", - "sym": "à", - "color": "dark_gray" - }, - { - "id": "urban_27_3", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_27_4", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_27_5", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_27_6", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_27_7", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_27_8", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_27_9", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_27_10", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_27_11", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_27_12", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_27_13", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_28_1", - "type": "overmap_terrain", - "name": "basement", - "sym": "à", - "color": "dark_gray" - }, - { - "id": "urban_28_2", - "type": "overmap_terrain", - "name": "basement", - "sym": "à", - "color": "dark_gray" - }, - { - "id": "urban_28_3", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_28_4", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_28_5", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_28_6", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_28_7", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_28_8", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_28_9", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_28_10", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_28_11", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_29_1", - "type": "overmap_terrain", - "name": "basement", - "sym": "à", - "color": "dark_gray" - }, - { - "id": "urban_29_2", - "type": "overmap_terrain", - "name": "basement", - "sym": "à", - "color": "dark_gray" - }, - { - "id": "urban_29_3", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_29_4", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_29_5", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_29_6", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_29_7", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_29_8", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_29_9", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_29_10", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_30_1", - "type": "overmap_terrain", - "name": "basement", - "sym": "à", - "color": "dark_gray" - }, - { - "id": "urban_30_2", - "type": "overmap_terrain", - "name": "subway station", - "sym": "S", - "color": "yellow" - }, - { - "id": "urban_30_3", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_30_4", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_30_5", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_30_6", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_30_7", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_30_8", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_30_9", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_30_10", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_31_1", - "type": "overmap_terrain", - "name": "police station", - "sym": "ÿ", - "color": "h_yellow" - }, - { - "id": "urban_31_2", - "type": "overmap_terrain", - "name": "police station", - "sym": "ÿ", - "color": "h_yellow" - }, - { - "id": "urban_31_3", - "type": "overmap_terrain", - "name": "police station", - "sym": "ÿ", - "color": "h_yellow" - }, - { - "id": "urban_31_4", - "type": "overmap_terrain", - "name": "police station", - "sym": "ÿ", - "color": "h_yellow" - }, - { - "id": "urban_31_5", - "type": "overmap_terrain", - "name": "police station", - "sym": "ÿ", - "color": "h_yellow" - }, - { - "id": "urban_31_6", - "type": "overmap_terrain", - "name": "police station", - "sym": "ÿ", - "color": "h_yellow" - }, - { - "id": "urban_31_7", - "type": "overmap_terrain", - "name": "police station", - "sym": "ÿ", - "color": "h_yellow" - }, - { - "id": "urban_31_8", - "type": "overmap_terrain", - "name": "police station", - "sym": "ÿ", - "color": "h_yellow" - }, - { - "id": "urban_31_9", - "type": "overmap_terrain", - "name": "police station", - "sym": "ÿ", - "color": "h_yellow" - }, - { - "id": "urban_31_10", - "type": "overmap_terrain", - "name": "police station", - "sym": "ÿ", - "color": "h_yellow" - }, - { - "id": "urban_31_11", - "type": "overmap_terrain", - "name": "police station", - "sym": "ÿ", - "color": "h_yellow" - }, - { - "id": "urban_31_12", - "type": "overmap_terrain", - "name": "police station", - "sym": "ÿ", - "color": "h_yellow" - }, - { - "id": "urban_31_13", - "type": "overmap_terrain", - "name": "police station", - "sym": "ÿ", - "color": "h_yellow" - }, - { - "id": "urban_31_15", - "type": "overmap_terrain", - "name": "police station", - "sym": "ÿ", - "color": "h_yellow" - }, - { - "id": "urban_31_16", - "type": "overmap_terrain", - "name": "police station", - "sym": "ÿ", - "color": "h_yellow" - }, - { - "id": "urban_31_17", - "type": "overmap_terrain", - "name": "police station", - "sym": "ÿ", - "color": "h_yellow" - }, - { - "id": "urban_31_19", - "type": "overmap_terrain", - "name": "police station", - "sym": "ÿ", - "color": "h_yellow" - }, - { - "id": "urban_32_1", - "type": "overmap_terrain", - "name": "fire station", - "sym": "Æ", - "color": "red" - }, - { - "id": "urban_32_2", - "type": "overmap_terrain", - "name": "fire station", - "sym": "Æ", - "color": "red" - }, - { - "id": "urban_32_3", - "type": "overmap_terrain", - "name": "fire station", - "sym": "Æ", - "color": "red" - }, - { - "id": "urban_32_4", - "type": "overmap_terrain", - "name": "fire station", - "sym": "Æ", - "color": "red" - }, - { - "id": "urban_32_5", - "type": "overmap_terrain", - "name": "fire station", - "sym": "Æ", - "color": "red" - }, - { - "id": "urban_32_6", - "type": "overmap_terrain", - "name": "fire station", - "sym": "Æ", - "color": "red" - }, - { - "id": "urban_32_7", - "type": "overmap_terrain", - "name": "fire station", - "sym": "Æ", - "color": "red" - }, - { - "id": "urban_32_8", - "type": "overmap_terrain", - "name": "fire station", - "sym": "Æ", - "color": "red" - }, - { - "id": "urban_32_9", - "type": "overmap_terrain", - "name": "fire station", - "sym": "Æ", - "color": "red" - }, - { - "id": "urban_32_10", - "type": "overmap_terrain", - "name": "fire station", - "sym": "Æ", - "color": "red" - }, - { - "id": "urban_32_11", - "type": "overmap_terrain", - "name": "fire station", - "sym": "Æ", - "color": "red" - }, - { - "id": "urban_32_12", - "type": "overmap_terrain", - "name": "fire station", - "sym": "Æ", - "color": "red" - }, - { - "id": "urban_32_13", - "type": "overmap_terrain", - "name": "fire station", - "sym": "Æ", - "color": "red" - }, - { - "id": "urban_32_14", - "type": "overmap_terrain", - "name": "fire station", - "sym": "Æ", - "color": "red" - }, - { - "id": "urban_32_15", - "type": "overmap_terrain", - "name": "fire station", - "sym": "Æ", - "color": "red" - }, - { - "id": "urban_32_16", - "type": "overmap_terrain", - "name": "fire station", - "sym": "Æ", - "color": "red" - }, - { - "id": "urban_32_17", - "type": "overmap_terrain", - "name": "fire station", - "sym": "Æ", - "color": "red" - }, - { - "id": "urban_32_18", - "type": "overmap_terrain", - "name": "fire station", - "sym": "Æ", - "color": "red" - }, - { - "id": "urban_32_19", - "type": "overmap_terrain", - "name": "fire station", - "sym": "Æ", - "color": "red" - }, - { - "id": "urban_32_20", - "type": "overmap_terrain", - "name": "fire station", - "sym": "Æ", - "color": "red" - }, - { - "id": "urban_32_21", - "type": "overmap_terrain", - "name": "fire station", - "sym": "Æ", - "color": "red" - }, - { - "id": "urban_33_1", - "type": "overmap_terrain", - "name": "hotel", - "sym": "ô", - "color": "light_blue" - }, - { - "id": "urban_33_2", - "type": "overmap_terrain", - "name": "hotel", - "sym": "ô", - "color": "light_blue" - }, - { - "id": "urban_33_3", - "type": "overmap_terrain", - "name": "hotel", - "sym": "ô", - "color": "light_blue" - }, - { - "id": "urban_33_4", - "type": "overmap_terrain", - "name": "hotel", - "sym": "ô", - "color": "light_blue" - }, - { - "id": "urban_33_5", - "type": "overmap_terrain", - "name": "hotel", - "sym": "ô", - "color": "light_blue" - }, - { - "id": "urban_33_6", - "type": "overmap_terrain", - "name": "hotel", - "sym": "ô", - "color": "light_blue" - }, - { - "id": "urban_33_7", - "type": "overmap_terrain", - "name": "hotel", - "sym": "ô", - "color": "light_blue" - }, - { - "id": "urban_33_8", - "type": "overmap_terrain", - "name": "hotel", - "sym": "ô", - "color": "light_blue" - }, - { - "id": "urban_33_9", - "type": "overmap_terrain", - "name": "hotel", - "sym": "ô", - "color": "light_blue" - }, - { - "id": "urban_33_10", - "type": "overmap_terrain", - "name": "hotel", - "sym": "ô", - "color": "light_blue" - }, - { - "id": "urban_33_11", - "type": "overmap_terrain", - "name": "hotel", - "sym": "ô", - "color": "light_blue" - }, - { - "id": "urban_33_12", - "type": "overmap_terrain", - "name": "hotel", - "sym": "ô", - "color": "light_blue" - }, - { - "id": "urban_33_13", - "type": "overmap_terrain", - "name": "hotel", - "sym": "ô", - "color": "light_blue" - }, - { - "id": "urban_33_14", - "type": "overmap_terrain", - "name": "hotel", - "sym": "ô", - "color": "light_blue" - }, - { - "id": "urban_33_15", - "type": "overmap_terrain", - "name": "hotel", - "sym": "ô", - "color": "light_blue" - }, - { - "id": "urban_33_16", - "type": "overmap_terrain", - "name": "hotel", - "sym": "ô", - "color": "light_blue" - }, - { - "id": "urban_33_17", - "type": "overmap_terrain", - "name": "hotel", - "sym": "ô", - "color": "light_blue" - }, - { - "id": "urban_33_18", - "type": "overmap_terrain", - "name": "hotel", - "sym": "ô", - "color": "light_blue" - }, - { - "id": "urban_33_19", - "type": "overmap_terrain", - "name": "hotel", - "sym": "ô", - "color": "light_blue" - }, - { - "id": "urban_33_20", - "type": "overmap_terrain", - "name": "hotel", - "sym": "ô", - "color": "light_blue" - }, - { - "id": "urban_33_21", - "type": "overmap_terrain", - "name": "hotel", - "sym": "ô", - "color": "light_blue" - }, - { - "id": "urban_33_22", - "type": "overmap_terrain", - "name": "hotel", - "sym": "ô", - "color": "light_blue" - }, - { - "id": "urban_33_23", - "type": "overmap_terrain", - "name": "hotel", - "sym": "ô", - "color": "light_blue" - }, - { - "id": "urban_33_24", - "type": "overmap_terrain", - "name": "hotel", - "sym": "ô", - "color": "light_blue" - }, - { - "id": "urban_33_25", - "type": "overmap_terrain", - "name": "hotel", - "sym": "ô", - "color": "light_blue" - }, - { - "id": "urban_33_26", - "type": "overmap_terrain", - "name": "hotel", - "sym": "ô", - "color": "light_blue" - }, - { - "id": "urban_33_27", - "type": "overmap_terrain", - "name": "hotel", - "sym": "ô", - "color": "light_blue" - }, - { - "id": "urban_33_28", - "type": "overmap_terrain", - "name": "hotel", - "sym": "ô", - "color": "light_blue" - }, - { - "id": "urban_33_29", - "type": "overmap_terrain", - "name": "hotel", - "sym": "ô", - "color": "light_blue" - }, - { - "id": "urban_33_30", - "type": "overmap_terrain", - "name": "hotel", - "sym": "ô", - "color": "light_blue" - }, - { - "id": "urban_33_31", - "type": "overmap_terrain", - "name": "hotel", - "sym": "ô", - "color": "light_blue" - }, - { - "id": "urban_33_32", - "type": "overmap_terrain", - "name": "hotel", - "sym": "ô", - "color": "light_blue" - }, - { - "id": "urban_33_34", - "type": "overmap_terrain", - "name": "hotel", - "sym": "ô", - "color": "light_blue" - }, - { - "id": "urban_33_35", - "type": "overmap_terrain", - "name": "hotel", - "sym": "ô", - "color": "light_blue" - }, - { - "id": "urban_33_36", - "type": "overmap_terrain", - "name": "hotel", - "sym": "ô", - "color": "light_blue" - }, - { - "id": "urban_34_1", - "type": "overmap_terrain", - "name": "school", - "sym": "Á", - "color": "light_blue" - }, - { - "id": "urban_34_2", - "type": "overmap_terrain", - "name": "school", - "sym": "Á", - "color": "light_blue" - }, - { - "id": "urban_34_3", - "type": "overmap_terrain", - "name": "school", - "sym": "Á", - "color": "light_blue" - }, - { - "id": "urban_34_4", - "type": "overmap_terrain", - "name": "school", - "sym": "Á", - "color": "light_blue" - }, - { - "id": "urban_34_5", - "type": "overmap_terrain", - "name": "school", - "sym": "Á", - "color": "light_blue" - }, - { - "id": "urban_34_6", - "type": "overmap_terrain", - "name": "school", - "sym": "Á", - "color": "light_blue" - }, - { - "id": "urban_34_7", - "type": "overmap_terrain", - "name": "school", - "sym": "Á", - "color": "light_blue" - }, - { - "id": "urban_34_8", - "type": "overmap_terrain", - "name": "school", - "sym": "Á", - "color": "light_blue" - }, - { - "id": "urban_34_9", - "type": "overmap_terrain", - "name": "school", - "sym": "Á", - "color": "light_blue" - }, - { - "id": "urban_34_10", - "type": "overmap_terrain", - "name": "school", - "sym": "Á", - "color": "light_blue" - }, - { - "id": "urban_34_11", - "type": "overmap_terrain", - "name": "school", - "sym": "Á", - "color": "light_blue" - }, - { - "id": "urban_34_12", - "type": "overmap_terrain", - "name": "school", - "sym": "Á", - "color": "light_blue" - }, - { - "id": "urban_34_13", - "type": "overmap_terrain", - "name": "school", - "sym": "Á", - "color": "light_blue" - }, - { - "id": "urban_34_14", - "type": "overmap_terrain", - "name": "school", - "sym": "Á", - "color": "light_blue" - }, - { - "id": "urban_34_15", - "type": "overmap_terrain", - "name": "school", - "sym": "Á", - "color": "light_blue" - }, - { - "id": "urban_34_16", - "type": "overmap_terrain", - "name": "school", - "sym": "Á", - "color": "light_blue" - }, - { - "id": "urban_34_17", - "type": "overmap_terrain", - "name": "school", - "sym": "Á", - "color": "light_blue" - }, - { - "id": "urban_34_19", - "type": "overmap_terrain", - "name": "school", - "sym": "Á", - "color": "light_blue" - }, - { - "id": "urban_35_1", - "type": "overmap_terrain", - "name": "hospital", - "sym": "Á", - "color": "red" - }, - { - "id": "urban_35_2", - "type": "overmap_terrain", - "name": "hospital", - "sym": "Á", - "color": "red" - }, - { - "id": "urban_35_3", - "type": "overmap_terrain", - "name": "hospital", - "sym": "Á", - "color": "red" - }, - { - "id": "urban_35_4", - "type": "overmap_terrain", - "name": "hospital", - "sym": "Á", - "color": "red" - }, - { - "id": "urban_35_5", - "type": "overmap_terrain", - "name": "hospital", - "sym": "Á", - "color": "red" - }, - { - "id": "urban_35_6", - "type": "overmap_terrain", - "name": "hospital", - "sym": "Á", - "color": "red" - }, - { - "id": "urban_35_7", - "type": "overmap_terrain", - "name": "hospital", - "sym": "Á", - "color": "red" - }, - { - "id": "urban_35_8", - "type": "overmap_terrain", - "name": "hospital", - "sym": "Á", - "color": "red" - }, - { - "id": "urban_35_9", - "type": "overmap_terrain", - "name": "hospital", - "sym": "Á", - "color": "red" - }, - { - "id": "urban_35_10", - "type": "overmap_terrain", - "name": "hospital", - "sym": "Á", - "color": "red" - }, - { - "id": "urban_35_11", - "type": "overmap_terrain", - "name": "hospital", - "sym": "Á", - "color": "red" - }, - { - "id": "urban_35_12", - "type": "overmap_terrain", - "name": "hospital", - "sym": "Á", - "color": "red" - }, - { - "id": "urban_35_13", - "type": "overmap_terrain", - "name": "hospital", - "sym": "Á", - "color": "red" - }, - { - "id": "urban_35_14", - "type": "overmap_terrain", - "name": "hospital", - "sym": "Á", - "color": "red" - }, - { - "id": "urban_35_15", - "type": "overmap_terrain", - "name": "hospital", - "sym": "Á", - "color": "red" - }, - { - "id": "urban_35_16", - "type": "overmap_terrain", - "name": "hospital", - "sym": "Á", - "color": "red" - }, - { - "id": "urban_35_17", - "type": "overmap_terrain", - "name": "hospital", - "sym": "Á", - "color": "red" - }, - { - "id": "urban_35_18", - "type": "overmap_terrain", - "name": "hospital", - "sym": "Á", - "color": "red" - }, - { - "id": "urban_35_19", - "type": "overmap_terrain", - "name": "hospital", - "sym": "Á", - "color": "red" - }, - { - "id": "urban_35_20", - "type": "overmap_terrain", - "name": "hospital", - "sym": "Á", - "color": "red" - }, - { - "id": "urban_35_21", - "type": "overmap_terrain", - "name": "hospital", - "sym": "Á", - "color": "red" - }, - { - "id": "urban_35_22", - "type": "overmap_terrain", - "name": "hospital", - "sym": "Á", - "color": "red" - }, - { - "id": "urban_35_23", - "type": "overmap_terrain", - "name": "hospital", - "sym": "Á", - "color": "red" - }, - { - "id": "urban_36_1", - "type": "overmap_terrain", - "name": "projects", - "sym": "Ç", - "color": "light_green" - }, - { - "id": "urban_36_2", - "type": "overmap_terrain", - "name": "projects", - "sym": "Ç", - "color": "light_green" - }, - { - "id": "urban_36_3", - "type": "overmap_terrain", - "name": "projects", - "sym": "Ç", - "color": "light_green" - }, - { - "id": "urban_36_4", - "type": "overmap_terrain", - "name": "projects", - "sym": "Ç", - "color": "light_green" - }, - { - "id": "urban_36_5", - "type": "overmap_terrain", - "name": "projects", - "sym": "Ç", - "color": "light_green" - }, - { - "id": "urban_36_6", - "type": "overmap_terrain", - "name": "projects", - "sym": "Ç", - "color": "light_green" - }, - { - "id": "urban_36_7", - "type": "overmap_terrain", - "name": "projects", - "sym": "Ç", - "color": "light_green" - }, - { - "id": "urban_36_8", - "type": "overmap_terrain", - "name": "projects", - "sym": "Ç", - "color": "light_green" - }, - { - "id": "urban_36_9", - "type": "overmap_terrain", - "name": "projects", - "sym": "Ç", - "color": "light_green" - }, - { - "id": "urban_36_10", - "type": "overmap_terrain", - "name": "projects", - "sym": "Ç", - "color": "light_green" - }, - { - "id": "urban_36_11", - "type": "overmap_terrain", - "name": "projects", - "sym": "Ç", - "color": "light_green" - }, - { - "id": "urban_36_12", - "type": "overmap_terrain", - "name": "projects", - "sym": "Ç", - "color": "light_green" - }, - { - "id": "urban_36_13", - "type": "overmap_terrain", - "name": "projects", - "sym": "Ç", - "color": "light_green" - }, - { - "id": "urban_36_14", - "type": "overmap_terrain", - "name": "projects", - "sym": "Ç", - "color": "light_green" - }, - { - "id": "urban_36_15", - "type": "overmap_terrain", - "name": "projects", - "sym": "Ç", - "color": "light_green" - }, - { - "id": "urban_36_16", - "type": "overmap_terrain", - "name": "projects", - "sym": "Ç", - "color": "light_green" - }, - { - "id": "urban_36_17", - "type": "overmap_terrain", - "name": "projects", - "sym": "Ç", - "color": "light_green" - }, - { - "id": "urban_36_18", - "type": "overmap_terrain", - "name": "projects", - "sym": "Ç", - "color": "light_green" - }, - { - "id": "urban_36_19", - "type": "overmap_terrain", - "name": "projects", - "sym": "Ç", - "color": "light_green" - }, - { - "id": "urban_36_20", - "type": "overmap_terrain", - "name": "projects", - "sym": "Ç", - "color": "light_green" - }, - { - "id": "urban_36_21", - "type": "overmap_terrain", - "name": "projects", - "sym": "Ç", - "color": "light_green" - }, - { - "id": "urban_36_22", - "type": "overmap_terrain", - "name": "projects", - "sym": "Ç", - "color": "light_green" - }, - { - "id": "urban_36_23", - "type": "overmap_terrain", - "name": "projects", - "sym": "Ç", - "color": "light_green" - }, - { - "id": "urban_36_24", - "type": "overmap_terrain", - "name": "projects", - "sym": "Ç", - "color": "light_green" - }, - { - "id": "urban_36_25", - "type": "overmap_terrain", - "name": "projects", - "sym": "Ç", - "color": "light_green" - }, - { - "id": "urban_36_26", - "type": "overmap_terrain", - "name": "projects", - "sym": "Ç", - "color": "light_green" - }, - { - "id": "urban_36_27", - "type": "overmap_terrain", - "name": "projects", - "sym": "Ç", - "color": "light_green" - }, - { - "id": "urban_36_28", - "type": "overmap_terrain", - "name": "projects", - "sym": "Ç", - "color": "light_green" - }, - { - "id": "urban_36_29", - "type": "overmap_terrain", - "name": "projects", - "sym": "Ç", - "color": "light_green" - }, - { - "id": "urban_36_30", - "type": "overmap_terrain", - "name": "projects", - "sym": "Ç", - "color": "light_green" - }, - { - "id": "urban_36_31", - "type": "overmap_terrain", - "name": "projects", - "sym": "Ç", - "color": "light_green" - }, - { - "id": "urban_36_32", - "type": "overmap_terrain", - "name": "projects", - "sym": "Ç", - "color": "light_green" - }, - { - "id": "urban_37_1", - "type": "overmap_terrain", - "name": "office tower", - "sym": "å", - "color": "light_gray" - }, - { - "id": "urban_37_2", - "type": "overmap_terrain", - "name": "office tower", - "sym": "å", - "color": "light_gray" - }, - { - "id": "urban_37_3", - "type": "overmap_terrain", - "name": "office tower", - "sym": "å", - "color": "light_gray" - }, - { - "id": "urban_37_4", - "type": "overmap_terrain", - "name": "office tower", - "sym": "å", - "color": "light_gray" - }, - { - "id": "urban_37_5", - "type": "overmap_terrain", - "name": "office tower", - "sym": "å", - "color": "light_gray" - }, - { - "id": "urban_37_6", - "type": "overmap_terrain", - "name": "office tower", - "sym": "å", - "color": "light_gray" - }, - { - "id": "urban_37_7", - "type": "overmap_terrain", - "name": "office tower", - "sym": "å", - "color": "light_gray" - }, - { - "id": "urban_37_8", - "type": "overmap_terrain", - "name": "office tower", - "sym": "å", - "color": "light_gray" - }, - { - "id": "urban_37_9", - "type": "overmap_terrain", - "name": "office tower", - "sym": "å", - "color": "light_gray" - }, - { - "id": "urban_37_10", - "type": "overmap_terrain", - "name": "office tower", - "sym": "å", - "color": "light_gray" - }, - { - "id": "urban_37_11", - "type": "overmap_terrain", - "name": "office tower", - "sym": "å", - "color": "light_gray" - }, - { - "id": "urban_37_12", - "type": "overmap_terrain", - "name": "office tower", - "sym": "å", - "color": "light_gray" - }, - { - "id": "urban_37_13", - "type": "overmap_terrain", - "name": "office tower", - "sym": "å", - "color": "light_gray" - }, - { - "id": "urban_37_14", - "type": "overmap_terrain", - "name": "office tower", - "sym": "å", - "color": "light_gray" - }, - { - "id": "urban_37_15", - "type": "overmap_terrain", - "name": "office tower", - "sym": "å", - "color": "light_gray" - }, - { - "id": "urban_37_16", - "type": "overmap_terrain", - "name": "office tower", - "sym": "å", - "color": "light_gray" - }, - { - "id": "urban_37_17", - "type": "overmap_terrain", - "name": "office tower", - "sym": "å", - "color": "light_gray" - }, - { - "id": "urban_37_18", - "type": "overmap_terrain", - "name": "office tower", - "sym": "å", - "color": "light_gray" - }, - { - "id": "urban_37_19", - "type": "overmap_terrain", - "name": "office tower", - "sym": "å", - "color": "light_gray" - }, - { - "id": "urban_37_20", - "type": "overmap_terrain", - "name": "office tower", - "sym": "å", - "color": "light_gray" - }, - { - "id": "urban_37_21", - "type": "overmap_terrain", - "name": "office tower", - "sym": "å", - "color": "light_gray" - }, - { - "id": "urban_37_22", - "type": "overmap_terrain", - "name": "office tower", - "sym": "å", - "color": "light_gray" - }, - { - "id": "urban_37_23", - "type": "overmap_terrain", - "name": "office tower", - "sym": "å", - "color": "light_gray" - }, - { - "id": "urban_37_24", - "type": "overmap_terrain", - "name": "office tower", - "sym": "å", - "color": "light_gray" - }, - { - "id": "urban_37_25", - "type": "overmap_terrain", - "name": "office tower", - "sym": "å", - "color": "light_gray" - }, - { - "id": "urban_37_26", - "type": "overmap_terrain", - "name": "office tower", - "sym": "å", - "color": "light_gray" - }, - { - "id": "urban_37_27", - "type": "overmap_terrain", - "name": "office tower", - "sym": "å", - "color": "light_gray" - }, - { - "id": "urban_37_28", - "type": "overmap_terrain", - "name": "office tower", - "sym": "å", - "color": "light_gray" - }, - { - "id": "urban_37_29", - "type": "overmap_terrain", - "name": "office tower", - "sym": "å", - "color": "light_gray" - }, - { - "id": "urban_37_30", - "type": "overmap_terrain", - "name": "office tower", - "sym": "å", - "color": "light_gray" - }, - { - "id": "urban_37_31", - "type": "overmap_terrain", - "name": "office tower", - "sym": "å", - "color": "light_gray" - }, - { - "id": "urban_37_32", - "type": "overmap_terrain", - "name": "office tower", - "sym": "å", - "color": "light_gray" - }, - { - "id": "urban_37_33", - "type": "overmap_terrain", - "name": "office tower", - "sym": "å", - "color": "light_gray" - }, - { - "id": "urban_37_34", - "type": "overmap_terrain", - "name": "office tower", - "sym": "å", - "color": "light_gray" - }, - { - "id": "urban_37_35", - "type": "overmap_terrain", - "name": "office tower", - "sym": "å", - "color": "light_gray" - }, - { - "id": "urban_37_36", - "type": "overmap_terrain", - "name": "office tower", - "sym": "å", - "color": "light_gray" - }, - { - "id": "urban_38_1", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_38_2", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_38_3", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_38_4", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_38_5", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_38_6", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_38_7", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_38_8", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_38_9", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_38_10", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_38_11", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_38_12", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_39_1", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_39_2", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_39_3", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_39_4", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_39_5", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_39_6", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_39_7", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_39_8", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_39_9", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_39_10", - "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" - }, - { - "id": "urban_40_1", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_40_2", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_40_3", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_40_4", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_40_5", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_40_6", - "type": "overmap_terrain", - "name": "house", - "sym": "à", - "color": "light_gray" - }, - { - "id": "urban_41_1", - "//": "Northwest corner", - "type": "overmap_terrain", - "name": "public library", - "sym": "ÿ", - "color": "white" - }, - { - "id": "urban_41_2", - "//": "Northeast corner", - "type": "overmap_terrain", - "name": "public library", - "sym": "ÿ", - "color": "white" - }, - { - "id": "urban_41_3", - "//": "Southwest corner", - "type": "overmap_terrain", - "name": "public library", - "sym": "ÿ", - "color": "white" - }, - { - "id": "urban_41_4", - "//": "Southeast corner", - "type": "overmap_terrain", - "name": "public library", - "sym": "ÿ", - "color": "white" - }, - { - "id": "urban_41_5", - "//": "Northwest corner", - "type": "overmap_terrain", - "name": "public library, 2nd floor", - "sym": "ÿ", - "color": "white" - }, - { - "id": "urban_41_6", - "//": "Northeast corner", - "type": "overmap_terrain", - "name": "public library, 2nd floor", - "sym": "ÿ", - "color": "white" - }, - { - "id": "urban_41_7", - "//": "Southwest corner", - "type": "overmap_terrain", - "name": "public library, 2nd floor", - "sym": "ÿ", - "color": "white" - }, - { - "id": "urban_41_8", - "//": "Southeast corner", - "type": "overmap_terrain", - "name": "public library, 2nd floor", - "sym": "ÿ", - "color": "white" - } -] From 32b8c7d200be8e8cb489544f920b3cbcf9b1dc34 Mon Sep 17 00:00:00 2001 From: Kilvoctu Date: Thu, 19 Dec 2019 13:00:46 -0600 Subject: [PATCH 7/9] Separate mods for graphical overmap Add new mods for graphical overmap for fuji structures, more locations, and urban development --- .../Graphical_Overmap_FujiStruct/modinfo.json | 12 + .../overmap_terrain_fujistruct.json | 298 ++ .../modinfo.json | 12 + .../overmap_terrain_more_locations.json | 1731 +++++++++ .../modinfo.json | 12 + .../overmap_terrain_urban_development.json | 3223 +++++++++++++++++ 6 files changed, 5288 insertions(+) create mode 100644 data/mods/Graphical_Overmap_FujiStruct/modinfo.json create mode 100644 data/mods/Graphical_Overmap_FujiStruct/overmap_terrain_fujistruct.json create mode 100644 data/mods/Graphical_Overmap_More_Locations/modinfo.json create mode 100644 data/mods/Graphical_Overmap_More_Locations/overmap_terrain_more_locations.json create mode 100644 data/mods/Graphical_Overmap_Urban_Development/modinfo.json create mode 100644 data/mods/Graphical_Overmap_Urban_Development/overmap_terrain_urban_development.json diff --git a/data/mods/Graphical_Overmap_FujiStruct/modinfo.json b/data/mods/Graphical_Overmap_FujiStruct/modinfo.json new file mode 100644 index 0000000000000..ba4dd10eece15 --- /dev/null +++ b/data/mods/Graphical_Overmap_FujiStruct/modinfo.json @@ -0,0 +1,12 @@ +[ + { + "type": "MOD_INFO", + "ident": "Graphical_Overmap_Fujistruct", + "name": "Graphical Overmap Fujistruct", + "authors": [ "Kilvoctu" ], + "maintainers": [ "Kilvoctu" ], + "description": "Fuji Structures mod support for Graphical Overmap.", + "category": "graphical", + "dependencies": [ "dda", "Graphical_Overmap", "FujiStruct" ] + } +] diff --git a/data/mods/Graphical_Overmap_FujiStruct/overmap_terrain_fujistruct.json b/data/mods/Graphical_Overmap_FujiStruct/overmap_terrain_fujistruct.json new file mode 100644 index 0000000000000..ae3f53d7dc1ff --- /dev/null +++ b/data/mods/Graphical_Overmap_FujiStruct/overmap_terrain_fujistruct.json @@ -0,0 +1,298 @@ +[ + { + "type": "overmap_terrain", + "id": "s_electronicstore", + "name": "electronics store", + "sym": "ç", + "color": "yellow" + }, + { + "type": "overmap_terrain", + "id": "s_electronicstore_2ndfloor", + "name": "electronics store", + "copy-from": "s_electronicstore" + }, + { + "type": "overmap_terrain", + "id": "s_gunstore", + "name": "gun store", + "sym": "ç", + "color": "red" + }, + { + "type": "overmap_terrain", + "id": "s_gunstore_2ndfloor", + "name": "gun store", + "copy-from": "s_gunstore" + }, + { + "type": "overmap_terrain", + "id": "s_gunstore_roof", + "name": "gun store", + "copy-from": "s_gunstore" + }, + { + "type": "overmap_terrain", + "id": "s_diner", + "name": "diner", + "sym": "ç", + "color": "green" + }, + { + "type": "overmap_terrain", + "id": "s_diner_2ndfloor", + "name": "diner", + "copy-from": "s_diner" + }, + { + "type": "overmap_terrain", + "id": "s_diner_roof", + "name": "diner", + "copy-from": "s_diner" + }, + { + "type": "overmap_terrain", + "id": "s_apt", + "name": "apartment", + "sym": "Ç", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "s_apt_2ndfloor", + "name": "apartment", + "copy-from": "s_apt" + }, + { + "type": "overmap_terrain", + "id": "s_apt_roof", + "name": "apartment", + "copy-from": "s_apt" + }, + { + "type": "overmap_terrain", + "id": "s_apt_2", + "name": "apartment", + "sym": "Ç", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "s_apt_2_2ndfloor", + "name": "apartment", + "copy-from": "s_apt_2" + }, + { + "type": "overmap_terrain", + "id": "s_apt_2_roof", + "name": "apartment", + "copy-from": "s_apt_2" + }, + { + "type": "overmap_terrain", + "id": "s_cardealer", + "name": "dealership", + "sym": "ç", + "color": "blue" + }, + { + "type": "overmap_terrain", + "id": "s_cardealer_roof", + "name": "dealership", + "copy-from": "s_cardealer" + }, + { + "type": "overmap_terrain", + "id": "s_camping", + "name": "outdoorsman's store", + "sym": "ç", + "color": "brown" + }, + { + "type": "overmap_terrain", + "id": "s_camping_roof", + "name": "outdoorsman's store", + "copy-from": "s_camping" + }, + { + "type": "overmap_terrain", + "id": "s_games", + "name": "gaming store", + "sym": "ç", + "color": "cyan" + }, + { + "type": "overmap_terrain", + "id": "s_games_roof", + "name": "gaming store", + "copy-from": "s_games" + }, + { + "type": "overmap_terrain", + "id": "s_air_term", + "name": "airport", + "sym": "ô", + "color": "i_cyan" + }, + { + "type": "overmap_terrain", + "id": "s_air_parking", + "name": "airport", + "sym": "ô", + "color": "i_cyan" + }, + { + "type": "overmap_terrain", + "id": "s_air_atc", + "name": "airport", + "sym": "ô", + "color": "i_cyan" + }, + { + "type": "overmap_terrain", + "id": "s_air_atc_2", + "name": "airport", + "sym": "ô", + "color": "i_cyan" + }, + { + "type": "overmap_terrain", + "id": "s_air_atc_3", + "name": "airport", + "sym": "ô", + "color": "i_cyan" + }, + { + "type": "overmap_terrain", + "id": "s_air_hangars", + "name": "airport", + "sym": "ý", + "color": "i_cyan" + }, + { + "type": "overmap_terrain", + "id": "s_air_runway", + "name": "runway", + "sym": "ô", + "color": "blue" + }, + { + "type": "overmap_terrain", + "id": "s_air_runway_hangars", + "name": "runway", + "sym": "ô", + "color": "blue" + }, + { + "type": "overmap_terrain", + "id": "s_air_runway_l", + "name": "runway", + "sym": "ô", + "color": "blue" + }, + { + "type": "overmap_terrain", + "id": "s_air_runway_r", + "name": "runway", + "sym": "ô", + "color": "blue" + }, + { + "type": "overmap_terrain", + "id": "s_air_runway_term", + "name": "runway", + "sym": "ô", + "color": "blue" + }, + { + "type": "overmap_terrain", + "id": "s_lightindustry_road_0", + "name": "light industry", + "sym": "Ö", + "color": "dark_gray" + }, + { + "type": "overmap_terrain", + "id": "s_lightindustry_road_1", + "name": "light industry", + "sym": "Ö", + "color": "dark_gray" + }, + { + "type": "overmap_terrain", + "id": "s_lightindustry_00", + "name": "light industry", + "sym": "Ö", + "color": "light_blue" + }, + { + "type": "overmap_terrain", + "id": "s_lightindustry_01", + "name": "light industry", + "sym": "Ö", + "color": "light_blue" + }, + { + "type": "overmap_terrain", + "id": "s_lightindustry_10", + "name": "light industry", + "sym": "Ö", + "color": "light_blue" + }, + { + "type": "overmap_terrain", + "id": "s_lightindustry_11", + "name": "light industry", + "sym": "Ö", + "color": "light_blue" + }, + { + "type": "overmap_terrain", + "id": "s_gas_g1", + "name": "gas station", + "sym": "ú", + "color": "light_blue" + }, + { + "type": "overmap_terrain", + "id": "s_gas_g0", + "name": "gas station", + "sym": "ú", + "color": "light_blue" + }, + { + "type": "overmap_terrain", + "id": "s_gas_b11", + "name": "reception", + "sym": "ú", + "color": "red" + }, + { + "type": "overmap_terrain", + "id": "s_gas_b20", + "name": "bunker", + "sym": "Õ", + "color": "red" + }, + { + "type": "overmap_terrain", + "id": "s_gas_b21", + "name": "bunker", + "sym": "Õ", + "color": "red" + }, + { + "type": "overmap_terrain", + "id": "s_bunker_shop_g", + "name": "derelict property", + "sym": "à", + "color": "white" + }, + { + "type": "overmap_terrain", + "id": "s_bunker_shop_b", + "name": "scavenger bunker", + "sym": "Õ", + "color": "light_green" + } +] diff --git a/data/mods/Graphical_Overmap_More_Locations/modinfo.json b/data/mods/Graphical_Overmap_More_Locations/modinfo.json new file mode 100644 index 0000000000000..fbc0dd055b667 --- /dev/null +++ b/data/mods/Graphical_Overmap_More_Locations/modinfo.json @@ -0,0 +1,12 @@ +[ + { + "type": "MOD_INFO", + "ident": "Graphical_Overmap_More_Locations", + "name": "Graphical Overmap More Locations", + "authors": [ "Kilvoctu" ], + "maintainers": [ "Kilvoctu" ], + "description": "More Locations mod support for Graphical Overmap.", + "category": "graphical", + "dependencies": [ "dda", "Graphical_Overmap", "more_locations" ] + } +] diff --git a/data/mods/Graphical_Overmap_More_Locations/overmap_terrain_more_locations.json b/data/mods/Graphical_Overmap_More_Locations/overmap_terrain_more_locations.json new file mode 100644 index 0000000000000..1ee1b7dd6ed3b --- /dev/null +++ b/data/mods/Graphical_Overmap_More_Locations/overmap_terrain_more_locations.json @@ -0,0 +1,1731 @@ +[ + { + "type": "overmap_terrain", + "id": "bandit_tower_1gate", + "name": "apartment towers", + "sym": "Ç", + "color": "brown" + }, + { + "type": "overmap_terrain", + "id": "bandit_tower_1ybe", + "name": "apartment towers", + "sym": "Ç", + "color": "brown" + }, + { + "type": "overmap_terrain", + "id": "bandit_tower_1yle", + "name": "apartment towers", + "sym": "Ç", + "color": "brown" + }, + { + "type": "overmap_terrain", + "id": "bandit_tower_1yre", + "name": "apartment towers", + "sym": "Ç", + "color": "brown" + }, + { + "type": "overmap_terrain", + "id": "bandit_tower_1yte", + "name": "apartment towers", + "sym": "Ç", + "color": "brown" + }, + { + "type": "overmap_terrain", + "id": "bandit_tower_1cyblc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "bandit_tower_1cybrc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "bandit_tower_1cytlc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "bandit_tower_1cytrc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "bandit_tower_1blc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "bandit_tower_1brc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "bandit_tower_1tlc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "bandit_tower_1trc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "bandit_tower_2blc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "bandit_tower_2brc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "bandit_tower_2tlc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "bandit_tower_2trc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "bandit_tower_3blc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "bandit_tower_3brc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "bandit_tower_3tlc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "bandit_tower_3trc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "bandit_tower_4blc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "bandit_tower_4brc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "bandit_tower_4tlc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "bandit_tower_4trc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "bandit_tower_ublc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "bandit_tower_ubrc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "bandit_tower_utlc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "bandit_tower_utrc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "estate_umid", + "name": "mansion", + "sym": "Ð", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "estate_ube", + "name": "mansion", + "sym": "Ð", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "estate_ule", + "name": "mansion", + "sym": "Ð", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "estate_ure", + "name": "mansion", + "sym": "Ð", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "estate_ute", + "name": "mansion", + "sym": "Ð", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "estate_mid", + "name": "mansion", + "sym": "Ð", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "estate_1be", + "name": "mansion", + "sym": "Ð", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "estate_1bloc", + "name": "mansion", + "sym": "Ð", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "estate_1broc", + "name": "mansion", + "sym": "Ð", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "estate_1by", + "name": "mansion", + "sym": "Ð", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "estate_1ica", + "name": "mansion", + "sym": "Ð", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "estate_1icb", + "name": "mansion", + "sym": "Ð", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "estate_1icc", + "name": "mansion", + "sym": "Ð", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "estate_1icd", + "name": "mansion", + "sym": "Ð", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "estate_1le", + "name": "mansion", + "sym": "Ð", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "estate_1re", + "name": "mansion", + "sym": "Ð", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "estate_1te", + "name": "mansion", + "sym": "Ð", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "estate_1tloc", + "name": "mansion", + "sym": "Ð", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "estate_1troc", + "name": "mansion", + "sym": "Ð", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "estate_1ty", + "name": "mansion", + "sym": "Ð", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "estate_2be", + "name": "mansion", + "sym": "Ð", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "estate_2bloc", + "name": "mansion", + "sym": "Ð", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "estate_2broc", + "name": "mansion", + "sym": "Ð", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "estate_2ica", + "name": "mansion", + "sym": "Ð", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "estate_2icb", + "name": "mansion", + "sym": "Ð", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "estate_2icc", + "name": "mansion", + "sym": "Ð", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "estate_2icd", + "name": "mansion", + "sym": "Ð", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "estate_2le", + "name": "mansion", + "sym": "Ð", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "estate_2re", + "name": "mansion", + "sym": "Ð", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "estate_2te", + "name": "mansion", + "sym": "Ð", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "estate_2tloc", + "name": "mansion", + "sym": "Ð", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "estate_2troc", + "name": "mansion", + "sym": "Ð", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "factory_tlc", + "name": "factory", + "sym": "Ö", + "color": "i_black" + }, + { + "type": "overmap_terrain", + "id": "factory_te", + "name": "factory", + "sym": "Ö", + "color": "i_black" + }, + { + "type": "overmap_terrain", + "id": "factory_trc", + "name": "factory", + "sym": "Ö", + "color": "i_black" + }, + { + "type": "overmap_terrain", + "id": "factory_le", + "name": "factory", + "sym": "Ö", + "color": "i_black" + }, + { + "type": "overmap_terrain", + "id": "factory_mid", + "name": "factory", + "sym": "Ö", + "color": "i_black" + }, + { + "type": "overmap_terrain", + "id": "factory_re", + "name": "factory", + "sym": "Ö", + "color": "i_black" + }, + { + "type": "overmap_terrain", + "id": "factory_blc", + "name": "factory", + "sym": "Ö", + "color": "i_black" + }, + { + "type": "overmap_terrain", + "id": "factory_be", + "name": "factory", + "sym": "Ö", + "color": "i_black" + }, + { + "type": "overmap_terrain", + "id": "factory_be_gate", + "name": "factory", + "sym": "Ö", + "color": "i_black" + }, + { + "type": "overmap_terrain", + "id": "factory_brc", + "name": "factory", + "sym": "Ö", + "color": "i_black" + }, + { + "type": "overmap_terrain", + "id": "mil_outpost_ytlc", + "name": "mine field", + "sym": "¨", + "color": "brown" + }, + { + "type": "overmap_terrain", + "id": "mil_outpost_yte", + "name": "mine field", + "sym": "¨", + "color": "brown" + }, + { + "type": "overmap_terrain", + "id": "mil_outpost_ytrc", + "name": "mine field", + "sym": "¨", + "color": "brown" + }, + { + "type": "overmap_terrain", + "id": "mil_outpost_yle", + "name": "mine field", + "sym": "¨", + "color": "brown" + }, + { + "type": "overmap_terrain", + "id": "mil_outpost_yre", + "name": "mine field", + "sym": "¨", + "color": "brown" + }, + { + "type": "overmap_terrain", + "id": "mil_outpost_yblc", + "name": "mine field", + "sym": "¨", + "color": "brown" + }, + { + "type": "overmap_terrain", + "id": "mil_outpost_ybe", + "name": "mine field", + "sym": "¨", + "color": "brown" + }, + { + "type": "overmap_terrain", + "id": "mil_outpost_ybe_gate", + "name": "gate", + "sym": ".", + "color": "white" + }, + { + "type": "overmap_terrain", + "id": "mil_outpost_ybrc", + "name": "mine field", + "sym": "¨", + "color": "brown" + }, + { + "type": "overmap_terrain", + "id": "mil_outpost_1tlc", + "name": "military outpost", + "sym": "Å", + "color": "i_red" + }, + { + "type": "overmap_terrain", + "id": "mil_outpost_1te", + "name": "military outpost", + "sym": "Å", + "color": "i_red" + }, + { + "type": "overmap_terrain", + "id": "mil_outpost_1trc", + "name": "military outpost", + "sym": "Å", + "color": "i_red" + }, + { + "type": "overmap_terrain", + "id": "mil_outpost_1le", + "name": "military outpost", + "sym": "Å", + "color": "i_red" + }, + { + "type": "overmap_terrain", + "id": "mil_outpost_1mid", + "name": "military outpost", + "sym": "Å", + "color": "i_red" + }, + { + "type": "overmap_terrain", + "id": "mil_outpost_1re", + "name": "military outpost", + "sym": "Å", + "color": "i_red" + }, + { + "type": "overmap_terrain", + "id": "mil_outpost_1blc", + "name": "military outpost", + "sym": "Å", + "color": "i_red" + }, + { + "type": "overmap_terrain", + "id": "mil_outpost_1be", + "name": "military outpost", + "sym": "Å", + "color": "i_red" + }, + { + "type": "overmap_terrain", + "id": "mil_outpost_1brc", + "name": "military outpost", + "sym": "Å", + "color": "i_red" + }, + { + "type": "overmap_terrain", + "id": "mil_outpost_2tlc", + "name": "military outpost", + "sym": "Å", + "color": "i_red" + }, + { + "type": "overmap_terrain", + "id": "mil_outpost_2te", + "name": "military outpost", + "sym": "Å", + "color": "i_red" + }, + { + "type": "overmap_terrain", + "id": "mil_outpost_2trc", + "name": "military outpost", + "sym": "Å", + "color": "i_red" + }, + { + "type": "overmap_terrain", + "id": "mil_outpost_2le", + "name": "military outpost", + "sym": "Å", + "color": "i_red" + }, + { + "type": "overmap_terrain", + "id": "mil_outpost_2re", + "name": "military outpost", + "sym": "Å", + "color": "i_red" + }, + { + "type": "overmap_terrain", + "id": "mil_outpost_2blc", + "name": "military outpost", + "sym": "Å", + "color": "i_red" + }, + { + "type": "overmap_terrain", + "id": "mil_outpost_2be", + "name": "military outpost", + "sym": "Å", + "color": "i_red" + }, + { + "type": "overmap_terrain", + "id": "mil_outpost_2brc", + "name": "military outpost", + "sym": "Å", + "color": "i_red" + }, + { + "type": "overmap_terrain", + "id": "mil_outpost_3c", + "name": "military outpost", + "sym": "Å", + "color": "i_red" + }, + { + "type": "overmap_terrain", + "id": "mil_outpost_utlc", + "name": "military outpost", + "sym": "Å", + "color": "i_red" + }, + { + "type": "overmap_terrain", + "id": "mil_outpost_utea", + "name": "military outpost", + "sym": "Å", + "color": "i_red" + }, + { + "type": "overmap_terrain", + "id": "mil_outpost_uteb", + "name": "military outpost", + "sym": "Å", + "color": "i_red" + }, + { + "type": "overmap_terrain", + "id": "mil_outpost_utrc", + "name": "military outpost", + "sym": "Å", + "color": "i_red" + }, + { + "type": "overmap_terrain", + "id": "mil_outpost_ule", + "name": "military outpost", + "sym": "Å", + "color": "i_red" + }, + { + "type": "overmap_terrain", + "id": "mil_outpost_umid", + "name": "military outpost", + "sym": "Å", + "color": "i_red" + }, + { + "type": "overmap_terrain", + "id": "mil_outpost_umid_finale", + "name": "military outpost", + "sym": "Å", + "color": "red_white" + }, + { + "type": "overmap_terrain", + "id": "mil_outpost_ure", + "name": "military outpost", + "sym": "Å", + "color": "i_red" + }, + { + "type": "overmap_terrain", + "id": "mil_outpost_ublc", + "name": "military outpost", + "sym": "Å", + "color": "i_red" + }, + { + "type": "overmap_terrain", + "id": "mil_outpost_ubea", + "name": "military outpost", + "sym": "Å", + "color": "i_red" + }, + { + "type": "overmap_terrain", + "id": "mil_outpost_ubeb", + "name": "military outpost", + "sym": "Å", + "color": "i_red" + }, + { + "type": "overmap_terrain", + "id": "mil_outpost_ubrc", + "name": "military outpost", + "sym": "Å", + "color": "i_red" + }, + { + "type": "overmap_terrain", + "id": "3storyA_first", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "3storyA_second", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "3storyA_third", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "3storyA_basement", + "name": "house basement", + "sym": "à", + "color": "dark_gray" + }, + { + "type": "overmap_terrain", + "id": "3storyA_roof", + "name": "house roof", + "sym": "à", + "color": "dark_gray" + }, + { + "type": "overmap_terrain", + "id": "3storyB_first", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "3storyB_second", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "3storyB_third", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "3storyB_basement", + "name": "house basement", + "sym": "à", + "color": "dark_gray" + }, + { + "type": "overmap_terrain", + "id": "3storyB_roof", + "name": "house roof", + "sym": "à", + "color": "dark_gray" + }, + { + "type": "overmap_terrain", + "id": "3storyC_first", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "3storyC_second", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "3storyC_third", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "3storyC_basement", + "name": "house basement", + "sym": "à", + "color": "dark_gray" + }, + { + "type": "overmap_terrain", + "id": "3storyC_roof", + "name": "house roof", + "sym": "à", + "color": "dark_gray" + }, + { + "type": "overmap_terrain", + "id": "3storyD_first", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "3storyD_second", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "3storyD_third", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "3storyD_basement", + "name": "house basement", + "sym": "à", + "color": "dark_gray" + }, + { + "type": "overmap_terrain", + "id": "3storyD_roof", + "name": "house roof", + "sym": "à", + "color": "dark_gray" + }, + { + "type": "overmap_terrain", + "id": "3storyE_first", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "3storyE_second", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "3storyE_third", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "3storyE_basement", + "name": "house basement", + "sym": "à", + "color": "dark_gray" + }, + { + "type": "overmap_terrain", + "id": "3storyE_roof", + "name": "house roof", + "sym": "à", + "color": "dark_gray" + }, + { + "type": "overmap_terrain", + "id": "3storyF_first", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "3storyF_second", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "3storyF_third", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "3storyF_basement", + "name": "house basement", + "sym": "à", + "color": "dark_gray" + }, + { + "type": "overmap_terrain", + "id": "3storyF_roof", + "name": "house roof", + "sym": "à", + "color": "dark_gray" + }, + { + "type": "overmap_terrain", + "id": "2storyA_first", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "2storyA_second", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "2storyA_basement", + "name": "house basement", + "sym": "à", + "color": "dark_gray" + }, + { + "type": "overmap_terrain", + "id": "2storyA_roof", + "name": "house roof", + "sym": "à", + "color": "dark_gray" + }, + { + "type": "overmap_terrain", + "id": "2storyB_first", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "2storyB_second", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "2storyB_basement", + "name": "house basement", + "sym": "à", + "color": "dark_gray" + }, + { + "type": "overmap_terrain", + "id": "2storyB_roof", + "name": "house roof", + "sym": "à", + "color": "dark_gray" + }, + { + "type": "overmap_terrain", + "id": "2storyC_first", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "2storyC_second", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "2storyC_basement", + "name": "house basement", + "sym": "à", + "color": "dark_gray" + }, + { + "type": "overmap_terrain", + "id": "2storyC_roof", + "name": "house roof", + "sym": "à", + "color": "dark_gray" + }, + { + "type": "overmap_terrain", + "id": "2storyD_first", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "2storyD_second", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "2storyD_basement", + "name": "house basement", + "sym": "à", + "color": "dark_gray" + }, + { + "type": "overmap_terrain", + "id": "2storyD_roof", + "name": "house roof", + "sym": "à", + "color": "dark_gray" + }, + { + "type": "overmap_terrain", + "id": "2storyE_first", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "2storyE_second", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "2storyE_basement", + "name": "house basement", + "sym": "à", + "color": "dark_gray" + }, + { + "type": "overmap_terrain", + "id": "2storyE_roof", + "name": "house roof", + "sym": "à", + "color": "dark_gray" + }, + { + "type": "overmap_terrain", + "id": "2storyF_first", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "2storyF_second", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "2storyF_basement", + "name": "house basement", + "sym": "à", + "color": "dark_gray" + }, + { + "type": "overmap_terrain", + "id": "2storyF_roof", + "name": "house roof", + "sym": "à", + "color": "dark_gray" + }, + { + "type": "overmap_terrain", + "id": "combohouseA_first", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "combohouseA_second", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "combohouseA_basement", + "name": "house basement", + "sym": "à", + "color": "dark_gray" + }, + { + "type": "overmap_terrain", + "id": "combohouseA_roof", + "name": "house roof", + "sym": "à", + "color": "dark_gray" + }, + { + "type": "overmap_terrain", + "id": "combogarageA_first", + "name": "attached garage", + "sym": "^", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "combogarageA_second", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "combogarageA_roof", + "name": "house roof", + "sym": "à", + "color": "magenta_white" + }, + { + "type": "overmap_terrain", + "id": "combohouseB_first", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "combohouseB_second", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "combohouseB_basement", + "name": "house basement", + "sym": "à", + "color": "dark_gray" + }, + { + "type": "overmap_terrain", + "id": "combohouseB_roof", + "name": "house roof", + "sym": "à", + "color": "dark_gray" + }, + { + "type": "overmap_terrain", + "id": "combogarageB_first", + "name": "attached garage", + "sym": "^", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "combogarageB_second", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "combogarageB_roof", + "name": "house roof", + "sym": "à", + "color": "magenta_white" + }, + { + "type": "overmap_terrain", + "id": "combohouseC_first", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "combohouseC_second", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "combohouseC_basement", + "name": "house basement", + "sym": "à", + "color": "dark_gray" + }, + { + "type": "overmap_terrain", + "id": "combohouseC_roof", + "name": "house roof", + "sym": "à", + "color": "dark_gray" + }, + { + "type": "overmap_terrain", + "id": "combogarageC_first", + "name": "attached garage", + "sym": "^", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "combogarageC_second", + "name": "house", + "sym": "à", + "color": "light_green" + }, + { + "type": "overmap_terrain", + "id": "combogarageC_roof", + "name": "house roof", + "sym": "à", + "color": "magenta_white" + }, + { + "type": "overmap_terrain", + "id": "refugee_tower_1gate", + "name": "apartment towers", + "sym": "Ç", + "color": "brown" + }, + { + "type": "overmap_terrain", + "id": "refugee_tower_1ybe", + "name": "apartment towers", + "sym": "Ç", + "color": "brown" + }, + { + "type": "overmap_terrain", + "id": "refugee_tower_1yle", + "name": "apartment towers", + "sym": "Ç", + "color": "brown" + }, + { + "type": "overmap_terrain", + "id": "refugee_tower_1yre", + "name": "apartment towers", + "sym": "Ç", + "color": "brown" + }, + { + "type": "overmap_terrain", + "id": "refugee_tower_1yte", + "name": "apartment towers", + "sym": "Ç", + "color": "brown" + }, + { + "type": "overmap_terrain", + "id": "refugee_tower_1cyblc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "refugee_tower_1cybrc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "refugee_tower_1cytlc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "refugee_tower_1cytrc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "refugee_tower_1blc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "refugee_tower_1brc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "refugee_tower_1tlc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "refugee_tower_1trc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "refugee_tower_2blc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "refugee_tower_2brc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "refugee_tower_2tlc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "refugee_tower_2trc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "refugee_tower_3blc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "refugee_tower_3brc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "refugee_tower_3tlc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "refugee_tower_3trc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "refugee_tower_4blc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "refugee_tower_4brc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "refugee_tower_4tlc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "refugee_tower_4trc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "refugee_tower_5blc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "refugee_tower_5brc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "refugee_tower_5tlc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "refugee_tower_5trc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "refugee_tower_ublc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "refugee_tower_ubrc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "refugee_tower_utlc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "refugee_tower_utrc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "tri_tower_1gate", + "name": "apartment towers", + "sym": "Ç", + "color": "brown" + }, + { + "type": "overmap_terrain", + "id": "tri_tower_1ybe", + "name": "apartment towers", + "sym": "Ç", + "color": "brown" + }, + { + "type": "overmap_terrain", + "id": "tri_tower_1yle", + "name": "apartment towers", + "sym": "Ç", + "color": "brown" + }, + { + "type": "overmap_terrain", + "id": "tri_tower_1yre", + "name": "apartment towers", + "sym": "Ç", + "color": "brown" + }, + { + "type": "overmap_terrain", + "id": "tri_tower_1yte", + "name": "apartment towers", + "sym": "Ç", + "color": "brown" + }, + { + "type": "overmap_terrain", + "id": "tri_tower_1cyblc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "tri_tower_1cybrc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "tri_tower_1cytlc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "tri_tower_1cytrc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "tri_tower_1blc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "tri_tower_1brc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "tri_tower_1tlc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "tri_tower_1trc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "tri_tower_2blc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "tri_tower_2brc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "tri_tower_2tlc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "tri_tower_2trc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "tri_tower_3blc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "tri_tower_3brc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "tri_tower_3tlc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "tri_tower_3trc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "tri_tower_4blc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "tri_tower_4brc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "tri_tower_4tlc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "tri_tower_4trc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "tri_tower_ublc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "tri_tower_ubrc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "tri_tower_utlc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + }, + { + "type": "overmap_terrain", + "id": "tri_tower_utrc", + "name": "apartment towers", + "sym": "Ç", + "color": "i_light_green" + } +] diff --git a/data/mods/Graphical_Overmap_Urban_Development/modinfo.json b/data/mods/Graphical_Overmap_Urban_Development/modinfo.json new file mode 100644 index 0000000000000..c91980ad42d55 --- /dev/null +++ b/data/mods/Graphical_Overmap_Urban_Development/modinfo.json @@ -0,0 +1,12 @@ +[ + { + "type": "MOD_INFO", + "ident": "Graphical_Overmap_Urban_Development", + "name": "Graphical Overmap Urban Development", + "authors": [ "Kilvoctu" ], + "maintainers": [ "Kilvoctu" ], + "description": "Urban Development mod support for Graphical Overmap.", + "category": "graphical", + "dependencies": [ "dda", "Graphical_Overmap", "Urban_Development" ] + } +] diff --git a/data/mods/Graphical_Overmap_Urban_Development/overmap_terrain_urban_development.json b/data/mods/Graphical_Overmap_Urban_Development/overmap_terrain_urban_development.json new file mode 100644 index 0000000000000..248cf95fae97e --- /dev/null +++ b/data/mods/Graphical_Overmap_Urban_Development/overmap_terrain_urban_development.json @@ -0,0 +1,3223 @@ +[ + { + "id": "urban_1_1", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_1_2", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_1_3", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_1_4", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_1_6", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_2_1", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_2_2", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_2_3", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_2_4", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_2_5", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_2_6", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_3_1", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_3_2", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_3_3", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_3_4", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_3_5", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_3_6", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_4_1", + "type": "overmap_terrain", + "name": "basement", + "sym": "à", + "color": "dark_gray" + }, + { + "id": "urban_4_2", + "type": "overmap_terrain", + "name": "basement", + "sym": "à", + "color": "dark_gray" + }, + { + "id": "urban_4_3", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_4_4", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_4_5", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_4_6", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_4_7", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_4_8", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_5_1", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_5_2", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_5_3", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_5_4", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_5_5", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_5_6", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_6_1", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_6_2", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_6_3", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_6_4", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_6_5", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_6_6", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_7_1", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_7_2", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_7_3", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_7_4", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_7_5", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_7_6", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_8_1", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_8_2", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_8_3", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_8_4", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_8_6", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_9_1", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_9_2", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_9_3", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_9_4", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_9_5", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_9_6", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_10_1", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_10_2", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_10_3", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_10_4", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_10_5", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_10_6", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_11_1", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_11_2", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_11_3", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_11_4", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_11_5", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_11_6", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_12_1", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_12_2", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_12_3", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_12_4", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_12_5", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_12_6", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_13_1", + "type": "overmap_terrain", + "name": "basement", + "sym": "à", + "color": "dark_gray" + }, + { + "id": "urban_13_2", + "type": "overmap_terrain", + "name": "basement", + "sym": "à", + "color": "dark_gray" + }, + { + "id": "urban_13_3", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_13_4", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_13_5", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_13_6", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_13_7", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_13_8", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_13_9", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_13_10", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_13_11", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_13_12", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_14_1", + "type": "overmap_terrain", + "name": "basement", + "sym": "à", + "color": "dark_gray" + }, + { + "id": "urban_14_2", + "type": "overmap_terrain", + "name": "basement", + "sym": "à", + "color": "dark_gray" + }, + { + "id": "urban_14_3", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_14_4", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_14_5", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_14_6", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_14_7", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_14_8", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_14_9", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_14_10", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_14_11", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_14_12", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_14_13", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_14_14", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_15_1", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_15_2", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_15_3", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_15_4", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_15_5", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_15_6", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_16_1", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_16_2", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_16_3", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_16_4", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_17_1", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_17_2", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_17_3", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_17_4", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_18_1", + "type": "overmap_terrain", + "name": "basement", + "sym": "à", + "color": "dark_gray" + }, + { + "id": "urban_18_2", + "type": "overmap_terrain", + "name": "basement", + "sym": "à", + "color": "dark_gray" + }, + { + "id": "urban_18_3", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_18_4", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_18_5", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_18_6", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_18_7", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_18_8", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_18_9", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_18_10", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_19_1", + "type": "overmap_terrain", + "name": "basement", + "sym": "à", + "color": "dark_gray" + }, + { + "id": "urban_19_2", + "type": "overmap_terrain", + "name": "basement", + "sym": "à", + "color": "dark_gray" + }, + { + "id": "urban_19_3", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_19_4", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_19_5", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_19_6", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_19_7", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_19_8", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_19_9", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_19_10", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_19_11", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_19_12", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_20_1", + "type": "overmap_terrain", + "name": "basement", + "sym": "à", + "color": "dark_gray" + }, + { + "id": "urban_20_2", + "type": "overmap_terrain", + "name": "basement", + "sym": "à", + "color": "dark_gray" + }, + { + "id": "urban_20_3", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_20_4", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_20_5", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_20_6", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_20_7", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_20_8", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_21_1", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_21_2", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_21_3", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_21_4", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_22_1", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_22_2", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_22_3", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_22_4", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_23_1", + "type": "overmap_terrain", + "name": "basement", + "sym": "à", + "color": "dark_gray" + }, + { + "id": "urban_23_2", + "type": "overmap_terrain", + "name": "basement", + "sym": "à", + "color": "dark_gray" + }, + { + "id": "urban_23_3", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_23_4", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_23_5", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_23_6", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_23_7", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_23_8", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_23_9", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_23_10", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_23_11", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_24_1", + "type": "overmap_terrain", + "name": "basement", + "sym": "à", + "color": "dark_gray" + }, + { + "id": "urban_24_2", + "type": "overmap_terrain", + "name": "basement", + "sym": "à", + "color": "dark_gray" + }, + { + "id": "urban_24_3", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_24_4", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_24_5", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_24_6", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_24_7", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_24_8", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_24_9", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_24_10", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_24_11", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_24_12", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_24_14", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_25_1", + "type": "overmap_terrain", + "name": "basement", + "sym": "à", + "color": "dark_gray" + }, + { + "id": "urban_25_2", + "type": "overmap_terrain", + "name": "basement", + "sym": "à", + "color": "dark_gray" + }, + { + "id": "urban_25_3", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_25_4", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_25_5", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_25_6", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_25_7", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_25_8", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_25_9", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_25_10", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_25_12", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_26_1", + "type": "overmap_terrain", + "name": "basement", + "sym": "à", + "color": "dark_gray" + }, + { + "id": "urban_26_2", + "type": "overmap_terrain", + "name": "basement", + "sym": "à", + "color": "dark_gray" + }, + { + "id": "urban_26_3", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_26_4", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_26_5", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_26_6", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_26_7", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_26_8", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_26_9", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_26_10", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_26_11", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_26_12", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_27_1", + "type": "overmap_terrain", + "name": "basement", + "sym": "à", + "color": "dark_gray" + }, + { + "id": "urban_27_2", + "type": "overmap_terrain", + "name": "basement", + "sym": "à", + "color": "dark_gray" + }, + { + "id": "urban_27_3", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_27_4", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_27_5", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_27_6", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_27_7", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_27_8", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_27_9", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_27_10", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_27_11", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_27_12", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_27_13", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_28_1", + "type": "overmap_terrain", + "name": "basement", + "sym": "à", + "color": "dark_gray" + }, + { + "id": "urban_28_2", + "type": "overmap_terrain", + "name": "basement", + "sym": "à", + "color": "dark_gray" + }, + { + "id": "urban_28_3", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_28_4", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_28_5", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_28_6", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_28_7", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_28_8", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_28_9", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_28_10", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_28_11", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_29_1", + "type": "overmap_terrain", + "name": "basement", + "sym": "à", + "color": "dark_gray" + }, + { + "id": "urban_29_2", + "type": "overmap_terrain", + "name": "basement", + "sym": "à", + "color": "dark_gray" + }, + { + "id": "urban_29_3", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_29_4", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_29_5", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_29_6", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_29_7", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_29_8", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_29_9", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_29_10", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_30_1", + "type": "overmap_terrain", + "name": "basement", + "sym": "à", + "color": "dark_gray" + }, + { + "id": "urban_30_2", + "type": "overmap_terrain", + "name": "subway station", + "sym": "S", + "color": "yellow" + }, + { + "id": "urban_30_3", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_30_4", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_30_5", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_30_6", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_30_7", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_30_8", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_30_9", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_30_10", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_31_1", + "type": "overmap_terrain", + "name": "police station", + "sym": "ÿ", + "color": "h_yellow" + }, + { + "id": "urban_31_2", + "type": "overmap_terrain", + "name": "police station", + "sym": "ÿ", + "color": "h_yellow" + }, + { + "id": "urban_31_3", + "type": "overmap_terrain", + "name": "police station", + "sym": "ÿ", + "color": "h_yellow" + }, + { + "id": "urban_31_4", + "type": "overmap_terrain", + "name": "police station", + "sym": "ÿ", + "color": "h_yellow" + }, + { + "id": "urban_31_5", + "type": "overmap_terrain", + "name": "police station", + "sym": "ÿ", + "color": "h_yellow" + }, + { + "id": "urban_31_6", + "type": "overmap_terrain", + "name": "police station", + "sym": "ÿ", + "color": "h_yellow" + }, + { + "id": "urban_31_7", + "type": "overmap_terrain", + "name": "police station", + "sym": "ÿ", + "color": "h_yellow" + }, + { + "id": "urban_31_8", + "type": "overmap_terrain", + "name": "police station", + "sym": "ÿ", + "color": "h_yellow" + }, + { + "id": "urban_31_9", + "type": "overmap_terrain", + "name": "police station", + "sym": "ÿ", + "color": "h_yellow" + }, + { + "id": "urban_31_10", + "type": "overmap_terrain", + "name": "police station", + "sym": "ÿ", + "color": "h_yellow" + }, + { + "id": "urban_31_11", + "type": "overmap_terrain", + "name": "police station", + "sym": "ÿ", + "color": "h_yellow" + }, + { + "id": "urban_31_12", + "type": "overmap_terrain", + "name": "police station", + "sym": "ÿ", + "color": "h_yellow" + }, + { + "id": "urban_31_13", + "type": "overmap_terrain", + "name": "police station", + "sym": "ÿ", + "color": "h_yellow" + }, + { + "id": "urban_31_15", + "type": "overmap_terrain", + "name": "police station", + "sym": "ÿ", + "color": "h_yellow" + }, + { + "id": "urban_31_16", + "type": "overmap_terrain", + "name": "police station", + "sym": "ÿ", + "color": "h_yellow" + }, + { + "id": "urban_31_17", + "type": "overmap_terrain", + "name": "police station", + "sym": "ÿ", + "color": "h_yellow" + }, + { + "id": "urban_31_19", + "type": "overmap_terrain", + "name": "police station", + "sym": "ÿ", + "color": "h_yellow" + }, + { + "id": "urban_32_1", + "type": "overmap_terrain", + "name": "fire station", + "sym": "Æ", + "color": "red" + }, + { + "id": "urban_32_2", + "type": "overmap_terrain", + "name": "fire station", + "sym": "Æ", + "color": "red" + }, + { + "id": "urban_32_3", + "type": "overmap_terrain", + "name": "fire station", + "sym": "Æ", + "color": "red" + }, + { + "id": "urban_32_4", + "type": "overmap_terrain", + "name": "fire station", + "sym": "Æ", + "color": "red" + }, + { + "id": "urban_32_5", + "type": "overmap_terrain", + "name": "fire station", + "sym": "Æ", + "color": "red" + }, + { + "id": "urban_32_6", + "type": "overmap_terrain", + "name": "fire station", + "sym": "Æ", + "color": "red" + }, + { + "id": "urban_32_7", + "type": "overmap_terrain", + "name": "fire station", + "sym": "Æ", + "color": "red" + }, + { + "id": "urban_32_8", + "type": "overmap_terrain", + "name": "fire station", + "sym": "Æ", + "color": "red" + }, + { + "id": "urban_32_9", + "type": "overmap_terrain", + "name": "fire station", + "sym": "Æ", + "color": "red" + }, + { + "id": "urban_32_10", + "type": "overmap_terrain", + "name": "fire station", + "sym": "Æ", + "color": "red" + }, + { + "id": "urban_32_11", + "type": "overmap_terrain", + "name": "fire station", + "sym": "Æ", + "color": "red" + }, + { + "id": "urban_32_12", + "type": "overmap_terrain", + "name": "fire station", + "sym": "Æ", + "color": "red" + }, + { + "id": "urban_32_13", + "type": "overmap_terrain", + "name": "fire station", + "sym": "Æ", + "color": "red" + }, + { + "id": "urban_32_14", + "type": "overmap_terrain", + "name": "fire station", + "sym": "Æ", + "color": "red" + }, + { + "id": "urban_32_15", + "type": "overmap_terrain", + "name": "fire station", + "sym": "Æ", + "color": "red" + }, + { + "id": "urban_32_16", + "type": "overmap_terrain", + "name": "fire station", + "sym": "Æ", + "color": "red" + }, + { + "id": "urban_32_17", + "type": "overmap_terrain", + "name": "fire station", + "sym": "Æ", + "color": "red" + }, + { + "id": "urban_32_18", + "type": "overmap_terrain", + "name": "fire station", + "sym": "Æ", + "color": "red" + }, + { + "id": "urban_32_19", + "type": "overmap_terrain", + "name": "fire station", + "sym": "Æ", + "color": "red" + }, + { + "id": "urban_32_20", + "type": "overmap_terrain", + "name": "fire station", + "sym": "Æ", + "color": "red" + }, + { + "id": "urban_32_21", + "type": "overmap_terrain", + "name": "fire station", + "sym": "Æ", + "color": "red" + }, + { + "id": "urban_33_1", + "type": "overmap_terrain", + "name": "hotel", + "sym": "ô", + "color": "light_blue" + }, + { + "id": "urban_33_2", + "type": "overmap_terrain", + "name": "hotel", + "sym": "ô", + "color": "light_blue" + }, + { + "id": "urban_33_3", + "type": "overmap_terrain", + "name": "hotel", + "sym": "ô", + "color": "light_blue" + }, + { + "id": "urban_33_4", + "type": "overmap_terrain", + "name": "hotel", + "sym": "ô", + "color": "light_blue" + }, + { + "id": "urban_33_5", + "type": "overmap_terrain", + "name": "hotel", + "sym": "ô", + "color": "light_blue" + }, + { + "id": "urban_33_6", + "type": "overmap_terrain", + "name": "hotel", + "sym": "ô", + "color": "light_blue" + }, + { + "id": "urban_33_7", + "type": "overmap_terrain", + "name": "hotel", + "sym": "ô", + "color": "light_blue" + }, + { + "id": "urban_33_8", + "type": "overmap_terrain", + "name": "hotel", + "sym": "ô", + "color": "light_blue" + }, + { + "id": "urban_33_9", + "type": "overmap_terrain", + "name": "hotel", + "sym": "ô", + "color": "light_blue" + }, + { + "id": "urban_33_10", + "type": "overmap_terrain", + "name": "hotel", + "sym": "ô", + "color": "light_blue" + }, + { + "id": "urban_33_11", + "type": "overmap_terrain", + "name": "hotel", + "sym": "ô", + "color": "light_blue" + }, + { + "id": "urban_33_12", + "type": "overmap_terrain", + "name": "hotel", + "sym": "ô", + "color": "light_blue" + }, + { + "id": "urban_33_13", + "type": "overmap_terrain", + "name": "hotel", + "sym": "ô", + "color": "light_blue" + }, + { + "id": "urban_33_14", + "type": "overmap_terrain", + "name": "hotel", + "sym": "ô", + "color": "light_blue" + }, + { + "id": "urban_33_15", + "type": "overmap_terrain", + "name": "hotel", + "sym": "ô", + "color": "light_blue" + }, + { + "id": "urban_33_16", + "type": "overmap_terrain", + "name": "hotel", + "sym": "ô", + "color": "light_blue" + }, + { + "id": "urban_33_17", + "type": "overmap_terrain", + "name": "hotel", + "sym": "ô", + "color": "light_blue" + }, + { + "id": "urban_33_18", + "type": "overmap_terrain", + "name": "hotel", + "sym": "ô", + "color": "light_blue" + }, + { + "id": "urban_33_19", + "type": "overmap_terrain", + "name": "hotel", + "sym": "ô", + "color": "light_blue" + }, + { + "id": "urban_33_20", + "type": "overmap_terrain", + "name": "hotel", + "sym": "ô", + "color": "light_blue" + }, + { + "id": "urban_33_21", + "type": "overmap_terrain", + "name": "hotel", + "sym": "ô", + "color": "light_blue" + }, + { + "id": "urban_33_22", + "type": "overmap_terrain", + "name": "hotel", + "sym": "ô", + "color": "light_blue" + }, + { + "id": "urban_33_23", + "type": "overmap_terrain", + "name": "hotel", + "sym": "ô", + "color": "light_blue" + }, + { + "id": "urban_33_24", + "type": "overmap_terrain", + "name": "hotel", + "sym": "ô", + "color": "light_blue" + }, + { + "id": "urban_33_25", + "type": "overmap_terrain", + "name": "hotel", + "sym": "ô", + "color": "light_blue" + }, + { + "id": "urban_33_26", + "type": "overmap_terrain", + "name": "hotel", + "sym": "ô", + "color": "light_blue" + }, + { + "id": "urban_33_27", + "type": "overmap_terrain", + "name": "hotel", + "sym": "ô", + "color": "light_blue" + }, + { + "id": "urban_33_28", + "type": "overmap_terrain", + "name": "hotel", + "sym": "ô", + "color": "light_blue" + }, + { + "id": "urban_33_29", + "type": "overmap_terrain", + "name": "hotel", + "sym": "ô", + "color": "light_blue" + }, + { + "id": "urban_33_30", + "type": "overmap_terrain", + "name": "hotel", + "sym": "ô", + "color": "light_blue" + }, + { + "id": "urban_33_31", + "type": "overmap_terrain", + "name": "hotel", + "sym": "ô", + "color": "light_blue" + }, + { + "id": "urban_33_32", + "type": "overmap_terrain", + "name": "hotel", + "sym": "ô", + "color": "light_blue" + }, + { + "id": "urban_33_34", + "type": "overmap_terrain", + "name": "hotel", + "sym": "ô", + "color": "light_blue" + }, + { + "id": "urban_33_35", + "type": "overmap_terrain", + "name": "hotel", + "sym": "ô", + "color": "light_blue" + }, + { + "id": "urban_33_36", + "type": "overmap_terrain", + "name": "hotel", + "sym": "ô", + "color": "light_blue" + }, + { + "id": "urban_34_1", + "type": "overmap_terrain", + "name": "school", + "sym": "Á", + "color": "light_blue" + }, + { + "id": "urban_34_2", + "type": "overmap_terrain", + "name": "school", + "sym": "Á", + "color": "light_blue" + }, + { + "id": "urban_34_3", + "type": "overmap_terrain", + "name": "school", + "sym": "Á", + "color": "light_blue" + }, + { + "id": "urban_34_4", + "type": "overmap_terrain", + "name": "school", + "sym": "Á", + "color": "light_blue" + }, + { + "id": "urban_34_5", + "type": "overmap_terrain", + "name": "school", + "sym": "Á", + "color": "light_blue" + }, + { + "id": "urban_34_6", + "type": "overmap_terrain", + "name": "school", + "sym": "Á", + "color": "light_blue" + }, + { + "id": "urban_34_7", + "type": "overmap_terrain", + "name": "school", + "sym": "Á", + "color": "light_blue" + }, + { + "id": "urban_34_8", + "type": "overmap_terrain", + "name": "school", + "sym": "Á", + "color": "light_blue" + }, + { + "id": "urban_34_9", + "type": "overmap_terrain", + "name": "school", + "sym": "Á", + "color": "light_blue" + }, + { + "id": "urban_34_10", + "type": "overmap_terrain", + "name": "school", + "sym": "Á", + "color": "light_blue" + }, + { + "id": "urban_34_11", + "type": "overmap_terrain", + "name": "school", + "sym": "Á", + "color": "light_blue" + }, + { + "id": "urban_34_12", + "type": "overmap_terrain", + "name": "school", + "sym": "Á", + "color": "light_blue" + }, + { + "id": "urban_34_13", + "type": "overmap_terrain", + "name": "school", + "sym": "Á", + "color": "light_blue" + }, + { + "id": "urban_34_14", + "type": "overmap_terrain", + "name": "school", + "sym": "Á", + "color": "light_blue" + }, + { + "id": "urban_34_15", + "type": "overmap_terrain", + "name": "school", + "sym": "Á", + "color": "light_blue" + }, + { + "id": "urban_34_16", + "type": "overmap_terrain", + "name": "school", + "sym": "Á", + "color": "light_blue" + }, + { + "id": "urban_34_17", + "type": "overmap_terrain", + "name": "school", + "sym": "Á", + "color": "light_blue" + }, + { + "id": "urban_34_19", + "type": "overmap_terrain", + "name": "school", + "sym": "Á", + "color": "light_blue" + }, + { + "id": "urban_35_1", + "type": "overmap_terrain", + "name": "hospital", + "sym": "Á", + "color": "red" + }, + { + "id": "urban_35_2", + "type": "overmap_terrain", + "name": "hospital", + "sym": "Á", + "color": "red" + }, + { + "id": "urban_35_3", + "type": "overmap_terrain", + "name": "hospital", + "sym": "Á", + "color": "red" + }, + { + "id": "urban_35_4", + "type": "overmap_terrain", + "name": "hospital", + "sym": "Á", + "color": "red" + }, + { + "id": "urban_35_5", + "type": "overmap_terrain", + "name": "hospital", + "sym": "Á", + "color": "red" + }, + { + "id": "urban_35_6", + "type": "overmap_terrain", + "name": "hospital", + "sym": "Á", + "color": "red" + }, + { + "id": "urban_35_7", + "type": "overmap_terrain", + "name": "hospital", + "sym": "Á", + "color": "red" + }, + { + "id": "urban_35_8", + "type": "overmap_terrain", + "name": "hospital", + "sym": "Á", + "color": "red" + }, + { + "id": "urban_35_9", + "type": "overmap_terrain", + "name": "hospital", + "sym": "Á", + "color": "red" + }, + { + "id": "urban_35_10", + "type": "overmap_terrain", + "name": "hospital", + "sym": "Á", + "color": "red" + }, + { + "id": "urban_35_11", + "type": "overmap_terrain", + "name": "hospital", + "sym": "Á", + "color": "red" + }, + { + "id": "urban_35_12", + "type": "overmap_terrain", + "name": "hospital", + "sym": "Á", + "color": "red" + }, + { + "id": "urban_35_13", + "type": "overmap_terrain", + "name": "hospital", + "sym": "Á", + "color": "red" + }, + { + "id": "urban_35_14", + "type": "overmap_terrain", + "name": "hospital", + "sym": "Á", + "color": "red" + }, + { + "id": "urban_35_15", + "type": "overmap_terrain", + "name": "hospital", + "sym": "Á", + "color": "red" + }, + { + "id": "urban_35_16", + "type": "overmap_terrain", + "name": "hospital", + "sym": "Á", + "color": "red" + }, + { + "id": "urban_35_17", + "type": "overmap_terrain", + "name": "hospital", + "sym": "Á", + "color": "red" + }, + { + "id": "urban_35_18", + "type": "overmap_terrain", + "name": "hospital", + "sym": "Á", + "color": "red" + }, + { + "id": "urban_35_19", + "type": "overmap_terrain", + "name": "hospital", + "sym": "Á", + "color": "red" + }, + { + "id": "urban_35_20", + "type": "overmap_terrain", + "name": "hospital", + "sym": "Á", + "color": "red" + }, + { + "id": "urban_35_21", + "type": "overmap_terrain", + "name": "hospital", + "sym": "Á", + "color": "red" + }, + { + "id": "urban_35_22", + "type": "overmap_terrain", + "name": "hospital", + "sym": "Á", + "color": "red" + }, + { + "id": "urban_35_23", + "type": "overmap_terrain", + "name": "hospital", + "sym": "Á", + "color": "red" + }, + { + "id": "urban_36_1", + "type": "overmap_terrain", + "name": "projects", + "sym": "Ç", + "color": "light_green" + }, + { + "id": "urban_36_2", + "type": "overmap_terrain", + "name": "projects", + "sym": "Ç", + "color": "light_green" + }, + { + "id": "urban_36_3", + "type": "overmap_terrain", + "name": "projects", + "sym": "Ç", + "color": "light_green" + }, + { + "id": "urban_36_4", + "type": "overmap_terrain", + "name": "projects", + "sym": "Ç", + "color": "light_green" + }, + { + "id": "urban_36_5", + "type": "overmap_terrain", + "name": "projects", + "sym": "Ç", + "color": "light_green" + }, + { + "id": "urban_36_6", + "type": "overmap_terrain", + "name": "projects", + "sym": "Ç", + "color": "light_green" + }, + { + "id": "urban_36_7", + "type": "overmap_terrain", + "name": "projects", + "sym": "Ç", + "color": "light_green" + }, + { + "id": "urban_36_8", + "type": "overmap_terrain", + "name": "projects", + "sym": "Ç", + "color": "light_green" + }, + { + "id": "urban_36_9", + "type": "overmap_terrain", + "name": "projects", + "sym": "Ç", + "color": "light_green" + }, + { + "id": "urban_36_10", + "type": "overmap_terrain", + "name": "projects", + "sym": "Ç", + "color": "light_green" + }, + { + "id": "urban_36_11", + "type": "overmap_terrain", + "name": "projects", + "sym": "Ç", + "color": "light_green" + }, + { + "id": "urban_36_12", + "type": "overmap_terrain", + "name": "projects", + "sym": "Ç", + "color": "light_green" + }, + { + "id": "urban_36_13", + "type": "overmap_terrain", + "name": "projects", + "sym": "Ç", + "color": "light_green" + }, + { + "id": "urban_36_14", + "type": "overmap_terrain", + "name": "projects", + "sym": "Ç", + "color": "light_green" + }, + { + "id": "urban_36_15", + "type": "overmap_terrain", + "name": "projects", + "sym": "Ç", + "color": "light_green" + }, + { + "id": "urban_36_16", + "type": "overmap_terrain", + "name": "projects", + "sym": "Ç", + "color": "light_green" + }, + { + "id": "urban_36_17", + "type": "overmap_terrain", + "name": "projects", + "sym": "Ç", + "color": "light_green" + }, + { + "id": "urban_36_18", + "type": "overmap_terrain", + "name": "projects", + "sym": "Ç", + "color": "light_green" + }, + { + "id": "urban_36_19", + "type": "overmap_terrain", + "name": "projects", + "sym": "Ç", + "color": "light_green" + }, + { + "id": "urban_36_20", + "type": "overmap_terrain", + "name": "projects", + "sym": "Ç", + "color": "light_green" + }, + { + "id": "urban_36_21", + "type": "overmap_terrain", + "name": "projects", + "sym": "Ç", + "color": "light_green" + }, + { + "id": "urban_36_22", + "type": "overmap_terrain", + "name": "projects", + "sym": "Ç", + "color": "light_green" + }, + { + "id": "urban_36_23", + "type": "overmap_terrain", + "name": "projects", + "sym": "Ç", + "color": "light_green" + }, + { + "id": "urban_36_24", + "type": "overmap_terrain", + "name": "projects", + "sym": "Ç", + "color": "light_green" + }, + { + "id": "urban_36_25", + "type": "overmap_terrain", + "name": "projects", + "sym": "Ç", + "color": "light_green" + }, + { + "id": "urban_36_26", + "type": "overmap_terrain", + "name": "projects", + "sym": "Ç", + "color": "light_green" + }, + { + "id": "urban_36_27", + "type": "overmap_terrain", + "name": "projects", + "sym": "Ç", + "color": "light_green" + }, + { + "id": "urban_36_28", + "type": "overmap_terrain", + "name": "projects", + "sym": "Ç", + "color": "light_green" + }, + { + "id": "urban_36_29", + "type": "overmap_terrain", + "name": "projects", + "sym": "Ç", + "color": "light_green" + }, + { + "id": "urban_36_30", + "type": "overmap_terrain", + "name": "projects", + "sym": "Ç", + "color": "light_green" + }, + { + "id": "urban_36_31", + "type": "overmap_terrain", + "name": "projects", + "sym": "Ç", + "color": "light_green" + }, + { + "id": "urban_36_32", + "type": "overmap_terrain", + "name": "projects", + "sym": "Ç", + "color": "light_green" + }, + { + "id": "urban_37_1", + "type": "overmap_terrain", + "name": "office tower", + "sym": "å", + "color": "light_gray" + }, + { + "id": "urban_37_2", + "type": "overmap_terrain", + "name": "office tower", + "sym": "å", + "color": "light_gray" + }, + { + "id": "urban_37_3", + "type": "overmap_terrain", + "name": "office tower", + "sym": "å", + "color": "light_gray" + }, + { + "id": "urban_37_4", + "type": "overmap_terrain", + "name": "office tower", + "sym": "å", + "color": "light_gray" + }, + { + "id": "urban_37_5", + "type": "overmap_terrain", + "name": "office tower", + "sym": "å", + "color": "light_gray" + }, + { + "id": "urban_37_6", + "type": "overmap_terrain", + "name": "office tower", + "sym": "å", + "color": "light_gray" + }, + { + "id": "urban_37_7", + "type": "overmap_terrain", + "name": "office tower", + "sym": "å", + "color": "light_gray" + }, + { + "id": "urban_37_8", + "type": "overmap_terrain", + "name": "office tower", + "sym": "å", + "color": "light_gray" + }, + { + "id": "urban_37_9", + "type": "overmap_terrain", + "name": "office tower", + "sym": "å", + "color": "light_gray" + }, + { + "id": "urban_37_10", + "type": "overmap_terrain", + "name": "office tower", + "sym": "å", + "color": "light_gray" + }, + { + "id": "urban_37_11", + "type": "overmap_terrain", + "name": "office tower", + "sym": "å", + "color": "light_gray" + }, + { + "id": "urban_37_12", + "type": "overmap_terrain", + "name": "office tower", + "sym": "å", + "color": "light_gray" + }, + { + "id": "urban_37_13", + "type": "overmap_terrain", + "name": "office tower", + "sym": "å", + "color": "light_gray" + }, + { + "id": "urban_37_14", + "type": "overmap_terrain", + "name": "office tower", + "sym": "å", + "color": "light_gray" + }, + { + "id": "urban_37_15", + "type": "overmap_terrain", + "name": "office tower", + "sym": "å", + "color": "light_gray" + }, + { + "id": "urban_37_16", + "type": "overmap_terrain", + "name": "office tower", + "sym": "å", + "color": "light_gray" + }, + { + "id": "urban_37_17", + "type": "overmap_terrain", + "name": "office tower", + "sym": "å", + "color": "light_gray" + }, + { + "id": "urban_37_18", + "type": "overmap_terrain", + "name": "office tower", + "sym": "å", + "color": "light_gray" + }, + { + "id": "urban_37_19", + "type": "overmap_terrain", + "name": "office tower", + "sym": "å", + "color": "light_gray" + }, + { + "id": "urban_37_20", + "type": "overmap_terrain", + "name": "office tower", + "sym": "å", + "color": "light_gray" + }, + { + "id": "urban_37_21", + "type": "overmap_terrain", + "name": "office tower", + "sym": "å", + "color": "light_gray" + }, + { + "id": "urban_37_22", + "type": "overmap_terrain", + "name": "office tower", + "sym": "å", + "color": "light_gray" + }, + { + "id": "urban_37_23", + "type": "overmap_terrain", + "name": "office tower", + "sym": "å", + "color": "light_gray" + }, + { + "id": "urban_37_24", + "type": "overmap_terrain", + "name": "office tower", + "sym": "å", + "color": "light_gray" + }, + { + "id": "urban_37_25", + "type": "overmap_terrain", + "name": "office tower", + "sym": "å", + "color": "light_gray" + }, + { + "id": "urban_37_26", + "type": "overmap_terrain", + "name": "office tower", + "sym": "å", + "color": "light_gray" + }, + { + "id": "urban_37_27", + "type": "overmap_terrain", + "name": "office tower", + "sym": "å", + "color": "light_gray" + }, + { + "id": "urban_37_28", + "type": "overmap_terrain", + "name": "office tower", + "sym": "å", + "color": "light_gray" + }, + { + "id": "urban_37_29", + "type": "overmap_terrain", + "name": "office tower", + "sym": "å", + "color": "light_gray" + }, + { + "id": "urban_37_30", + "type": "overmap_terrain", + "name": "office tower", + "sym": "å", + "color": "light_gray" + }, + { + "id": "urban_37_31", + "type": "overmap_terrain", + "name": "office tower", + "sym": "å", + "color": "light_gray" + }, + { + "id": "urban_37_32", + "type": "overmap_terrain", + "name": "office tower", + "sym": "å", + "color": "light_gray" + }, + { + "id": "urban_37_33", + "type": "overmap_terrain", + "name": "office tower", + "sym": "å", + "color": "light_gray" + }, + { + "id": "urban_37_34", + "type": "overmap_terrain", + "name": "office tower", + "sym": "å", + "color": "light_gray" + }, + { + "id": "urban_37_35", + "type": "overmap_terrain", + "name": "office tower", + "sym": "å", + "color": "light_gray" + }, + { + "id": "urban_37_36", + "type": "overmap_terrain", + "name": "office tower", + "sym": "å", + "color": "light_gray" + }, + { + "id": "urban_38_1", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_38_2", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_38_3", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_38_4", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_38_5", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_38_6", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_38_7", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_38_8", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_38_9", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_38_10", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_38_11", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_38_12", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_39_1", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_39_2", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_39_3", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_39_4", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_39_5", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_39_6", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_39_7", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_39_8", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_39_9", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_39_10", + "type": "overmap_terrain", + "name": "dense urban", + "sym": "à", + "color": "i_white" + }, + { + "id": "urban_40_1", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_40_2", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_40_3", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_40_4", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_40_5", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_40_6", + "type": "overmap_terrain", + "name": "house", + "sym": "à", + "color": "light_gray" + }, + { + "id": "urban_41_1", + "//": "Northwest corner", + "type": "overmap_terrain", + "name": "public library", + "sym": "ÿ", + "color": "white" + }, + { + "id": "urban_41_2", + "//": "Northeast corner", + "type": "overmap_terrain", + "name": "public library", + "sym": "ÿ", + "color": "white" + }, + { + "id": "urban_41_3", + "//": "Southwest corner", + "type": "overmap_terrain", + "name": "public library", + "sym": "ÿ", + "color": "white" + }, + { + "id": "urban_41_4", + "//": "Southeast corner", + "type": "overmap_terrain", + "name": "public library", + "sym": "ÿ", + "color": "white" + }, + { + "id": "urban_41_5", + "//": "Northwest corner", + "type": "overmap_terrain", + "name": "public library, 2nd floor", + "sym": "ÿ", + "color": "white" + }, + { + "id": "urban_41_6", + "//": "Northeast corner", + "type": "overmap_terrain", + "name": "public library, 2nd floor", + "sym": "ÿ", + "color": "white" + }, + { + "id": "urban_41_7", + "//": "Southwest corner", + "type": "overmap_terrain", + "name": "public library, 2nd floor", + "sym": "ÿ", + "color": "white" + }, + { + "id": "urban_41_8", + "//": "Southeast corner", + "type": "overmap_terrain", + "name": "public library, 2nd floor", + "sym": "ÿ", + "color": "white" + } +] From b682b739642df2d1859509f80277a8c6674fd8d1 Mon Sep 17 00:00:00 2001 From: Kilvoctu Date: Fri, 20 Dec 2019 09:46:53 -0600 Subject: [PATCH 8/9] lint attempt Trying to clear up check for mods\Graphical_Overmap\overmap_terrain.json --- data/mods/Graphical_Overmap/overmap_terrain.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/mods/Graphical_Overmap/overmap_terrain.json b/data/mods/Graphical_Overmap/overmap_terrain.json index dab26f768102c..bd7f583283041 100644 --- a/data/mods/Graphical_Overmap/overmap_terrain.json +++ b/data/mods/Graphical_Overmap/overmap_terrain.json @@ -204,7 +204,7 @@ "sym": "â", "color": "brown" }, - { + { "type": "overmap_terrain", "id": "cabin", "name": "cabin", From e4e0d591b0cd9b02b730cdb0be9e3244b9e9119f Mon Sep 17 00:00:00 2001 From: Kilvoctu Date: Sun, 22 Dec 2019 01:34:39 -0600 Subject: [PATCH 9/9] judicious use of copy-from update the three mods to copy settings from parent mods and only replace symbol (and color if needed) --- .../overmap_terrain_fujistruct.json | 172 +- .../overmap_terrain_more_locations.json | 1235 +++----- .../overmap_terrain_urban_development.json | 2747 ++++++++--------- 3 files changed, 1777 insertions(+), 2377 deletions(-) diff --git a/data/mods/Graphical_Overmap_FujiStruct/overmap_terrain_fujistruct.json b/data/mods/Graphical_Overmap_FujiStruct/overmap_terrain_fujistruct.json index ae3f53d7dc1ff..dc31cef30a427 100644 --- a/data/mods/Graphical_Overmap_FujiStruct/overmap_terrain_fujistruct.json +++ b/data/mods/Graphical_Overmap_FujiStruct/overmap_terrain_fujistruct.json @@ -2,297 +2,253 @@ { "type": "overmap_terrain", "id": "s_electronicstore", - "name": "electronics store", - "sym": "ç", - "color": "yellow" + "copy-from": "s_electronicstore", + "sym": "ç" }, { "type": "overmap_terrain", "id": "s_electronicstore_2ndfloor", - "name": "electronics store", "copy-from": "s_electronicstore" }, { "type": "overmap_terrain", "id": "s_gunstore", - "name": "gun store", - "sym": "ç", - "color": "red" + "copy-from": "s_gunstore", + "sym": "ç" }, { "type": "overmap_terrain", "id": "s_gunstore_2ndfloor", - "name": "gun store", "copy-from": "s_gunstore" }, { "type": "overmap_terrain", "id": "s_gunstore_roof", - "name": "gun store", "copy-from": "s_gunstore" }, { "type": "overmap_terrain", "id": "s_diner", - "name": "diner", - "sym": "ç", - "color": "green" + "copy-from": "s_diner", + "sym": "ç" }, { "type": "overmap_terrain", "id": "s_diner_2ndfloor", - "name": "diner", "copy-from": "s_diner" }, { "type": "overmap_terrain", "id": "s_diner_roof", - "name": "diner", "copy-from": "s_diner" }, { "type": "overmap_terrain", "id": "s_apt", - "name": "apartment", - "sym": "Ç", - "color": "light_green" + "copy-from": "s_apt", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "s_apt_2ndfloor", - "name": "apartment", "copy-from": "s_apt" }, { "type": "overmap_terrain", "id": "s_apt_roof", - "name": "apartment", "copy-from": "s_apt" }, { "type": "overmap_terrain", "id": "s_apt_2", - "name": "apartment", - "sym": "Ç", - "color": "light_green" + "copy-from": "s_apt_2", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "s_apt_2_2ndfloor", - "name": "apartment", "copy-from": "s_apt_2" }, { "type": "overmap_terrain", "id": "s_apt_2_roof", - "name": "apartment", "copy-from": "s_apt_2" }, { "type": "overmap_terrain", "id": "s_cardealer", - "name": "dealership", - "sym": "ç", - "color": "blue" + "copy-from": "s_cardealer", + "sym": "ç" }, { "type": "overmap_terrain", "id": "s_cardealer_roof", - "name": "dealership", "copy-from": "s_cardealer" }, { "type": "overmap_terrain", "id": "s_camping", - "name": "outdoorsman's store", - "sym": "ç", - "color": "brown" + "copy-from": "s_camping", + "sym": "ç" }, { "type": "overmap_terrain", "id": "s_camping_roof", - "name": "outdoorsman's store", "copy-from": "s_camping" }, { "type": "overmap_terrain", "id": "s_games", - "name": "gaming store", - "sym": "ç", - "color": "cyan" + "copy-from": "s_games", + "sym": "ç" }, { "type": "overmap_terrain", "id": "s_games_roof", - "name": "gaming store", "copy-from": "s_games" }, { "type": "overmap_terrain", "id": "s_air_term", - "name": "airport", - "sym": "ô", - "color": "i_cyan" + "copy-from": "s_air_term", + "sym": "ô" }, { "type": "overmap_terrain", "id": "s_air_parking", - "name": "airport", - "sym": "ô", - "color": "i_cyan" + "copy-from": "s_air_parking", + "sym": "ô" }, { "type": "overmap_terrain", "id": "s_air_atc", - "name": "airport", - "sym": "ô", - "color": "i_cyan" + "copy-from": "s_air_atc", + "sym": "ô" }, { "type": "overmap_terrain", "id": "s_air_atc_2", - "name": "airport", - "sym": "ô", - "color": "i_cyan" + "copy-from": "s_air_atc_2", + "sym": "ô" }, { "type": "overmap_terrain", "id": "s_air_atc_3", - "name": "airport", - "sym": "ô", - "color": "i_cyan" + "copy-from": "s_air_atc_3", + "sym": "ô" }, { "type": "overmap_terrain", "id": "s_air_hangars", - "name": "airport", - "sym": "ý", - "color": "i_cyan" + "copy-from": "s_air_hangars", + "sym": "ý" }, { "type": "overmap_terrain", "id": "s_air_runway", - "name": "runway", - "sym": "ô", - "color": "blue" + "copy-from": "s_air_runway", + "sym": "ô" }, { "type": "overmap_terrain", "id": "s_air_runway_hangars", - "name": "runway", - "sym": "ô", - "color": "blue" + "copy-from": "s_air_runway_hangars", + "sym": "ô" }, { "type": "overmap_terrain", "id": "s_air_runway_l", - "name": "runway", - "sym": "ô", - "color": "blue" + "copy-from": "s_air_runway_l", + "sym": "ô" }, { "type": "overmap_terrain", "id": "s_air_runway_r", - "name": "runway", - "sym": "ô", - "color": "blue" + "copy-from": "s_air_runway_r", + "sym": "ô" }, { "type": "overmap_terrain", "id": "s_air_runway_term", - "name": "runway", - "sym": "ô", - "color": "blue" + "copy-from": "s_air_runway_term", + "sym": "ô" }, { "type": "overmap_terrain", "id": "s_lightindustry_road_0", - "name": "light industry", - "sym": "Ö", - "color": "dark_gray" + "copy-from": "s_lightindustry_road_0", + "sym": "Ö" }, { "type": "overmap_terrain", "id": "s_lightindustry_road_1", - "name": "light industry", - "sym": "Ö", - "color": "dark_gray" + "copy-from": "s_lightindustry_road_1", + "sym": "Ö" }, { "type": "overmap_terrain", "id": "s_lightindustry_00", - "name": "light industry", - "sym": "Ö", - "color": "light_blue" + "copy-from": "s_lightindustry_00", + "sym": "Ö" }, { "type": "overmap_terrain", "id": "s_lightindustry_01", - "name": "light industry", - "sym": "Ö", - "color": "light_blue" + "copy-from": "s_lightindustry_01", + "sym": "Ö" }, { "type": "overmap_terrain", "id": "s_lightindustry_10", - "name": "light industry", - "sym": "Ö", - "color": "light_blue" + "copy-from": "s_lightindustry_10", + "sym": "Ö" }, { "type": "overmap_terrain", "id": "s_lightindustry_11", - "name": "light industry", - "sym": "Ö", - "color": "light_blue" + "copy-from": "s_lightindustry_11", + "sym": "Ö" }, { "type": "overmap_terrain", "id": "s_gas_g1", - "name": "gas station", - "sym": "ú", - "color": "light_blue" + "copy-from": "s_gas_g1", + "sym": "ú" }, { "type": "overmap_terrain", "id": "s_gas_g0", - "name": "gas station", - "sym": "ú", - "color": "light_blue" + "copy-from": "s_gas_g0", + "sym": "ú" }, { "type": "overmap_terrain", "id": "s_gas_b11", - "name": "reception", - "sym": "ú", - "color": "red" + "copy-from": "s_gas_b11", + "sym": "ú" }, { "type": "overmap_terrain", "id": "s_gas_b20", - "name": "bunker", - "sym": "Õ", - "color": "red" + "copy-from": "s_gas_b20", + "sym": "Õ" }, { "type": "overmap_terrain", "id": "s_gas_b21", - "name": "bunker", - "sym": "Õ", - "color": "red" + "copy-from": "s_gas_b21", + "sym": "Õ" }, { "type": "overmap_terrain", "id": "s_bunker_shop_g", - "name": "derelict property", - "sym": "à", - "color": "white" + "copy-from": "s_bunker_shop_g", + "sym": "à" }, { "type": "overmap_terrain", "id": "s_bunker_shop_b", - "name": "scavenger bunker", - "sym": "Õ", - "color": "light_green" + "copy-from": "s_bunker_shop_b", + "sym": "Õ" } ] diff --git a/data/mods/Graphical_Overmap_More_Locations/overmap_terrain_more_locations.json b/data/mods/Graphical_Overmap_More_Locations/overmap_terrain_more_locations.json index 1ee1b7dd6ed3b..f76c21a974d96 100644 --- a/data/mods/Graphical_Overmap_More_Locations/overmap_terrain_more_locations.json +++ b/data/mods/Graphical_Overmap_More_Locations/overmap_terrain_more_locations.json @@ -2,1730 +2,1483 @@ { "type": "overmap_terrain", "id": "bandit_tower_1gate", - "name": "apartment towers", - "sym": "Ç", - "color": "brown" + "copy-from": "bandit_tower_1gate", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "bandit_tower_1ybe", - "name": "apartment towers", - "sym": "Ç", - "color": "brown" + "copy-from": "bandit_tower_1ybe", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "bandit_tower_1yle", - "name": "apartment towers", - "sym": "Ç", - "color": "brown" + "copy-from": "bandit_tower_1yle", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "bandit_tower_1yre", - "name": "apartment towers", - "sym": "Ç", - "color": "brown" + "copy-from": "bandit_tower_1yre", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "bandit_tower_1yte", - "name": "apartment towers", - "sym": "Ç", - "color": "brown" + "copy-from": "bandit_tower_1yte", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "bandit_tower_1cyblc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" + "copy-from": "bandit_tower_1cyblc", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "bandit_tower_1cybrc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" + "copy-from": "bandit_tower_1cybrc", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "bandit_tower_1cytlc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" + "copy-from": "bandit_tower_1cytlc", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "bandit_tower_1cytrc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" + "copy-from": "bandit_tower_1cytrc", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "bandit_tower_1blc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" + "copy-from": "bandit_tower_1blc", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "bandit_tower_1brc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" + "copy-from": "bandit_tower_1brc", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "bandit_tower_1tlc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" + "copy-from": "bandit_tower_1tlc", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "bandit_tower_1trc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" + "copy-from": "bandit_tower_1trc", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "bandit_tower_2blc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" + "copy-from": "bandit_tower_2blc", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "bandit_tower_2brc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" + "copy-from": "bandit_tower_2brc", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "bandit_tower_2tlc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" + "copy-from": "bandit_tower_2tlc", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "bandit_tower_2trc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" + "copy-from": "bandit_tower_2trc", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "bandit_tower_3blc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" + "copy-from": "bandit_tower_3blc", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "bandit_tower_3brc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" + "copy-from": "bandit_tower_3brc", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "bandit_tower_3tlc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" + "copy-from": "bandit_tower_3tlc", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "bandit_tower_3trc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" + "copy-from": "bandit_tower_3trc", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "bandit_tower_4blc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" + "copy-from": "bandit_tower_4blc", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "bandit_tower_4brc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" + "copy-from": "bandit_tower_4brc", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "bandit_tower_4tlc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" + "copy-from": "bandit_tower_4tlc", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "bandit_tower_4trc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" + "copy-from": "bandit_tower_4trc", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "bandit_tower_ublc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" + "copy-from": "bandit_tower_ublc", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "bandit_tower_ubrc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" + "copy-from": "bandit_tower_ubrc", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "bandit_tower_utlc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" + "copy-from": "bandit_tower_utlc", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "bandit_tower_utrc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" + "copy-from": "bandit_tower_utrc", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "estate_umid", - "name": "mansion", - "sym": "Ð", - "color": "i_light_green" + "copy-from": "estate_umid", + "sym": "Ð" }, { "type": "overmap_terrain", "id": "estate_ube", - "name": "mansion", - "sym": "Ð", - "color": "i_light_green" + "copy-from": "estate_ube", + "sym": "Ð" }, { "type": "overmap_terrain", "id": "estate_ule", - "name": "mansion", - "sym": "Ð", - "color": "i_light_green" + "copy-from": "estate_ule", + "sym": "Ð" }, { "type": "overmap_terrain", "id": "estate_ure", - "name": "mansion", - "sym": "Ð", - "color": "i_light_green" + "copy-from": "estate_ure", + "sym": "Ð" }, { "type": "overmap_terrain", "id": "estate_ute", - "name": "mansion", - "sym": "Ð", - "color": "i_light_green" + "copy-from": "estate_ute", + "sym": "Ð" }, { "type": "overmap_terrain", "id": "estate_mid", - "name": "mansion", - "sym": "Ð", - "color": "i_light_green" + "copy-from": "estate_mid", + "sym": "Ð" }, { "type": "overmap_terrain", "id": "estate_1be", - "name": "mansion", - "sym": "Ð", - "color": "i_light_green" + "copy-from": "estate_1be", + "sym": "Ð" }, { "type": "overmap_terrain", "id": "estate_1bloc", - "name": "mansion", - "sym": "Ð", - "color": "i_light_green" + "copy-from": "estate_1bloc", + "sym": "Ð" }, { "type": "overmap_terrain", "id": "estate_1broc", - "name": "mansion", - "sym": "Ð", - "color": "i_light_green" + "copy-from": "estate_1broc", + "sym": "Ð" }, { "type": "overmap_terrain", "id": "estate_1by", - "name": "mansion", - "sym": "Ð", - "color": "i_light_green" + "copy-from": "estate_1by", + "sym": "Ð" }, { "type": "overmap_terrain", "id": "estate_1ica", - "name": "mansion", - "sym": "Ð", - "color": "i_light_green" + "copy-from": "estate_1ica", + "sym": "Ð" }, { "type": "overmap_terrain", "id": "estate_1icb", - "name": "mansion", - "sym": "Ð", - "color": "i_light_green" + "copy-from": "estate_1icb", + "sym": "Ð" }, { "type": "overmap_terrain", "id": "estate_1icc", - "name": "mansion", - "sym": "Ð", - "color": "i_light_green" + "copy-from": "estate_1icc", + "sym": "Ð" }, { "type": "overmap_terrain", "id": "estate_1icd", - "name": "mansion", - "sym": "Ð", - "color": "i_light_green" + "copy-from": "estate_1icd", + "sym": "Ð" }, { "type": "overmap_terrain", "id": "estate_1le", - "name": "mansion", - "sym": "Ð", - "color": "i_light_green" + "copy-from": "estate_1le", + "sym": "Ð" }, { "type": "overmap_terrain", "id": "estate_1re", - "name": "mansion", - "sym": "Ð", - "color": "i_light_green" + "copy-from": "estate_1re", + "sym": "Ð" }, { "type": "overmap_terrain", "id": "estate_1te", - "name": "mansion", - "sym": "Ð", - "color": "i_light_green" + "copy-from": "estate_1te", + "sym": "Ð" }, { "type": "overmap_terrain", "id": "estate_1tloc", - "name": "mansion", - "sym": "Ð", - "color": "i_light_green" + "copy-from": "estate_1tloc", + "sym": "Ð" }, { "type": "overmap_terrain", "id": "estate_1troc", - "name": "mansion", - "sym": "Ð", - "color": "i_light_green" + "copy-from": "estate_1troc", + "sym": "Ð" }, { "type": "overmap_terrain", "id": "estate_1ty", - "name": "mansion", - "sym": "Ð", - "color": "i_light_green" + "copy-from": "estate_1ty", + "sym": "Ð" }, { "type": "overmap_terrain", "id": "estate_2be", - "name": "mansion", - "sym": "Ð", - "color": "i_light_green" + "copy-from": "estate_2be", + "sym": "Ð" }, { "type": "overmap_terrain", "id": "estate_2bloc", - "name": "mansion", - "sym": "Ð", - "color": "i_light_green" + "copy-from": "estate_2bloc", + "sym": "Ð" }, { "type": "overmap_terrain", "id": "estate_2broc", - "name": "mansion", - "sym": "Ð", - "color": "i_light_green" + "copy-from": "estate_2broc", + "sym": "Ð" }, { "type": "overmap_terrain", "id": "estate_2ica", - "name": "mansion", - "sym": "Ð", - "color": "i_light_green" + "copy-from": "estate_2ica", + "sym": "Ð" }, { "type": "overmap_terrain", "id": "estate_2icb", - "name": "mansion", - "sym": "Ð", - "color": "i_light_green" + "copy-from": "estate_2icb", + "sym": "Ð" }, { "type": "overmap_terrain", "id": "estate_2icc", - "name": "mansion", - "sym": "Ð", - "color": "i_light_green" + "copy-from": "estate_2icc", + "sym": "Ð" }, { "type": "overmap_terrain", "id": "estate_2icd", - "name": "mansion", - "sym": "Ð", - "color": "i_light_green" + "copy-from": "estate_2icd", + "sym": "Ð" }, { "type": "overmap_terrain", "id": "estate_2le", - "name": "mansion", - "sym": "Ð", - "color": "i_light_green" + "copy-from": "estate_2le", + "sym": "Ð" }, { "type": "overmap_terrain", "id": "estate_2re", - "name": "mansion", - "sym": "Ð", - "color": "i_light_green" + "copy-from": "estate_2re", + "sym": "Ð" }, { "type": "overmap_terrain", "id": "estate_2te", - "name": "mansion", - "sym": "Ð", - "color": "i_light_green" + "copy-from": "estate_2te", + "sym": "Ð" }, { "type": "overmap_terrain", "id": "estate_2tloc", - "name": "mansion", - "sym": "Ð", - "color": "i_light_green" + "copy-from": "estate_2tloc", + "sym": "Ð" }, { "type": "overmap_terrain", "id": "estate_2troc", - "name": "mansion", - "sym": "Ð", - "color": "i_light_green" + "copy-from": "estate_2troc", + "sym": "Ð" }, { "type": "overmap_terrain", "id": "factory_tlc", - "name": "factory", - "sym": "Ö", - "color": "i_black" + "copy-from": "factory_tlc", + "sym": "Ö" }, { "type": "overmap_terrain", "id": "factory_te", - "name": "factory", - "sym": "Ö", - "color": "i_black" + "copy-from": "factory_te", + "sym": "Ö" }, { "type": "overmap_terrain", "id": "factory_trc", - "name": "factory", - "sym": "Ö", - "color": "i_black" + "copy-from": "factory_trc", + "sym": "Ö" }, { "type": "overmap_terrain", "id": "factory_le", - "name": "factory", - "sym": "Ö", - "color": "i_black" + "copy-from": "factory_le", + "sym": "Ö" }, { "type": "overmap_terrain", "id": "factory_mid", - "name": "factory", - "sym": "Ö", - "color": "i_black" + "copy-from": "factory_mid", + "sym": "Ö" }, { "type": "overmap_terrain", "id": "factory_re", - "name": "factory", - "sym": "Ö", - "color": "i_black" + "copy-from": "factory_re", + "sym": "Ö" }, { "type": "overmap_terrain", "id": "factory_blc", - "name": "factory", - "sym": "Ö", - "color": "i_black" + "copy-from": "factory_blc", + "sym": "Ö" }, { "type": "overmap_terrain", "id": "factory_be", - "name": "factory", - "sym": "Ö", - "color": "i_black" + "copy-from": "factory_be", + "sym": "Ö" }, { "type": "overmap_terrain", "id": "factory_be_gate", - "name": "factory", - "sym": "Ö", - "color": "i_black" + "copy-from": "factory_be_gate", + "sym": "Ö" }, { "type": "overmap_terrain", "id": "factory_brc", - "name": "factory", - "sym": "Ö", - "color": "i_black" + "copy-from": "factory_brc", + "sym": "Ö" }, { "type": "overmap_terrain", "id": "mil_outpost_ytlc", - "name": "mine field", - "sym": "¨", - "color": "brown" + "copy-from": "mil_outpost_ytlc", + "sym": "¨" }, { "type": "overmap_terrain", "id": "mil_outpost_yte", - "name": "mine field", - "sym": "¨", - "color": "brown" + "copy-from": "mil_outpost_yte", + "sym": "¨" }, { "type": "overmap_terrain", "id": "mil_outpost_ytrc", - "name": "mine field", - "sym": "¨", - "color": "brown" + "copy-from": "mil_outpost_ytrc", + "sym": "¨" }, { "type": "overmap_terrain", "id": "mil_outpost_yle", - "name": "mine field", - "sym": "¨", - "color": "brown" + "copy-from": "mil_outpost_yle", + "sym": "¨" }, { "type": "overmap_terrain", "id": "mil_outpost_yre", - "name": "mine field", - "sym": "¨", - "color": "brown" + "copy-from": "mil_outpost_yre", + "sym": "¨" }, { "type": "overmap_terrain", "id": "mil_outpost_yblc", - "name": "mine field", - "sym": "¨", - "color": "brown" + "copy-from": "mil_outpost_yblc", + "sym": "¨" }, { "type": "overmap_terrain", "id": "mil_outpost_ybe", - "name": "mine field", - "sym": "¨", - "color": "brown" + "copy-from": "mil_outpost_ybe", + "sym": "¨" }, { "type": "overmap_terrain", "id": "mil_outpost_ybe_gate", - "name": "gate", - "sym": ".", - "color": "white" + "copy-from": "mil_outpost_ybe_gate", + "sym": "." }, { "type": "overmap_terrain", "id": "mil_outpost_ybrc", - "name": "mine field", - "sym": "¨", - "color": "brown" + "copy-from": "mil_outpost_ybrc", + "sym": "¨" }, { "type": "overmap_terrain", "id": "mil_outpost_1tlc", - "name": "military outpost", - "sym": "Å", - "color": "i_red" + "copy-from": "mil_outpost_1tlc", + "sym": "Å" }, { "type": "overmap_terrain", "id": "mil_outpost_1te", - "name": "military outpost", - "sym": "Å", - "color": "i_red" + "copy-from": "mil_outpost_1te", + "sym": "Å" }, { "type": "overmap_terrain", "id": "mil_outpost_1trc", - "name": "military outpost", - "sym": "Å", - "color": "i_red" + "copy-from": "mil_outpost_1trc", + "sym": "Å" }, { "type": "overmap_terrain", "id": "mil_outpost_1le", - "name": "military outpost", - "sym": "Å", - "color": "i_red" + "copy-from": "mil_outpost_1le", + "sym": "Å" }, { "type": "overmap_terrain", "id": "mil_outpost_1mid", - "name": "military outpost", - "sym": "Å", - "color": "i_red" + "copy-from": "mil_outpost_1mid", + "sym": "Å" }, { "type": "overmap_terrain", "id": "mil_outpost_1re", - "name": "military outpost", - "sym": "Å", - "color": "i_red" + "copy-from": "mil_outpost_1re", + "sym": "Å" }, { "type": "overmap_terrain", "id": "mil_outpost_1blc", - "name": "military outpost", - "sym": "Å", - "color": "i_red" + "copy-from": "mil_outpost_1blc", + "sym": "Å" }, { "type": "overmap_terrain", "id": "mil_outpost_1be", - "name": "military outpost", - "sym": "Å", - "color": "i_red" + "copy-from": "mil_outpost_1be", + "sym": "Å" }, { "type": "overmap_terrain", "id": "mil_outpost_1brc", - "name": "military outpost", - "sym": "Å", - "color": "i_red" + "copy-from": "mil_outpost_1brc", + "sym": "Å" }, { "type": "overmap_terrain", "id": "mil_outpost_2tlc", - "name": "military outpost", - "sym": "Å", - "color": "i_red" + "copy-from": "mil_outpost_2tlc", + "sym": "Å" }, { "type": "overmap_terrain", "id": "mil_outpost_2te", - "name": "military outpost", - "sym": "Å", - "color": "i_red" + "copy-from": "mil_outpost_2te", + "sym": "Å" }, { "type": "overmap_terrain", "id": "mil_outpost_2trc", - "name": "military outpost", - "sym": "Å", - "color": "i_red" + "copy-from": "mil_outpost_2trc", + "sym": "Å" }, { "type": "overmap_terrain", "id": "mil_outpost_2le", - "name": "military outpost", - "sym": "Å", - "color": "i_red" + "copy-from": "mil_outpost_2le", + "sym": "Å" }, { "type": "overmap_terrain", "id": "mil_outpost_2re", - "name": "military outpost", - "sym": "Å", - "color": "i_red" + "copy-from": "mil_outpost_2re", + "sym": "Å" }, { "type": "overmap_terrain", "id": "mil_outpost_2blc", - "name": "military outpost", - "sym": "Å", - "color": "i_red" + "copy-from": "mil_outpost_2blc", + "sym": "Å" }, { "type": "overmap_terrain", "id": "mil_outpost_2be", - "name": "military outpost", - "sym": "Å", - "color": "i_red" + "copy-from": "mil_outpost_2be", + "sym": "Å" }, { "type": "overmap_terrain", "id": "mil_outpost_2brc", - "name": "military outpost", - "sym": "Å", - "color": "i_red" + "copy-from": "mil_outpost_2brc", + "sym": "Å" }, { "type": "overmap_terrain", "id": "mil_outpost_3c", - "name": "military outpost", - "sym": "Å", - "color": "i_red" + "copy-from": "mil_outpost_3c", + "sym": "Å" }, { "type": "overmap_terrain", "id": "mil_outpost_utlc", - "name": "military outpost", - "sym": "Å", - "color": "i_red" + "copy-from": "mil_outpost_utlc", + "sym": "Å" }, { "type": "overmap_terrain", "id": "mil_outpost_utea", - "name": "military outpost", - "sym": "Å", - "color": "i_red" + "copy-from": "mil_outpost_utea", + "sym": "Å" }, { "type": "overmap_terrain", "id": "mil_outpost_uteb", - "name": "military outpost", - "sym": "Å", - "color": "i_red" + "copy-from": "mil_outpost_uteb", + "sym": "Å" }, { "type": "overmap_terrain", "id": "mil_outpost_utrc", - "name": "military outpost", - "sym": "Å", - "color": "i_red" + "copy-from": "mil_outpost_utrc", + "sym": "Å" }, { "type": "overmap_terrain", "id": "mil_outpost_ule", - "name": "military outpost", - "sym": "Å", - "color": "i_red" + "copy-from": "mil_outpost_ule", + "sym": "Å" }, { "type": "overmap_terrain", "id": "mil_outpost_umid", - "name": "military outpost", - "sym": "Å", - "color": "i_red" + "copy-from": "mil_outpost_umid", + "sym": "Å" }, { "type": "overmap_terrain", "id": "mil_outpost_umid_finale", - "name": "military outpost", - "sym": "Å", - "color": "red_white" + "copy-from": "mil_outpost_umid_finale", + "sym": "Å" }, { "type": "overmap_terrain", "id": "mil_outpost_ure", - "name": "military outpost", - "sym": "Å", - "color": "i_red" + "copy-from": "mil_outpost_ure", + "sym": "Å" }, { "type": "overmap_terrain", "id": "mil_outpost_ublc", - "name": "military outpost", - "sym": "Å", - "color": "i_red" + "copy-from": "mil_outpost_ublc", + "sym": "Å" }, { "type": "overmap_terrain", "id": "mil_outpost_ubea", - "name": "military outpost", - "sym": "Å", - "color": "i_red" + "copy-from": "mil_outpost_ubea", + "sym": "Å" }, { "type": "overmap_terrain", "id": "mil_outpost_ubeb", - "name": "military outpost", - "sym": "Å", - "color": "i_red" + "copy-from": "mil_outpost_ubeb", + "sym": "Å" }, { "type": "overmap_terrain", "id": "mil_outpost_ubrc", - "name": "military outpost", - "sym": "Å", - "color": "i_red" + "copy-from": "mil_outpost_ubrc", + "sym": "Å" }, { "type": "overmap_terrain", "id": "3storyA_first", - "name": "house", - "sym": "à", - "color": "light_green" + "copy-from": "3storyA_first", + "sym": "à" }, { "type": "overmap_terrain", "id": "3storyA_second", - "name": "house", - "sym": "à", - "color": "light_green" + "copy-from": "3storyA_second", + "sym": "à" }, { "type": "overmap_terrain", "id": "3storyA_third", - "name": "house", - "sym": "à", - "color": "light_green" + "copy-from": "3storyA_third", + "sym": "à" }, { "type": "overmap_terrain", "id": "3storyA_basement", - "name": "house basement", - "sym": "à", - "color": "dark_gray" + "copy-from": "3storyA_basement", + "sym": "à" }, { "type": "overmap_terrain", "id": "3storyA_roof", - "name": "house roof", - "sym": "à", - "color": "dark_gray" + "copy-from": "3storyA_roof", + "sym": "à" }, { "type": "overmap_terrain", "id": "3storyB_first", - "name": "house", - "sym": "à", - "color": "light_green" + "copy-from": "3storyB_first", + "sym": "à" }, { "type": "overmap_terrain", "id": "3storyB_second", - "name": "house", - "sym": "à", - "color": "light_green" + "copy-from": "3storyB_second", + "sym": "à" }, { "type": "overmap_terrain", "id": "3storyB_third", - "name": "house", - "sym": "à", - "color": "light_green" + "copy-from": "3storyB_third", + "sym": "à" }, { "type": "overmap_terrain", "id": "3storyB_basement", - "name": "house basement", - "sym": "à", - "color": "dark_gray" + "copy-from": "3storyB_basement", + "sym": "à" }, { "type": "overmap_terrain", "id": "3storyB_roof", - "name": "house roof", - "sym": "à", - "color": "dark_gray" + "copy-from": "3storyB_roof", + "sym": "à" }, { "type": "overmap_terrain", "id": "3storyC_first", - "name": "house", - "sym": "à", - "color": "light_green" + "copy-from": "3storyC_first", + "sym": "à" }, { "type": "overmap_terrain", "id": "3storyC_second", - "name": "house", - "sym": "à", - "color": "light_green" + "copy-from": "3storyC_second", + "sym": "à" }, { "type": "overmap_terrain", "id": "3storyC_third", - "name": "house", - "sym": "à", - "color": "light_green" + "copy-from": "3storyC_third", + "sym": "à" }, { "type": "overmap_terrain", "id": "3storyC_basement", - "name": "house basement", - "sym": "à", - "color": "dark_gray" + "copy-from": "3storyC_basement", + "sym": "à" }, { "type": "overmap_terrain", "id": "3storyC_roof", - "name": "house roof", - "sym": "à", - "color": "dark_gray" + "copy-from": "3storyC_roof", + "sym": "à" }, { "type": "overmap_terrain", "id": "3storyD_first", - "name": "house", - "sym": "à", - "color": "light_green" + "copy-from": "3storyD_first", + "sym": "à" }, { "type": "overmap_terrain", "id": "3storyD_second", - "name": "house", - "sym": "à", - "color": "light_green" + "copy-from": "3storyD_second", + "sym": "à" }, { "type": "overmap_terrain", "id": "3storyD_third", - "name": "house", - "sym": "à", - "color": "light_green" + "copy-from": "3storyD_third", + "sym": "à" }, { "type": "overmap_terrain", "id": "3storyD_basement", - "name": "house basement", - "sym": "à", - "color": "dark_gray" + "copy-from": "3storyD_basement", + "sym": "à" }, { "type": "overmap_terrain", "id": "3storyD_roof", - "name": "house roof", - "sym": "à", - "color": "dark_gray" + "copy-from": "3storyD_roof", + "sym": "à" }, { "type": "overmap_terrain", "id": "3storyE_first", - "name": "house", - "sym": "à", - "color": "light_green" + "copy-from": "3storyE_first", + "sym": "à" }, { "type": "overmap_terrain", "id": "3storyE_second", - "name": "house", - "sym": "à", - "color": "light_green" + "copy-from": "3storyE_second", + "sym": "à" }, { "type": "overmap_terrain", "id": "3storyE_third", - "name": "house", - "sym": "à", - "color": "light_green" + "copy-from": "3storyE_third", + "sym": "à" }, { "type": "overmap_terrain", "id": "3storyE_basement", - "name": "house basement", - "sym": "à", - "color": "dark_gray" + "copy-from": "3storyE_basement", + "sym": "à" }, { "type": "overmap_terrain", "id": "3storyE_roof", - "name": "house roof", - "sym": "à", - "color": "dark_gray" + "copy-from": "3storyE_roof", + "sym": "à" }, { "type": "overmap_terrain", "id": "3storyF_first", - "name": "house", - "sym": "à", - "color": "light_green" + "copy-from": "3storyF_first", + "sym": "à" }, { "type": "overmap_terrain", "id": "3storyF_second", - "name": "house", - "sym": "à", - "color": "light_green" + "copy-from": "3storyF_second", + "sym": "à" }, { "type": "overmap_terrain", "id": "3storyF_third", - "name": "house", - "sym": "à", - "color": "light_green" + "copy-from": "3storyF_third", + "sym": "à" }, { "type": "overmap_terrain", "id": "3storyF_basement", - "name": "house basement", - "sym": "à", - "color": "dark_gray" + "copy-from": "3storyF_basement", + "sym": "à" }, { "type": "overmap_terrain", "id": "3storyF_roof", - "name": "house roof", - "sym": "à", - "color": "dark_gray" + "copy-from": "3storyF_roof", + "sym": "à" }, { "type": "overmap_terrain", "id": "2storyA_first", - "name": "house", - "sym": "à", - "color": "light_green" + "copy-from": "2storyA_first", + "sym": "à" }, { "type": "overmap_terrain", "id": "2storyA_second", - "name": "house", - "sym": "à", - "color": "light_green" + "copy-from": "2storyA_second", + "sym": "à" }, { "type": "overmap_terrain", "id": "2storyA_basement", - "name": "house basement", - "sym": "à", - "color": "dark_gray" + "copy-from": "2storyA_basement", + "sym": "à" }, { "type": "overmap_terrain", "id": "2storyA_roof", - "name": "house roof", - "sym": "à", - "color": "dark_gray" + "copy-from": "2storyA_roof", + "sym": "à" }, { "type": "overmap_terrain", "id": "2storyB_first", - "name": "house", - "sym": "à", - "color": "light_green" + "copy-from": "2storyB_first", + "sym": "à" }, { "type": "overmap_terrain", "id": "2storyB_second", - "name": "house", - "sym": "à", - "color": "light_green" + "copy-from": "2storyB_second", + "sym": "à" }, { "type": "overmap_terrain", "id": "2storyB_basement", - "name": "house basement", - "sym": "à", - "color": "dark_gray" + "copy-from": "2storyB_basement", + "sym": "à" }, { "type": "overmap_terrain", "id": "2storyB_roof", - "name": "house roof", - "sym": "à", - "color": "dark_gray" + "copy-from": "2storyB_roof", + "sym": "à" }, { "type": "overmap_terrain", "id": "2storyC_first", - "name": "house", - "sym": "à", - "color": "light_green" + "copy-from": "2storyC_first", + "sym": "à" }, { "type": "overmap_terrain", "id": "2storyC_second", - "name": "house", - "sym": "à", - "color": "light_green" + "copy-from": "2storyC_second", + "sym": "à" }, { "type": "overmap_terrain", "id": "2storyC_basement", - "name": "house basement", - "sym": "à", - "color": "dark_gray" + "copy-from": "2storyC_basement", + "sym": "à" }, { "type": "overmap_terrain", "id": "2storyC_roof", - "name": "house roof", - "sym": "à", - "color": "dark_gray" + "copy-from": "2storyC_roof", + "sym": "à" }, { "type": "overmap_terrain", "id": "2storyD_first", - "name": "house", - "sym": "à", - "color": "light_green" + "copy-from": "2storyD_first", + "sym": "à" }, { "type": "overmap_terrain", "id": "2storyD_second", - "name": "house", - "sym": "à", - "color": "light_green" + "copy-from": "2storyD_second", + "sym": "à" }, { "type": "overmap_terrain", "id": "2storyD_basement", - "name": "house basement", - "sym": "à", - "color": "dark_gray" + "copy-from": "2storyD_basement", + "sym": "à" }, { "type": "overmap_terrain", "id": "2storyD_roof", - "name": "house roof", - "sym": "à", - "color": "dark_gray" + "copy-from": "2storyD_roof", + "sym": "à" }, { "type": "overmap_terrain", "id": "2storyE_first", - "name": "house", - "sym": "à", - "color": "light_green" + "copy-from": "2storyE_first", + "sym": "à" }, { "type": "overmap_terrain", "id": "2storyE_second", - "name": "house", - "sym": "à", - "color": "light_green" + "copy-from": "2storyE_second", + "sym": "à" }, { "type": "overmap_terrain", "id": "2storyE_basement", - "name": "house basement", - "sym": "à", - "color": "dark_gray" + "copy-from": "2storyE_basement", + "sym": "à" }, { "type": "overmap_terrain", "id": "2storyE_roof", - "name": "house roof", - "sym": "à", - "color": "dark_gray" + "copy-from": "2storyE_roof", + "sym": "à" }, { "type": "overmap_terrain", "id": "2storyF_first", - "name": "house", - "sym": "à", - "color": "light_green" + "copy-from": "2storyF_first", + "sym": "à" }, { "type": "overmap_terrain", "id": "2storyF_second", - "name": "house", - "sym": "à", - "color": "light_green" + "copy-from": "2storyF_second", + "sym": "à" }, { "type": "overmap_terrain", "id": "2storyF_basement", - "name": "house basement", - "sym": "à", - "color": "dark_gray" + "copy-from": "2storyF_basement", + "sym": "à" }, { "type": "overmap_terrain", "id": "2storyF_roof", - "name": "house roof", - "sym": "à", - "color": "dark_gray" + "copy-from": "2storyF_roof", + "sym": "à" }, { "type": "overmap_terrain", "id": "combohouseA_first", - "name": "house", - "sym": "à", - "color": "light_green" + "copy-from": "combohouseA_first", + "sym": "à" }, { "type": "overmap_terrain", "id": "combohouseA_second", - "name": "house", - "sym": "à", - "color": "light_green" + "copy-from": "combohouseA_second", + "sym": "à" }, { "type": "overmap_terrain", "id": "combohouseA_basement", - "name": "house basement", - "sym": "à", - "color": "dark_gray" + "copy-from": "combohouseA_basement", + "sym": "à" }, { "type": "overmap_terrain", "id": "combohouseA_roof", - "name": "house roof", - "sym": "à", - "color": "dark_gray" + "copy-from": "combohouseA_roof", + "sym": "à" }, { "type": "overmap_terrain", "id": "combogarageA_first", - "name": "attached garage", - "sym": "^", - "color": "light_green" + "copy-from": "combogarageA_first", + "sym": "^" }, { "type": "overmap_terrain", "id": "combogarageA_second", - "name": "house", - "sym": "à", - "color": "light_green" + "copy-from": "combogarageA_second", + "sym": "à" }, { "type": "overmap_terrain", "id": "combogarageA_roof", - "name": "house roof", - "sym": "à", - "color": "magenta_white" + "copy-from": "combogarageA_roof", + "sym": "à" }, { "type": "overmap_terrain", "id": "combohouseB_first", - "name": "house", - "sym": "à", - "color": "light_green" + "copy-from": "combohouseB_first", + "sym": "à" }, { "type": "overmap_terrain", "id": "combohouseB_second", - "name": "house", - "sym": "à", - "color": "light_green" + "copy-from": "combohouseB_second", + "sym": "à" }, { "type": "overmap_terrain", "id": "combohouseB_basement", - "name": "house basement", - "sym": "à", - "color": "dark_gray" + "copy-from": "combohouseB_basement", + "sym": "à" }, { "type": "overmap_terrain", "id": "combohouseB_roof", - "name": "house roof", - "sym": "à", - "color": "dark_gray" + "copy-from": "combohouseB_roof", + "sym": "à" }, { "type": "overmap_terrain", "id": "combogarageB_first", - "name": "attached garage", - "sym": "^", - "color": "light_green" + "copy-from": "combogarageB_first", + "sym": "^" }, { "type": "overmap_terrain", "id": "combogarageB_second", - "name": "house", - "sym": "à", - "color": "light_green" + "copy-from": "combogarageB_second", + "sym": "à" }, { "type": "overmap_terrain", "id": "combogarageB_roof", - "name": "house roof", - "sym": "à", - "color": "magenta_white" + "copy-from": "combogarageB_roof", + "sym": "à" }, { "type": "overmap_terrain", "id": "combohouseC_first", - "name": "house", - "sym": "à", - "color": "light_green" + "copy-from": "combohouseC_first", + "sym": "à" }, { "type": "overmap_terrain", "id": "combohouseC_second", - "name": "house", - "sym": "à", - "color": "light_green" + "copy-from": "combohouseC_second", + "sym": "à" }, { "type": "overmap_terrain", "id": "combohouseC_basement", - "name": "house basement", - "sym": "à", - "color": "dark_gray" + "copy-from": "combohouseC_basement", + "sym": "à" }, { "type": "overmap_terrain", "id": "combohouseC_roof", - "name": "house roof", - "sym": "à", - "color": "dark_gray" + "copy-from": "combohouseC_roof", + "sym": "à" }, { "type": "overmap_terrain", "id": "combogarageC_first", - "name": "attached garage", - "sym": "^", - "color": "light_green" + "copy-from": "combogarageC_first", + "sym": "^" }, { "type": "overmap_terrain", "id": "combogarageC_second", - "name": "house", - "sym": "à", - "color": "light_green" + "copy-from": "combogarageC_second", + "sym": "à" }, { "type": "overmap_terrain", "id": "combogarageC_roof", - "name": "house roof", - "sym": "à", - "color": "magenta_white" + "copy-from": "combogarageC_roof", + "sym": "à" }, { "type": "overmap_terrain", "id": "refugee_tower_1gate", - "name": "apartment towers", - "sym": "Ç", - "color": "brown" + "copy-from": "refugee_tower_1gate", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "refugee_tower_1ybe", - "name": "apartment towers", - "sym": "Ç", - "color": "brown" + "copy-from": "refugee_tower_1ybe", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "refugee_tower_1yle", - "name": "apartment towers", - "sym": "Ç", - "color": "brown" + "copy-from": "refugee_tower_1yle", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "refugee_tower_1yre", - "name": "apartment towers", - "sym": "Ç", - "color": "brown" + "copy-from": "refugee_tower_1yre", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "refugee_tower_1yte", - "name": "apartment towers", - "sym": "Ç", - "color": "brown" + "copy-from": "refugee_tower_1yte", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "refugee_tower_1cyblc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" + "copy-from": "refugee_tower_1cyblc", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "refugee_tower_1cybrc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" + "copy-from": "refugee_tower_1cybrc", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "refugee_tower_1cytlc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" + "copy-from": "refugee_tower_1cytlc", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "refugee_tower_1cytrc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" + "copy-from": "refugee_tower_1cytrc", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "refugee_tower_1blc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" + "copy-from": "refugee_tower_1blc", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "refugee_tower_1brc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" + "copy-from": "refugee_tower_1brc", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "refugee_tower_1tlc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" + "copy-from": "refugee_tower_1tlc", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "refugee_tower_1trc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" + "copy-from": "refugee_tower_1trc", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "refugee_tower_2blc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" + "copy-from": "refugee_tower_2blc", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "refugee_tower_2brc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" + "copy-from": "refugee_tower_2brc", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "refugee_tower_2tlc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" + "copy-from": "refugee_tower_2tlc", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "refugee_tower_2trc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" + "copy-from": "refugee_tower_2trc", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "refugee_tower_3blc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" + "copy-from": "refugee_tower_3blc", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "refugee_tower_3brc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" + "copy-from": "refugee_tower_3brc", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "refugee_tower_3tlc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" + "copy-from": "refugee_tower_3tlc", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "refugee_tower_3trc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" + "copy-from": "refugee_tower_3trc", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "refugee_tower_4blc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" + "copy-from": "refugee_tower_4blc", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "refugee_tower_4brc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" + "copy-from": "refugee_tower_4brc", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "refugee_tower_4tlc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" + "copy-from": "refugee_tower_4tlc", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "refugee_tower_4trc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" + "copy-from": "refugee_tower_4trc", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "refugee_tower_5blc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" + "copy-from": "refugee_tower_5blc", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "refugee_tower_5brc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" + "copy-from": "refugee_tower_5brc", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "refugee_tower_5tlc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" + "copy-from": "refugee_tower_5tlc", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "refugee_tower_5trc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" + "copy-from": "refugee_tower_5trc", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "refugee_tower_ublc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" + "copy-from": "refugee_tower_ublc", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "refugee_tower_ubrc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" + "copy-from": "refugee_tower_ubrc", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "refugee_tower_utlc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" + "copy-from": "refugee_tower_utlc", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "refugee_tower_utrc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" + "copy-from": "refugee_tower_utrc", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "tri_tower_1gate", - "name": "apartment towers", - "sym": "Ç", - "color": "brown" + "copy-from": "tri_tower_1gate", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "tri_tower_1ybe", - "name": "apartment towers", - "sym": "Ç", - "color": "brown" + "copy-from": "tri_tower_1ybe", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "tri_tower_1yle", - "name": "apartment towers", - "sym": "Ç", - "color": "brown" + "copy-from": "tri_tower_1yle", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "tri_tower_1yre", - "name": "apartment towers", - "sym": "Ç", - "color": "brown" + "copy-from": "tri_tower_1yre", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "tri_tower_1yte", - "name": "apartment towers", - "sym": "Ç", - "color": "brown" + "copy-from": "tri_tower_1yte", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "tri_tower_1cyblc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" + "copy-from": "tri_tower_1cyblc", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "tri_tower_1cybrc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" + "copy-from": "tri_tower_1cybrc", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "tri_tower_1cytlc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" + "copy-from": "tri_tower_1cytlc", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "tri_tower_1cytrc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" + "copy-from": "tri_tower_1cytrc", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "tri_tower_1blc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" + "copy-from": "tri_tower_1blc", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "tri_tower_1brc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" + "copy-from": "tri_tower_1brc", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "tri_tower_1tlc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" + "copy-from": "tri_tower_1tlc", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "tri_tower_1trc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" + "copy-from": "tri_tower_1trc", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "tri_tower_2blc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" + "copy-from": "tri_tower_2blc", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "tri_tower_2brc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" + "copy-from": "tri_tower_2brc", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "tri_tower_2tlc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" + "copy-from": "tri_tower_2tlc", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "tri_tower_2trc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" + "copy-from": "tri_tower_2trc", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "tri_tower_3blc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" + "copy-from": "tri_tower_3blc", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "tri_tower_3brc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" + "copy-from": "tri_tower_3brc", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "tri_tower_3tlc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" + "copy-from": "tri_tower_3tlc", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "tri_tower_3trc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" + "copy-from": "tri_tower_3trc", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "tri_tower_4blc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" + "copy-from": "tri_tower_4blc", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "tri_tower_4brc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" + "copy-from": "tri_tower_4brc", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "tri_tower_4tlc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" + "copy-from": "tri_tower_4tlc", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "tri_tower_4trc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" + "copy-from": "tri_tower_4trc", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "tri_tower_ublc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" + "copy-from": "tri_tower_ublc", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "tri_tower_ubrc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" + "copy-from": "tri_tower_ubrc", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "tri_tower_utlc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" + "copy-from": "tri_tower_utlc", + "sym": "Ç" }, { "type": "overmap_terrain", "id": "tri_tower_utrc", - "name": "apartment towers", - "sym": "Ç", - "color": "i_light_green" + "copy-from": "tri_tower_utrc", + "sym": "Ç" } ] diff --git a/data/mods/Graphical_Overmap_Urban_Development/overmap_terrain_urban_development.json b/data/mods/Graphical_Overmap_Urban_Development/overmap_terrain_urban_development.json index 248cf95fae97e..f817d16717324 100644 --- a/data/mods/Graphical_Overmap_Urban_Development/overmap_terrain_urban_development.json +++ b/data/mods/Graphical_Overmap_Urban_Development/overmap_terrain_urban_development.json @@ -1,3223 +1,2914 @@ [ { - "id": "urban_1_1", "type": "overmap_terrain", - "name": "house", + "id": "urban_1_1", + "copy-from": "urban_1_1", "sym": "à", "color": "light_gray" }, { - "id": "urban_1_2", "type": "overmap_terrain", - "name": "house", + "id": "urban_1_2", + "copy-from": "urban_1_2", "sym": "à", "color": "light_gray" }, { - "id": "urban_1_3", "type": "overmap_terrain", - "name": "house", + "id": "urban_1_3", + "copy-from": "urban_1_3", "sym": "à", "color": "light_gray" }, { - "id": "urban_1_4", "type": "overmap_terrain", - "name": "house", + "id": "urban_1_4", + "copy-from": "urban_1_4", "sym": "à", "color": "light_gray" }, { - "id": "urban_1_6", "type": "overmap_terrain", - "name": "house", + "id": "urban_1_6", + "copy-from": "urban_1_6", "sym": "à", "color": "light_gray" }, { - "id": "urban_2_1", "type": "overmap_terrain", - "name": "house", + "id": "urban_2_1", + "copy-from": "urban_2_1", "sym": "à", "color": "light_gray" }, { - "id": "urban_2_2", "type": "overmap_terrain", - "name": "house", + "id": "urban_2_2", + "copy-from": "urban_2_2", "sym": "à", "color": "light_gray" }, { - "id": "urban_2_3", "type": "overmap_terrain", - "name": "house", + "id": "urban_2_3", + "copy-from": "urban_2_3", "sym": "à", "color": "light_gray" }, { - "id": "urban_2_4", "type": "overmap_terrain", - "name": "house", + "id": "urban_2_4", + "copy-from": "urban_2_4", "sym": "à", "color": "light_gray" }, { - "id": "urban_2_5", "type": "overmap_terrain", - "name": "house", + "id": "urban_2_5", + "copy-from": "urban_2_5", "sym": "à", "color": "light_gray" }, { - "id": "urban_2_6", "type": "overmap_terrain", - "name": "house", + "id": "urban_2_6", + "copy-from": "urban_2_6", "sym": "à", "color": "light_gray" }, { - "id": "urban_3_1", "type": "overmap_terrain", - "name": "house", + "id": "urban_3_1", + "copy-from": "urban_3_1", "sym": "à", "color": "light_gray" }, { - "id": "urban_3_2", "type": "overmap_terrain", - "name": "house", + "id": "urban_3_2", + "copy-from": "urban_3_2", "sym": "à", "color": "light_gray" }, { - "id": "urban_3_3", "type": "overmap_terrain", - "name": "house", + "id": "urban_3_3", + "copy-from": "urban_3_3", "sym": "à", "color": "light_gray" }, { - "id": "urban_3_4", "type": "overmap_terrain", - "name": "house", + "id": "urban_3_4", + "copy-from": "urban_3_4", "sym": "à", "color": "light_gray" }, { - "id": "urban_3_5", "type": "overmap_terrain", - "name": "house", + "id": "urban_3_5", + "copy-from": "urban_3_5", "sym": "à", "color": "light_gray" }, { - "id": "urban_3_6", "type": "overmap_terrain", - "name": "house", + "id": "urban_3_6", + "copy-from": "urban_3_6", "sym": "à", "color": "light_gray" }, { - "id": "urban_4_1", "type": "overmap_terrain", - "name": "basement", - "sym": "à", - "color": "dark_gray" + "id": "urban_4_1", + "copy-from": "urban_4_1", + "sym": "à" }, { - "id": "urban_4_2", "type": "overmap_terrain", - "name": "basement", - "sym": "à", - "color": "dark_gray" + "id": "urban_4_2", + "copy-from": "urban_4_2", + "sym": "à" }, { - "id": "urban_4_3", "type": "overmap_terrain", - "name": "house", + "id": "urban_4_3", + "copy-from": "urban_4_3", "sym": "à", "color": "light_gray" }, { - "id": "urban_4_4", "type": "overmap_terrain", - "name": "house", + "id": "urban_4_4", + "copy-from": "urban_4_4", "sym": "à", "color": "light_gray" }, { - "id": "urban_4_5", "type": "overmap_terrain", - "name": "house", + "id": "urban_4_5", + "copy-from": "urban_4_5", "sym": "à", "color": "light_gray" }, { - "id": "urban_4_6", "type": "overmap_terrain", - "name": "house", + "id": "urban_4_6", + "copy-from": "urban_4_6", "sym": "à", "color": "light_gray" }, { - "id": "urban_4_7", "type": "overmap_terrain", - "name": "house", + "id": "urban_4_7", + "copy-from": "urban_4_7", "sym": "à", "color": "light_gray" }, { - "id": "urban_4_8", "type": "overmap_terrain", - "name": "house", + "id": "urban_4_8", + "copy-from": "urban_4_8", "sym": "à", "color": "light_gray" }, { - "id": "urban_5_1", "type": "overmap_terrain", - "name": "house", + "id": "urban_5_1", + "copy-from": "urban_5_1", "sym": "à", "color": "light_gray" }, { - "id": "urban_5_2", "type": "overmap_terrain", - "name": "house", + "id": "urban_5_2", + "copy-from": "urban_5_2", "sym": "à", "color": "light_gray" }, { - "id": "urban_5_3", "type": "overmap_terrain", - "name": "house", + "id": "urban_5_3", + "copy-from": "urban_5_3", "sym": "à", "color": "light_gray" }, { - "id": "urban_5_4", "type": "overmap_terrain", - "name": "house", + "id": "urban_5_4", + "copy-from": "urban_5_4", "sym": "à", "color": "light_gray" }, { - "id": "urban_5_5", "type": "overmap_terrain", - "name": "house", + "id": "urban_5_5", + "copy-from": "urban_5_5", "sym": "à", "color": "light_gray" }, { - "id": "urban_5_6", "type": "overmap_terrain", - "name": "house", + "id": "urban_5_6", + "copy-from": "urban_5_6", "sym": "à", "color": "light_gray" }, { - "id": "urban_6_1", "type": "overmap_terrain", - "name": "house", + "id": "urban_6_1", + "copy-from": "urban_6_1", "sym": "à", "color": "light_gray" }, { - "id": "urban_6_2", "type": "overmap_terrain", - "name": "house", + "id": "urban_6_2", + "copy-from": "urban_6_2", "sym": "à", "color": "light_gray" }, { - "id": "urban_6_3", "type": "overmap_terrain", - "name": "house", + "id": "urban_6_3", + "copy-from": "urban_6_3", "sym": "à", "color": "light_gray" }, { - "id": "urban_6_4", "type": "overmap_terrain", - "name": "house", + "id": "urban_6_4", + "copy-from": "urban_6_4", "sym": "à", "color": "light_gray" }, { - "id": "urban_6_5", "type": "overmap_terrain", - "name": "house", + "id": "urban_6_5", + "copy-from": "urban_6_5", "sym": "à", "color": "light_gray" }, { - "id": "urban_6_6", "type": "overmap_terrain", - "name": "house", + "id": "urban_6_6", + "copy-from": "urban_6_6", "sym": "à", "color": "light_gray" }, { - "id": "urban_7_1", "type": "overmap_terrain", - "name": "house", + "id": "urban_7_1", + "copy-from": "urban_7_1", "sym": "à", "color": "light_gray" }, { - "id": "urban_7_2", "type": "overmap_terrain", - "name": "house", + "id": "urban_7_2", + "copy-from": "urban_7_2", "sym": "à", "color": "light_gray" }, { - "id": "urban_7_3", "type": "overmap_terrain", - "name": "house", + "id": "urban_7_3", + "copy-from": "urban_7_3", "sym": "à", "color": "light_gray" }, { - "id": "urban_7_4", "type": "overmap_terrain", - "name": "house", + "id": "urban_7_4", + "copy-from": "urban_7_4", "sym": "à", "color": "light_gray" }, { - "id": "urban_7_5", "type": "overmap_terrain", - "name": "house", + "id": "urban_7_5", + "copy-from": "urban_7_5", "sym": "à", "color": "light_gray" }, { - "id": "urban_7_6", "type": "overmap_terrain", - "name": "house", + "id": "urban_7_6", + "copy-from": "urban_7_6", "sym": "à", "color": "light_gray" }, { - "id": "urban_8_1", "type": "overmap_terrain", - "name": "house", + "id": "urban_8_1", + "copy-from": "urban_8_1", "sym": "à", "color": "light_gray" }, { - "id": "urban_8_2", "type": "overmap_terrain", - "name": "house", + "id": "urban_8_2", + "copy-from": "urban_8_2", "sym": "à", "color": "light_gray" }, { - "id": "urban_8_3", "type": "overmap_terrain", - "name": "house", + "id": "urban_8_3", + "copy-from": "urban_8_3", "sym": "à", "color": "light_gray" }, { - "id": "urban_8_4", "type": "overmap_terrain", - "name": "house", + "id": "urban_8_4", + "copy-from": "urban_8_4", "sym": "à", "color": "light_gray" }, { - "id": "urban_8_6", "type": "overmap_terrain", - "name": "house", + "id": "urban_8_6", + "copy-from": "urban_8_6", "sym": "à", "color": "light_gray" }, { - "id": "urban_9_1", "type": "overmap_terrain", - "name": "house", + "id": "urban_9_1", + "copy-from": "urban_9_1", "sym": "à", "color": "light_gray" }, { - "id": "urban_9_2", "type": "overmap_terrain", - "name": "house", + "id": "urban_9_2", + "copy-from": "urban_9_2", "sym": "à", "color": "light_gray" }, { - "id": "urban_9_3", "type": "overmap_terrain", - "name": "house", + "id": "urban_9_3", + "copy-from": "urban_9_3", "sym": "à", "color": "light_gray" }, { - "id": "urban_9_4", "type": "overmap_terrain", - "name": "house", + "id": "urban_9_4", + "copy-from": "urban_9_4", "sym": "à", "color": "light_gray" }, { - "id": "urban_9_5", "type": "overmap_terrain", - "name": "house", + "id": "urban_9_5", + "copy-from": "urban_9_5", "sym": "à", "color": "light_gray" }, { - "id": "urban_9_6", "type": "overmap_terrain", - "name": "house", + "id": "urban_9_6", + "copy-from": "urban_9_6", "sym": "à", "color": "light_gray" }, { - "id": "urban_10_1", "type": "overmap_terrain", - "name": "house", + "id": "urban_10_1", + "copy-from": "urban_10_1", "sym": "à", "color": "light_gray" }, { - "id": "urban_10_2", "type": "overmap_terrain", - "name": "house", + "id": "urban_10_2", + "copy-from": "urban_10_2", "sym": "à", "color": "light_gray" }, { - "id": "urban_10_3", "type": "overmap_terrain", - "name": "house", + "id": "urban_10_3", + "copy-from": "urban_10_3", "sym": "à", "color": "light_gray" }, { - "id": "urban_10_4", "type": "overmap_terrain", - "name": "house", + "id": "urban_10_4", + "copy-from": "urban_10_4", "sym": "à", "color": "light_gray" }, { - "id": "urban_10_5", "type": "overmap_terrain", - "name": "house", + "id": "urban_10_5", + "copy-from": "urban_10_5", "sym": "à", "color": "light_gray" }, { - "id": "urban_10_6", "type": "overmap_terrain", - "name": "house", + "id": "urban_10_6", + "copy-from": "urban_10_6", "sym": "à", "color": "light_gray" }, { - "id": "urban_11_1", "type": "overmap_terrain", - "name": "house", + "id": "urban_11_1", + "copy-from": "urban_11_1", "sym": "à", "color": "light_gray" }, { - "id": "urban_11_2", "type": "overmap_terrain", - "name": "house", + "id": "urban_11_2", + "copy-from": "urban_11_2", "sym": "à", "color": "light_gray" }, { - "id": "urban_11_3", "type": "overmap_terrain", - "name": "house", + "id": "urban_11_3", + "copy-from": "urban_11_3", "sym": "à", "color": "light_gray" }, { - "id": "urban_11_4", "type": "overmap_terrain", - "name": "house", + "id": "urban_11_4", + "copy-from": "urban_11_4", "sym": "à", "color": "light_gray" }, { - "id": "urban_11_5", "type": "overmap_terrain", - "name": "house", + "id": "urban_11_5", + "copy-from": "urban_11_5", "sym": "à", "color": "light_gray" }, { - "id": "urban_11_6", "type": "overmap_terrain", - "name": "house", + "id": "urban_11_6", + "copy-from": "urban_11_6", "sym": "à", "color": "light_gray" }, { - "id": "urban_12_1", "type": "overmap_terrain", - "name": "house", + "id": "urban_12_1", + "copy-from": "urban_12_1", "sym": "à", "color": "light_gray" }, { - "id": "urban_12_2", "type": "overmap_terrain", - "name": "house", + "id": "urban_12_2", + "copy-from": "urban_12_2", "sym": "à", "color": "light_gray" }, { - "id": "urban_12_3", "type": "overmap_terrain", - "name": "house", + "id": "urban_12_3", + "copy-from": "urban_12_3", "sym": "à", "color": "light_gray" }, { - "id": "urban_12_4", "type": "overmap_terrain", - "name": "house", + "id": "urban_12_4", + "copy-from": "urban_12_4", "sym": "à", "color": "light_gray" }, { - "id": "urban_12_5", "type": "overmap_terrain", - "name": "house", + "id": "urban_12_5", + "copy-from": "urban_12_5", "sym": "à", "color": "light_gray" }, { - "id": "urban_12_6", "type": "overmap_terrain", - "name": "house", + "id": "urban_12_6", + "copy-from": "urban_12_6", "sym": "à", "color": "light_gray" }, { - "id": "urban_13_1", "type": "overmap_terrain", - "name": "basement", - "sym": "à", - "color": "dark_gray" + "id": "urban_13_1", + "copy-from": "urban_13_1", + "sym": "à" }, { - "id": "urban_13_2", "type": "overmap_terrain", - "name": "basement", - "sym": "à", - "color": "dark_gray" + "id": "urban_13_2", + "copy-from": "urban_13_2", + "sym": "à" }, { - "id": "urban_13_3", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_13_3", + "copy-from": "urban_13_3", + "sym": "à" }, { - "id": "urban_13_4", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_13_4", + "copy-from": "urban_13_4", + "sym": "à" }, { - "id": "urban_13_5", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_13_5", + "copy-from": "urban_13_5", + "sym": "à" }, { - "id": "urban_13_6", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_13_6", + "copy-from": "urban_13_6", + "sym": "à" }, { - "id": "urban_13_7", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_13_7", + "copy-from": "urban_13_7", + "sym": "à" }, { - "id": "urban_13_8", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_13_8", + "copy-from": "urban_13_8", + "sym": "à" }, { - "id": "urban_13_9", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_13_9", + "copy-from": "urban_13_9", + "sym": "à" }, { - "id": "urban_13_10", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_13_10", + "copy-from": "urban_13_10", + "sym": "à" }, { - "id": "urban_13_11", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_13_11", + "copy-from": "urban_13_11", + "sym": "à" }, { - "id": "urban_13_12", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_13_12", + "copy-from": "urban_13_12", + "sym": "à" }, { - "id": "urban_14_1", "type": "overmap_terrain", - "name": "basement", - "sym": "à", - "color": "dark_gray" + "id": "urban_14_1", + "copy-from": "urban_14_1", + "sym": "à" }, { - "id": "urban_14_2", "type": "overmap_terrain", - "name": "basement", - "sym": "à", - "color": "dark_gray" + "id": "urban_14_2", + "copy-from": "urban_14_2", + "sym": "à" }, { - "id": "urban_14_3", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_14_3", + "copy-from": "urban_14_3", + "sym": "à" }, { - "id": "urban_14_4", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_14_4", + "copy-from": "urban_14_4", + "sym": "à" }, { - "id": "urban_14_5", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_14_5", + "copy-from": "urban_14_5", + "sym": "à" }, { - "id": "urban_14_6", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_14_6", + "copy-from": "urban_14_6", + "sym": "à" }, { - "id": "urban_14_7", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_14_7", + "copy-from": "urban_14_7", + "sym": "à" }, { - "id": "urban_14_8", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_14_8", + "copy-from": "urban_14_8", + "sym": "à" }, { - "id": "urban_14_9", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_14_9", + "copy-from": "urban_14_9", + "sym": "à" }, { - "id": "urban_14_10", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_14_10", + "copy-from": "urban_14_10", + "sym": "à" }, { - "id": "urban_14_11", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_14_11", + "copy-from": "urban_14_11", + "sym": "à" }, { - "id": "urban_14_12", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_14_12", + "copy-from": "urban_14_12", + "sym": "à" }, { - "id": "urban_14_13", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_14_13", + "copy-from": "urban_14_13", + "sym": "à" }, { - "id": "urban_14_14", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_14_14", + "copy-from": "urban_14_14", + "sym": "à" }, { - "id": "urban_15_1", "type": "overmap_terrain", - "name": "house", + "id": "urban_15_1", + "copy-from": "urban_15_1", "sym": "à", "color": "light_gray" }, { - "id": "urban_15_2", "type": "overmap_terrain", - "name": "house", + "id": "urban_15_2", + "copy-from": "urban_15_2", "sym": "à", "color": "light_gray" }, { - "id": "urban_15_3", "type": "overmap_terrain", - "name": "house", + "id": "urban_15_3", + "copy-from": "urban_15_3", "sym": "à", "color": "light_gray" }, { - "id": "urban_15_4", "type": "overmap_terrain", - "name": "house", + "id": "urban_15_4", + "copy-from": "urban_15_4", "sym": "à", "color": "light_gray" }, { - "id": "urban_15_5", "type": "overmap_terrain", - "name": "house", + "id": "urban_15_5", + "copy-from": "urban_15_5", "sym": "à", "color": "light_gray" }, { - "id": "urban_15_6", "type": "overmap_terrain", - "name": "house", + "id": "urban_15_6", + "copy-from": "urban_15_6", "sym": "à", "color": "light_gray" }, { - "id": "urban_16_1", "type": "overmap_terrain", - "name": "house", + "id": "urban_16_1", + "copy-from": "urban_16_1", "sym": "à", "color": "light_gray" }, { - "id": "urban_16_2", "type": "overmap_terrain", - "name": "house", + "id": "urban_16_2", + "copy-from": "urban_16_2", "sym": "à", "color": "light_gray" }, { - "id": "urban_16_3", "type": "overmap_terrain", - "name": "house", + "id": "urban_16_3", + "copy-from": "urban_16_3", "sym": "à", "color": "light_gray" }, { - "id": "urban_16_4", "type": "overmap_terrain", - "name": "house", + "id": "urban_16_4", + "copy-from": "urban_16_4", "sym": "à", "color": "light_gray" }, { - "id": "urban_17_1", "type": "overmap_terrain", - "name": "house", + "id": "urban_17_1", + "copy-from": "urban_17_1", "sym": "à", "color": "light_gray" }, { - "id": "urban_17_2", "type": "overmap_terrain", - "name": "house", + "id": "urban_17_2", + "copy-from": "urban_17_2", "sym": "à", "color": "light_gray" }, { - "id": "urban_17_3", "type": "overmap_terrain", - "name": "house", + "id": "urban_17_3", + "copy-from": "urban_17_3", "sym": "à", "color": "light_gray" }, { - "id": "urban_17_4", "type": "overmap_terrain", - "name": "house", + "id": "urban_17_4", + "copy-from": "urban_17_4", "sym": "à", "color": "light_gray" }, { - "id": "urban_18_1", "type": "overmap_terrain", - "name": "basement", - "sym": "à", - "color": "dark_gray" + "id": "urban_18_1", + "copy-from": "urban_18_1", + "sym": "à" }, { - "id": "urban_18_2", "type": "overmap_terrain", - "name": "basement", - "sym": "à", - "color": "dark_gray" + "id": "urban_18_2", + "copy-from": "urban_18_2", + "sym": "à" }, { - "id": "urban_18_3", "type": "overmap_terrain", - "name": "house", + "id": "urban_18_3", + "copy-from": "urban_18_3", "sym": "à", "color": "light_gray" }, { - "id": "urban_18_4", "type": "overmap_terrain", - "name": "house", + "id": "urban_18_4", + "copy-from": "urban_18_4", "sym": "à", "color": "light_gray" }, { - "id": "urban_18_5", "type": "overmap_terrain", - "name": "house", + "id": "urban_18_5", + "copy-from": "urban_18_5", "sym": "à", "color": "light_gray" }, { - "id": "urban_18_6", "type": "overmap_terrain", - "name": "house", + "id": "urban_18_6", + "copy-from": "urban_18_6", "sym": "à", "color": "light_gray" }, { - "id": "urban_18_7", "type": "overmap_terrain", - "name": "house", + "id": "urban_18_7", + "copy-from": "urban_18_7", "sym": "à", "color": "light_gray" }, { - "id": "urban_18_8", "type": "overmap_terrain", - "name": "house", + "id": "urban_18_8", + "copy-from": "urban_18_8", "sym": "à", "color": "light_gray" }, { - "id": "urban_18_9", "type": "overmap_terrain", - "name": "house", + "id": "urban_18_9", + "copy-from": "urban_18_9", "sym": "à", "color": "light_gray" }, { - "id": "urban_18_10", "type": "overmap_terrain", - "name": "house", + "id": "urban_18_10", + "copy-from": "urban_18_10", "sym": "à", "color": "light_gray" }, { - "id": "urban_19_1", "type": "overmap_terrain", - "name": "basement", - "sym": "à", - "color": "dark_gray" + "id": "urban_19_1", + "copy-from": "urban_19_1", + "sym": "à" }, { - "id": "urban_19_2", "type": "overmap_terrain", - "name": "basement", - "sym": "à", - "color": "dark_gray" + "id": "urban_19_2", + "copy-from": "urban_19_2", + "sym": "à" }, { - "id": "urban_19_3", "type": "overmap_terrain", - "name": "house", + "id": "urban_19_3", + "copy-from": "urban_19_3", "sym": "à", "color": "light_gray" }, { - "id": "urban_19_4", "type": "overmap_terrain", - "name": "house", + "id": "urban_19_4", + "copy-from": "urban_19_4", "sym": "à", "color": "light_gray" }, { - "id": "urban_19_5", "type": "overmap_terrain", - "name": "house", + "id": "urban_19_5", + "copy-from": "urban_19_5", "sym": "à", "color": "light_gray" }, { - "id": "urban_19_6", "type": "overmap_terrain", - "name": "house", + "id": "urban_19_6", + "copy-from": "urban_19_6", "sym": "à", "color": "light_gray" }, { - "id": "urban_19_7", "type": "overmap_terrain", - "name": "house", + "id": "urban_19_7", + "copy-from": "urban_19_7", "sym": "à", "color": "light_gray" }, { - "id": "urban_19_8", "type": "overmap_terrain", - "name": "house", + "id": "urban_19_8", + "copy-from": "urban_19_8", "sym": "à", "color": "light_gray" }, { - "id": "urban_19_9", "type": "overmap_terrain", - "name": "house", + "id": "urban_19_9", + "copy-from": "urban_19_9", "sym": "à", "color": "light_gray" }, { - "id": "urban_19_10", "type": "overmap_terrain", - "name": "house", + "id": "urban_19_10", + "copy-from": "urban_19_10", "sym": "à", "color": "light_gray" }, { - "id": "urban_19_11", "type": "overmap_terrain", - "name": "house", + "id": "urban_19_11", + "copy-from": "urban_19_11", "sym": "à", "color": "light_gray" }, { - "id": "urban_19_12", "type": "overmap_terrain", - "name": "house", + "id": "urban_19_12", + "copy-from": "urban_19_12", "sym": "à", "color": "light_gray" }, { - "id": "urban_20_1", "type": "overmap_terrain", - "name": "basement", - "sym": "à", - "color": "dark_gray" + "id": "urban_20_1", + "copy-from": "urban_20_1", + "sym": "à" }, { - "id": "urban_20_2", "type": "overmap_terrain", - "name": "basement", - "sym": "à", - "color": "dark_gray" + "id": "urban_20_2", + "copy-from": "urban_20_2", + "sym": "à" }, { - "id": "urban_20_3", "type": "overmap_terrain", - "name": "house", + "id": "urban_20_3", + "copy-from": "urban_20_3", "sym": "à", "color": "light_gray" }, { - "id": "urban_20_4", "type": "overmap_terrain", - "name": "house", + "id": "urban_20_4", + "copy-from": "urban_20_4", "sym": "à", "color": "light_gray" }, { - "id": "urban_20_5", "type": "overmap_terrain", - "name": "house", + "id": "urban_20_5", + "copy-from": "urban_20_5", "sym": "à", "color": "light_gray" }, { - "id": "urban_20_6", "type": "overmap_terrain", - "name": "house", + "id": "urban_20_6", + "copy-from": "urban_20_6", "sym": "à", "color": "light_gray" }, { - "id": "urban_20_7", "type": "overmap_terrain", - "name": "house", + "id": "urban_20_7", + "copy-from": "urban_20_7", "sym": "à", "color": "light_gray" }, { - "id": "urban_20_8", "type": "overmap_terrain", - "name": "house", + "id": "urban_20_8", + "copy-from": "urban_20_8", "sym": "à", "color": "light_gray" }, { - "id": "urban_21_1", "type": "overmap_terrain", - "name": "house", + "id": "urban_21_1", + "copy-from": "urban_21_1", "sym": "à", "color": "light_gray" }, { - "id": "urban_21_2", "type": "overmap_terrain", - "name": "house", + "id": "urban_21_2", + "copy-from": "urban_21_2", "sym": "à", "color": "light_gray" }, { - "id": "urban_21_3", "type": "overmap_terrain", - "name": "house", + "id": "urban_21_3", + "copy-from": "urban_21_3", "sym": "à", "color": "light_gray" }, { - "id": "urban_21_4", "type": "overmap_terrain", - "name": "house", + "id": "urban_21_4", + "copy-from": "urban_21_4", "sym": "à", "color": "light_gray" }, { - "id": "urban_22_1", "type": "overmap_terrain", - "name": "house", + "id": "urban_22_1", + "copy-from": "urban_22_1", "sym": "à", "color": "light_gray" }, { - "id": "urban_22_2", "type": "overmap_terrain", - "name": "house", + "id": "urban_22_2", + "copy-from": "urban_22_2", "sym": "à", "color": "light_gray" }, { - "id": "urban_22_3", "type": "overmap_terrain", - "name": "house", + "id": "urban_22_3", + "copy-from": "urban_22_3", "sym": "à", "color": "light_gray" }, { - "id": "urban_22_4", "type": "overmap_terrain", - "name": "house", + "id": "urban_22_4", + "copy-from": "urban_22_4", "sym": "à", "color": "light_gray" }, { - "id": "urban_23_1", "type": "overmap_terrain", - "name": "basement", - "sym": "à", - "color": "dark_gray" + "id": "urban_23_1", + "copy-from": "urban_23_1", + "sym": "à" }, { - "id": "urban_23_2", "type": "overmap_terrain", - "name": "basement", - "sym": "à", - "color": "dark_gray" + "id": "urban_23_2", + "copy-from": "urban_23_2", + "sym": "à" }, { - "id": "urban_23_3", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_23_3", + "copy-from": "urban_23_3", + "sym": "à" }, { - "id": "urban_23_4", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_23_4", + "copy-from": "urban_23_4", + "sym": "à" }, { - "id": "urban_23_5", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_23_5", + "copy-from": "urban_23_5", + "sym": "à" }, { - "id": "urban_23_6", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_23_6", + "copy-from": "urban_23_6", + "sym": "à" }, { - "id": "urban_23_7", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_23_7", + "copy-from": "urban_23_7", + "sym": "à" }, { - "id": "urban_23_8", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_23_8", + "copy-from": "urban_23_8", + "sym": "à" }, { - "id": "urban_23_9", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_23_9", + "copy-from": "urban_23_9", + "sym": "à" }, { - "id": "urban_23_10", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_23_10", + "copy-from": "urban_23_10", + "sym": "à" }, { - "id": "urban_23_11", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_23_11", + "copy-from": "urban_23_11", + "sym": "à" }, { - "id": "urban_24_1", "type": "overmap_terrain", - "name": "basement", - "sym": "à", - "color": "dark_gray" + "id": "urban_24_1", + "copy-from": "urban_24_1", + "sym": "à" }, { - "id": "urban_24_2", "type": "overmap_terrain", - "name": "basement", - "sym": "à", - "color": "dark_gray" + "id": "urban_24_2", + "copy-from": "urban_24_2", + "sym": "à" }, { - "id": "urban_24_3", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_24_3", + "copy-from": "urban_24_3", + "sym": "à" }, { - "id": "urban_24_4", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_24_4", + "copy-from": "urban_24_4", + "sym": "à" }, { - "id": "urban_24_5", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_24_5", + "copy-from": "urban_24_5", + "sym": "à" }, { - "id": "urban_24_6", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_24_6", + "copy-from": "urban_24_6", + "sym": "à" }, { - "id": "urban_24_7", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_24_7", + "copy-from": "urban_24_7", + "sym": "à" }, { - "id": "urban_24_8", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_24_8", + "copy-from": "urban_24_8", + "sym": "à" }, { - "id": "urban_24_9", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_24_9", + "copy-from": "urban_24_9", + "sym": "à" }, { - "id": "urban_24_10", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_24_10", + "copy-from": "urban_24_10", + "sym": "à" }, { - "id": "urban_24_11", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_24_11", + "copy-from": "urban_24_11", + "sym": "à" }, { - "id": "urban_24_12", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_24_12", + "copy-from": "urban_24_12", + "sym": "à" }, { - "id": "urban_24_14", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_24_14", + "copy-from": "urban_24_14", + "sym": "à" }, { - "id": "urban_25_1", "type": "overmap_terrain", - "name": "basement", - "sym": "à", - "color": "dark_gray" + "id": "urban_25_1", + "copy-from": "urban_25_1", + "sym": "à" }, { - "id": "urban_25_2", "type": "overmap_terrain", - "name": "basement", - "sym": "à", - "color": "dark_gray" + "id": "urban_25_2", + "copy-from": "urban_25_2", + "sym": "à" }, { - "id": "urban_25_3", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_25_3", + "copy-from": "urban_25_3", + "sym": "à" }, { - "id": "urban_25_4", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_25_4", + "copy-from": "urban_25_4", + "sym": "à" }, { - "id": "urban_25_5", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_25_5", + "copy-from": "urban_25_5", + "sym": "à" }, { - "id": "urban_25_6", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_25_6", + "copy-from": "urban_25_6", + "sym": "à" }, { - "id": "urban_25_7", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_25_7", + "copy-from": "urban_25_7", + "sym": "à" }, { - "id": "urban_25_8", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_25_8", + "copy-from": "urban_25_8", + "sym": "à" }, { - "id": "urban_25_9", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_25_9", + "copy-from": "urban_25_9", + "sym": "à" }, { - "id": "urban_25_10", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_25_10", + "copy-from": "urban_25_10", + "sym": "à" }, { - "id": "urban_25_12", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_25_12", + "copy-from": "urban_25_12", + "sym": "à" }, { - "id": "urban_26_1", "type": "overmap_terrain", - "name": "basement", - "sym": "à", - "color": "dark_gray" + "id": "urban_26_1", + "copy-from": "urban_26_1", + "sym": "à" }, { - "id": "urban_26_2", "type": "overmap_terrain", - "name": "basement", - "sym": "à", - "color": "dark_gray" + "id": "urban_26_2", + "copy-from": "urban_26_2", + "sym": "à" }, { - "id": "urban_26_3", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_26_3", + "copy-from": "urban_26_3", + "sym": "à" }, { - "id": "urban_26_4", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_26_4", + "copy-from": "urban_26_4", + "sym": "à" }, { - "id": "urban_26_5", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_26_5", + "copy-from": "urban_26_5", + "sym": "à" }, { - "id": "urban_26_6", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_26_6", + "copy-from": "urban_26_6", + "sym": "à" }, { - "id": "urban_26_7", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_26_7", + "copy-from": "urban_26_7", + "sym": "à" }, { - "id": "urban_26_8", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_26_8", + "copy-from": "urban_26_8", + "sym": "à" }, { - "id": "urban_26_9", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_26_9", + "copy-from": "urban_26_9", + "sym": "à" }, { - "id": "urban_26_10", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_26_10", + "copy-from": "urban_26_10", + "sym": "à" }, { - "id": "urban_26_11", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_26_11", + "copy-from": "urban_26_11", + "sym": "à" }, { - "id": "urban_26_12", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_26_12", + "copy-from": "urban_26_12", + "sym": "à" }, { - "id": "urban_27_1", "type": "overmap_terrain", - "name": "basement", - "sym": "à", - "color": "dark_gray" + "id": "urban_27_1", + "copy-from": "urban_27_1", + "sym": "à" }, { - "id": "urban_27_2", "type": "overmap_terrain", - "name": "basement", - "sym": "à", - "color": "dark_gray" + "id": "urban_27_2", + "copy-from": "urban_27_2", + "sym": "à" }, { - "id": "urban_27_3", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_27_3", + "copy-from": "urban_27_3", + "sym": "à" }, { - "id": "urban_27_4", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_27_4", + "copy-from": "urban_27_4", + "sym": "à" }, { - "id": "urban_27_5", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_27_5", + "copy-from": "urban_27_5", + "sym": "à" }, { - "id": "urban_27_6", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_27_6", + "copy-from": "urban_27_6", + "sym": "à" }, { - "id": "urban_27_7", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_27_7", + "copy-from": "urban_27_7", + "sym": "à" }, { - "id": "urban_27_8", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_27_8", + "copy-from": "urban_27_8", + "sym": "à" }, { - "id": "urban_27_9", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_27_9", + "copy-from": "urban_27_9", + "sym": "à" }, { - "id": "urban_27_10", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_27_10", + "copy-from": "urban_27_10", + "sym": "à" }, { - "id": "urban_27_11", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_27_11", + "copy-from": "urban_27_11", + "sym": "à" }, { - "id": "urban_27_12", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_27_12", + "copy-from": "urban_27_12", + "sym": "à" }, { - "id": "urban_27_13", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_27_13", + "copy-from": "urban_27_13", + "sym": "à" }, { - "id": "urban_28_1", "type": "overmap_terrain", - "name": "basement", - "sym": "à", - "color": "dark_gray" + "id": "urban_28_1", + "copy-from": "urban_28_1", + "sym": "à" }, { - "id": "urban_28_2", "type": "overmap_terrain", - "name": "basement", - "sym": "à", - "color": "dark_gray" + "id": "urban_28_2", + "copy-from": "urban_28_2", + "sym": "à" }, { - "id": "urban_28_3", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_28_3", + "copy-from": "urban_28_3", + "sym": "à" }, { - "id": "urban_28_4", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_28_4", + "copy-from": "urban_28_4", + "sym": "à" }, { - "id": "urban_28_5", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_28_5", + "copy-from": "urban_28_5", + "sym": "à" }, { - "id": "urban_28_6", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_28_6", + "copy-from": "urban_28_6", + "sym": "à" }, { - "id": "urban_28_7", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_28_7", + "copy-from": "urban_28_7", + "sym": "à" }, { - "id": "urban_28_8", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_28_8", + "copy-from": "urban_28_8", + "sym": "à" }, { - "id": "urban_28_9", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_28_9", + "copy-from": "urban_28_9", + "sym": "à" }, { - "id": "urban_28_10", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_28_10", + "copy-from": "urban_28_10", + "sym": "à" }, { - "id": "urban_28_11", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_28_11", + "copy-from": "urban_28_11", + "sym": "à" }, { - "id": "urban_29_1", "type": "overmap_terrain", - "name": "basement", - "sym": "à", - "color": "dark_gray" + "id": "urban_29_1", + "copy-from": "urban_29_1", + "sym": "à" }, { - "id": "urban_29_2", "type": "overmap_terrain", - "name": "basement", - "sym": "à", - "color": "dark_gray" + "id": "urban_29_2", + "copy-from": "urban_29_2", + "sym": "à" }, { - "id": "urban_29_3", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_29_3", + "copy-from": "urban_29_3", + "sym": "à" }, { - "id": "urban_29_4", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_29_4", + "copy-from": "urban_29_4", + "sym": "à" }, { - "id": "urban_29_5", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_29_5", + "copy-from": "urban_29_5", + "sym": "à" }, { - "id": "urban_29_6", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_29_6", + "copy-from": "urban_29_6", + "sym": "à" }, { - "id": "urban_29_7", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_29_7", + "copy-from": "urban_29_7", + "sym": "à" }, { - "id": "urban_29_8", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_29_8", + "copy-from": "urban_29_8", + "sym": "à" }, { - "id": "urban_29_9", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_29_9", + "copy-from": "urban_29_9", + "sym": "à" }, { - "id": "urban_29_10", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_29_10", + "copy-from": "urban_29_10", + "sym": "à" }, { - "id": "urban_30_1", "type": "overmap_terrain", - "name": "basement", - "sym": "à", - "color": "dark_gray" + "id": "urban_30_1", + "copy-from": "urban_30_1", + "sym": "à" }, { - "id": "urban_30_2", "type": "overmap_terrain", - "name": "subway station", - "sym": "S", - "color": "yellow" + "id": "urban_30_2", + "copy-from": "urban_30_2", + "sym": "S" }, { - "id": "urban_30_3", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_30_3", + "copy-from": "urban_30_3", + "sym": "à" }, { - "id": "urban_30_4", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_30_4", + "copy-from": "urban_30_4", + "sym": "à" }, { - "id": "urban_30_5", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_30_5", + "copy-from": "urban_30_5", + "sym": "à" }, { - "id": "urban_30_6", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_30_6", + "copy-from": "urban_30_6", + "sym": "à" }, { - "id": "urban_30_7", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_30_7", + "copy-from": "urban_30_7", + "sym": "à" }, { - "id": "urban_30_8", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_30_8", + "copy-from": "urban_30_8", + "sym": "à" }, { - "id": "urban_30_9", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_30_9", + "copy-from": "urban_30_9", + "sym": "à" }, { - "id": "urban_30_10", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_30_10", + "copy-from": "urban_30_10", + "sym": "à" }, { - "id": "urban_31_1", "type": "overmap_terrain", - "name": "police station", - "sym": "ÿ", - "color": "h_yellow" + "id": "urban_31_1", + "copy-from": "urban_31_1", + "sym": "ÿ" }, { - "id": "urban_31_2", "type": "overmap_terrain", - "name": "police station", - "sym": "ÿ", - "color": "h_yellow" + "id": "urban_31_2", + "copy-from": "urban_31_2", + "sym": "ÿ" }, { - "id": "urban_31_3", "type": "overmap_terrain", - "name": "police station", - "sym": "ÿ", - "color": "h_yellow" + "id": "urban_31_3", + "copy-from": "urban_31_3", + "sym": "ÿ" }, { - "id": "urban_31_4", "type": "overmap_terrain", - "name": "police station", - "sym": "ÿ", - "color": "h_yellow" + "id": "urban_31_4", + "copy-from": "urban_31_4", + "sym": "ÿ" }, { - "id": "urban_31_5", "type": "overmap_terrain", - "name": "police station", - "sym": "ÿ", - "color": "h_yellow" + "id": "urban_31_5", + "copy-from": "urban_31_5", + "sym": "ÿ" }, { - "id": "urban_31_6", "type": "overmap_terrain", - "name": "police station", - "sym": "ÿ", - "color": "h_yellow" + "id": "urban_31_6", + "copy-from": "urban_31_6", + "sym": "ÿ" }, { - "id": "urban_31_7", "type": "overmap_terrain", - "name": "police station", - "sym": "ÿ", - "color": "h_yellow" + "id": "urban_31_7", + "copy-from": "urban_31_7", + "sym": "ÿ" }, { - "id": "urban_31_8", "type": "overmap_terrain", - "name": "police station", - "sym": "ÿ", - "color": "h_yellow" + "id": "urban_31_8", + "copy-from": "urban_31_8", + "sym": "ÿ" }, { - "id": "urban_31_9", "type": "overmap_terrain", - "name": "police station", - "sym": "ÿ", - "color": "h_yellow" + "id": "urban_31_9", + "copy-from": "urban_31_9", + "sym": "ÿ" }, { - "id": "urban_31_10", "type": "overmap_terrain", - "name": "police station", - "sym": "ÿ", - "color": "h_yellow" + "id": "urban_31_10", + "copy-from": "urban_31_10", + "sym": "ÿ" }, { - "id": "urban_31_11", "type": "overmap_terrain", - "name": "police station", - "sym": "ÿ", - "color": "h_yellow" + "id": "urban_31_11", + "copy-from": "urban_31_11", + "sym": "ÿ" }, { - "id": "urban_31_12", "type": "overmap_terrain", - "name": "police station", - "sym": "ÿ", - "color": "h_yellow" + "id": "urban_31_12", + "copy-from": "urban_31_12", + "sym": "ÿ" }, { - "id": "urban_31_13", "type": "overmap_terrain", - "name": "police station", - "sym": "ÿ", - "color": "h_yellow" + "id": "urban_31_13", + "copy-from": "urban_31_13", + "sym": "ÿ" }, { - "id": "urban_31_15", "type": "overmap_terrain", - "name": "police station", - "sym": "ÿ", - "color": "h_yellow" + "id": "urban_31_15", + "copy-from": "urban_31_15", + "sym": "ÿ" }, { - "id": "urban_31_16", "type": "overmap_terrain", - "name": "police station", - "sym": "ÿ", - "color": "h_yellow" + "id": "urban_31_16", + "copy-from": "urban_31_16", + "sym": "ÿ" }, { - "id": "urban_31_17", "type": "overmap_terrain", - "name": "police station", - "sym": "ÿ", - "color": "h_yellow" + "id": "urban_31_17", + "copy-from": "urban_31_17", + "sym": "ÿ" }, { - "id": "urban_31_19", "type": "overmap_terrain", - "name": "police station", - "sym": "ÿ", - "color": "h_yellow" + "id": "urban_31_19", + "copy-from": "urban_31_19", + "sym": "ÿ" }, { - "id": "urban_32_1", "type": "overmap_terrain", - "name": "fire station", - "sym": "Æ", - "color": "red" + "id": "urban_32_1", + "copy-from": "urban_32_1", + "sym": "Æ" }, { - "id": "urban_32_2", "type": "overmap_terrain", - "name": "fire station", - "sym": "Æ", - "color": "red" + "id": "urban_32_2", + "copy-from": "urban_32_2", + "sym": "Æ" }, { - "id": "urban_32_3", "type": "overmap_terrain", - "name": "fire station", - "sym": "Æ", - "color": "red" + "id": "urban_32_3", + "copy-from": "urban_32_3", + "sym": "Æ" }, { - "id": "urban_32_4", "type": "overmap_terrain", - "name": "fire station", - "sym": "Æ", - "color": "red" + "id": "urban_32_4", + "copy-from": "urban_32_4", + "sym": "Æ" }, { - "id": "urban_32_5", "type": "overmap_terrain", - "name": "fire station", - "sym": "Æ", - "color": "red" + "id": "urban_32_5", + "copy-from": "urban_32_5", + "sym": "Æ" }, { - "id": "urban_32_6", "type": "overmap_terrain", - "name": "fire station", - "sym": "Æ", - "color": "red" + "id": "urban_32_6", + "copy-from": "urban_32_6", + "sym": "Æ" }, { - "id": "urban_32_7", "type": "overmap_terrain", - "name": "fire station", - "sym": "Æ", - "color": "red" + "id": "urban_32_7", + "copy-from": "urban_32_7", + "sym": "Æ" }, { - "id": "urban_32_8", "type": "overmap_terrain", - "name": "fire station", - "sym": "Æ", - "color": "red" + "id": "urban_32_8", + "copy-from": "urban_32_8", + "sym": "Æ" }, { - "id": "urban_32_9", "type": "overmap_terrain", - "name": "fire station", - "sym": "Æ", - "color": "red" + "id": "urban_32_9", + "copy-from": "urban_32_9", + "sym": "Æ" }, { - "id": "urban_32_10", "type": "overmap_terrain", - "name": "fire station", - "sym": "Æ", - "color": "red" + "id": "urban_32_10", + "copy-from": "urban_32_10", + "sym": "Æ" }, { - "id": "urban_32_11", "type": "overmap_terrain", - "name": "fire station", - "sym": "Æ", - "color": "red" + "id": "urban_32_11", + "copy-from": "urban_32_11", + "sym": "Æ" }, { - "id": "urban_32_12", "type": "overmap_terrain", - "name": "fire station", - "sym": "Æ", - "color": "red" + "id": "urban_32_12", + "copy-from": "urban_32_12", + "sym": "Æ" }, { - "id": "urban_32_13", "type": "overmap_terrain", - "name": "fire station", - "sym": "Æ", - "color": "red" + "id": "urban_32_13", + "copy-from": "urban_32_13", + "sym": "Æ" }, { - "id": "urban_32_14", "type": "overmap_terrain", - "name": "fire station", - "sym": "Æ", - "color": "red" + "id": "urban_32_14", + "copy-from": "urban_32_14", + "sym": "Æ" }, { - "id": "urban_32_15", "type": "overmap_terrain", - "name": "fire station", - "sym": "Æ", - "color": "red" + "id": "urban_32_15", + "copy-from": "urban_32_15", + "sym": "Æ" }, { - "id": "urban_32_16", "type": "overmap_terrain", - "name": "fire station", - "sym": "Æ", - "color": "red" + "id": "urban_32_16", + "copy-from": "urban_32_16", + "sym": "Æ" }, { - "id": "urban_32_17", "type": "overmap_terrain", - "name": "fire station", - "sym": "Æ", - "color": "red" + "id": "urban_32_17", + "copy-from": "urban_32_17", + "sym": "Æ" }, { - "id": "urban_32_18", "type": "overmap_terrain", - "name": "fire station", - "sym": "Æ", - "color": "red" + "id": "urban_32_18", + "copy-from": "urban_32_18", + "sym": "Æ" }, { - "id": "urban_32_19", "type": "overmap_terrain", - "name": "fire station", - "sym": "Æ", - "color": "red" + "id": "urban_32_19", + "copy-from": "urban_32_19", + "sym": "Æ" }, { - "id": "urban_32_20", "type": "overmap_terrain", - "name": "fire station", - "sym": "Æ", - "color": "red" + "id": "urban_32_20", + "copy-from": "urban_32_20", + "sym": "Æ" }, { - "id": "urban_32_21", "type": "overmap_terrain", - "name": "fire station", - "sym": "Æ", - "color": "red" + "id": "urban_32_21", + "copy-from": "urban_32_21", + "sym": "Æ" }, { - "id": "urban_33_1", "type": "overmap_terrain", - "name": "hotel", - "sym": "ô", - "color": "light_blue" + "id": "urban_33_1", + "copy-from": "urban_33_1", + "sym": "ô" }, { - "id": "urban_33_2", "type": "overmap_terrain", - "name": "hotel", - "sym": "ô", - "color": "light_blue" + "id": "urban_33_2", + "copy-from": "urban_33_2", + "sym": "ô" }, { - "id": "urban_33_3", "type": "overmap_terrain", - "name": "hotel", - "sym": "ô", - "color": "light_blue" + "id": "urban_33_3", + "copy-from": "urban_33_3", + "sym": "ô" }, { - "id": "urban_33_4", "type": "overmap_terrain", - "name": "hotel", - "sym": "ô", - "color": "light_blue" + "id": "urban_33_4", + "copy-from": "urban_33_4", + "sym": "ô" }, { - "id": "urban_33_5", "type": "overmap_terrain", - "name": "hotel", - "sym": "ô", - "color": "light_blue" + "id": "urban_33_5", + "copy-from": "urban_33_5", + "sym": "ô" }, { - "id": "urban_33_6", "type": "overmap_terrain", - "name": "hotel", - "sym": "ô", - "color": "light_blue" + "id": "urban_33_6", + "copy-from": "urban_33_6", + "sym": "ô" }, { - "id": "urban_33_7", "type": "overmap_terrain", - "name": "hotel", - "sym": "ô", - "color": "light_blue" + "id": "urban_33_7", + "copy-from": "urban_33_7", + "sym": "ô" }, { - "id": "urban_33_8", "type": "overmap_terrain", - "name": "hotel", - "sym": "ô", - "color": "light_blue" + "id": "urban_33_8", + "copy-from": "urban_33_8", + "sym": "ô" }, { - "id": "urban_33_9", "type": "overmap_terrain", - "name": "hotel", - "sym": "ô", - "color": "light_blue" + "id": "urban_33_9", + "copy-from": "urban_33_9", + "sym": "ô" }, { - "id": "urban_33_10", "type": "overmap_terrain", - "name": "hotel", - "sym": "ô", - "color": "light_blue" + "id": "urban_33_10", + "copy-from": "urban_33_10", + "sym": "ô" }, { - "id": "urban_33_11", "type": "overmap_terrain", - "name": "hotel", - "sym": "ô", - "color": "light_blue" + "id": "urban_33_11", + "copy-from": "urban_33_11", + "sym": "ô" }, { - "id": "urban_33_12", "type": "overmap_terrain", - "name": "hotel", - "sym": "ô", - "color": "light_blue" + "id": "urban_33_12", + "copy-from": "urban_33_12", + "sym": "ô" }, { - "id": "urban_33_13", "type": "overmap_terrain", - "name": "hotel", - "sym": "ô", - "color": "light_blue" + "id": "urban_33_13", + "copy-from": "urban_33_13", + "sym": "ô" }, { - "id": "urban_33_14", "type": "overmap_terrain", - "name": "hotel", - "sym": "ô", - "color": "light_blue" + "id": "urban_33_14", + "copy-from": "urban_33_14", + "sym": "ô" }, { - "id": "urban_33_15", "type": "overmap_terrain", - "name": "hotel", - "sym": "ô", - "color": "light_blue" + "id": "urban_33_15", + "copy-from": "urban_33_15", + "sym": "ô" }, { - "id": "urban_33_16", "type": "overmap_terrain", - "name": "hotel", - "sym": "ô", - "color": "light_blue" + "id": "urban_33_16", + "copy-from": "urban_33_16", + "sym": "ô" }, { - "id": "urban_33_17", "type": "overmap_terrain", - "name": "hotel", - "sym": "ô", - "color": "light_blue" + "id": "urban_33_17", + "copy-from": "urban_33_17", + "sym": "ô" }, { - "id": "urban_33_18", "type": "overmap_terrain", - "name": "hotel", - "sym": "ô", - "color": "light_blue" + "id": "urban_33_18", + "copy-from": "urban_33_18", + "sym": "ô" }, { - "id": "urban_33_19", "type": "overmap_terrain", - "name": "hotel", - "sym": "ô", - "color": "light_blue" + "id": "urban_33_19", + "copy-from": "urban_33_19", + "sym": "ô" }, { - "id": "urban_33_20", "type": "overmap_terrain", - "name": "hotel", - "sym": "ô", - "color": "light_blue" + "id": "urban_33_20", + "copy-from": "urban_33_20", + "sym": "ô" }, { - "id": "urban_33_21", "type": "overmap_terrain", - "name": "hotel", - "sym": "ô", - "color": "light_blue" + "id": "urban_33_21", + "copy-from": "urban_33_21", + "sym": "ô" }, { - "id": "urban_33_22", "type": "overmap_terrain", - "name": "hotel", - "sym": "ô", - "color": "light_blue" + "id": "urban_33_22", + "copy-from": "urban_33_22", + "sym": "ô" }, { - "id": "urban_33_23", "type": "overmap_terrain", - "name": "hotel", - "sym": "ô", - "color": "light_blue" + "id": "urban_33_23", + "copy-from": "urban_33_23", + "sym": "ô" }, { - "id": "urban_33_24", "type": "overmap_terrain", - "name": "hotel", - "sym": "ô", - "color": "light_blue" + "id": "urban_33_24", + "copy-from": "urban_33_24", + "sym": "ô" }, { - "id": "urban_33_25", "type": "overmap_terrain", - "name": "hotel", - "sym": "ô", - "color": "light_blue" + "id": "urban_33_25", + "copy-from": "urban_33_25", + "sym": "ô" }, { - "id": "urban_33_26", "type": "overmap_terrain", - "name": "hotel", - "sym": "ô", - "color": "light_blue" + "id": "urban_33_26", + "copy-from": "urban_33_26", + "sym": "ô" }, { - "id": "urban_33_27", "type": "overmap_terrain", - "name": "hotel", - "sym": "ô", - "color": "light_blue" + "id": "urban_33_27", + "copy-from": "urban_33_27", + "sym": "ô" }, { - "id": "urban_33_28", "type": "overmap_terrain", - "name": "hotel", - "sym": "ô", - "color": "light_blue" + "id": "urban_33_28", + "copy-from": "urban_33_28", + "sym": "ô" }, { - "id": "urban_33_29", "type": "overmap_terrain", - "name": "hotel", - "sym": "ô", - "color": "light_blue" + "id": "urban_33_29", + "copy-from": "urban_33_29", + "sym": "ô" }, { - "id": "urban_33_30", "type": "overmap_terrain", - "name": "hotel", - "sym": "ô", - "color": "light_blue" + "id": "urban_33_30", + "copy-from": "urban_33_30", + "sym": "ô" }, { - "id": "urban_33_31", "type": "overmap_terrain", - "name": "hotel", - "sym": "ô", - "color": "light_blue" + "id": "urban_33_31", + "copy-from": "urban_33_31", + "sym": "ô" }, { - "id": "urban_33_32", "type": "overmap_terrain", - "name": "hotel", - "sym": "ô", - "color": "light_blue" + "id": "urban_33_32", + "copy-from": "urban_33_32", + "sym": "ô" }, { - "id": "urban_33_34", "type": "overmap_terrain", - "name": "hotel", - "sym": "ô", - "color": "light_blue" + "id": "urban_33_34", + "copy-from": "urban_33_34", + "sym": "ô" }, { - "id": "urban_33_35", "type": "overmap_terrain", - "name": "hotel", - "sym": "ô", - "color": "light_blue" + "id": "urban_33_35", + "copy-from": "urban_33_35", + "sym": "ô" }, { - "id": "urban_33_36", "type": "overmap_terrain", - "name": "hotel", - "sym": "ô", - "color": "light_blue" + "id": "urban_33_36", + "copy-from": "urban_33_36", + "sym": "ô" }, { - "id": "urban_34_1", "type": "overmap_terrain", - "name": "school", - "sym": "Á", - "color": "light_blue" + "id": "urban_34_1", + "copy-from": "urban_34_1", + "sym": "Á" }, { - "id": "urban_34_2", "type": "overmap_terrain", - "name": "school", - "sym": "Á", - "color": "light_blue" + "id": "urban_34_2", + "copy-from": "urban_34_2", + "sym": "Á" }, { - "id": "urban_34_3", "type": "overmap_terrain", - "name": "school", - "sym": "Á", - "color": "light_blue" + "id": "urban_34_3", + "copy-from": "urban_34_3", + "sym": "Á" }, { - "id": "urban_34_4", "type": "overmap_terrain", - "name": "school", - "sym": "Á", - "color": "light_blue" + "id": "urban_34_4", + "copy-from": "urban_34_4", + "sym": "Á" }, { - "id": "urban_34_5", "type": "overmap_terrain", - "name": "school", - "sym": "Á", - "color": "light_blue" + "id": "urban_34_5", + "copy-from": "urban_34_5", + "sym": "Á" }, { - "id": "urban_34_6", "type": "overmap_terrain", - "name": "school", - "sym": "Á", - "color": "light_blue" + "id": "urban_34_6", + "copy-from": "urban_34_6", + "sym": "Á" }, { - "id": "urban_34_7", "type": "overmap_terrain", - "name": "school", - "sym": "Á", - "color": "light_blue" + "id": "urban_34_7", + "copy-from": "urban_34_7", + "sym": "Á" }, { - "id": "urban_34_8", "type": "overmap_terrain", - "name": "school", - "sym": "Á", - "color": "light_blue" + "id": "urban_34_8", + "copy-from": "urban_34_8", + "sym": "Á" }, { - "id": "urban_34_9", "type": "overmap_terrain", - "name": "school", - "sym": "Á", - "color": "light_blue" + "id": "urban_34_9", + "copy-from": "urban_34_9", + "sym": "Á" }, { - "id": "urban_34_10", "type": "overmap_terrain", - "name": "school", - "sym": "Á", - "color": "light_blue" + "id": "urban_34_10", + "copy-from": "urban_34_10", + "sym": "Á" }, { - "id": "urban_34_11", "type": "overmap_terrain", - "name": "school", - "sym": "Á", - "color": "light_blue" + "id": "urban_34_11", + "copy-from": "urban_34_11", + "sym": "Á" }, { - "id": "urban_34_12", "type": "overmap_terrain", - "name": "school", - "sym": "Á", - "color": "light_blue" + "id": "urban_34_12", + "copy-from": "urban_34_12", + "sym": "Á" }, { - "id": "urban_34_13", "type": "overmap_terrain", - "name": "school", - "sym": "Á", - "color": "light_blue" + "id": "urban_34_13", + "copy-from": "urban_34_13", + "sym": "Á" }, { - "id": "urban_34_14", "type": "overmap_terrain", - "name": "school", - "sym": "Á", - "color": "light_blue" + "id": "urban_34_14", + "copy-from": "urban_34_14", + "sym": "Á" }, { - "id": "urban_34_15", "type": "overmap_terrain", - "name": "school", - "sym": "Á", - "color": "light_blue" + "id": "urban_34_15", + "copy-from": "urban_34_15", + "sym": "Á" }, { - "id": "urban_34_16", "type": "overmap_terrain", - "name": "school", - "sym": "Á", - "color": "light_blue" + "id": "urban_34_16", + "copy-from": "urban_34_16", + "sym": "Á" }, { - "id": "urban_34_17", "type": "overmap_terrain", - "name": "school", - "sym": "Á", - "color": "light_blue" + "id": "urban_34_17", + "copy-from": "urban_34_17", + "sym": "Á" }, { - "id": "urban_34_19", "type": "overmap_terrain", - "name": "school", - "sym": "Á", - "color": "light_blue" + "id": "urban_34_19", + "copy-from": "urban_34_19", + "sym": "Á" }, { - "id": "urban_35_1", "type": "overmap_terrain", - "name": "hospital", - "sym": "Á", - "color": "red" + "id": "urban_35_1", + "copy-from": "urban_35_1", + "sym": "Á" }, { - "id": "urban_35_2", "type": "overmap_terrain", - "name": "hospital", - "sym": "Á", - "color": "red" + "id": "urban_35_2", + "copy-from": "urban_35_2", + "sym": "Á" }, { - "id": "urban_35_3", "type": "overmap_terrain", - "name": "hospital", - "sym": "Á", - "color": "red" + "id": "urban_35_3", + "copy-from": "urban_35_3", + "sym": "Á" }, { - "id": "urban_35_4", "type": "overmap_terrain", - "name": "hospital", - "sym": "Á", - "color": "red" + "id": "urban_35_4", + "copy-from": "urban_35_4", + "sym": "Á" }, { - "id": "urban_35_5", "type": "overmap_terrain", - "name": "hospital", - "sym": "Á", - "color": "red" + "id": "urban_35_5", + "copy-from": "urban_35_5", + "sym": "Á" }, { - "id": "urban_35_6", "type": "overmap_terrain", - "name": "hospital", - "sym": "Á", - "color": "red" + "id": "urban_35_6", + "copy-from": "urban_35_6", + "sym": "Á" }, { - "id": "urban_35_7", "type": "overmap_terrain", - "name": "hospital", - "sym": "Á", - "color": "red" + "id": "urban_35_7", + "copy-from": "urban_35_7", + "sym": "Á" }, { - "id": "urban_35_8", "type": "overmap_terrain", - "name": "hospital", - "sym": "Á", - "color": "red" + "id": "urban_35_8", + "copy-from": "urban_35_8", + "sym": "Á" }, { - "id": "urban_35_9", "type": "overmap_terrain", - "name": "hospital", - "sym": "Á", - "color": "red" + "id": "urban_35_9", + "copy-from": "urban_35_9", + "sym": "Á" }, { - "id": "urban_35_10", "type": "overmap_terrain", - "name": "hospital", - "sym": "Á", - "color": "red" + "id": "urban_35_10", + "copy-from": "urban_35_10", + "sym": "Á" }, { - "id": "urban_35_11", "type": "overmap_terrain", - "name": "hospital", - "sym": "Á", - "color": "red" + "id": "urban_35_11", + "copy-from": "urban_35_11", + "sym": "Á" }, { - "id": "urban_35_12", "type": "overmap_terrain", - "name": "hospital", - "sym": "Á", - "color": "red" + "id": "urban_35_12", + "copy-from": "urban_35_12", + "sym": "Á" }, { - "id": "urban_35_13", "type": "overmap_terrain", - "name": "hospital", - "sym": "Á", - "color": "red" + "id": "urban_35_13", + "copy-from": "urban_35_13", + "sym": "Á" }, { - "id": "urban_35_14", "type": "overmap_terrain", - "name": "hospital", - "sym": "Á", - "color": "red" + "id": "urban_35_14", + "copy-from": "urban_35_14", + "sym": "Á" }, { - "id": "urban_35_15", "type": "overmap_terrain", - "name": "hospital", - "sym": "Á", - "color": "red" + "id": "urban_35_15", + "copy-from": "urban_35_15", + "sym": "Á" }, { - "id": "urban_35_16", "type": "overmap_terrain", - "name": "hospital", - "sym": "Á", - "color": "red" + "id": "urban_35_16", + "copy-from": "urban_35_16", + "sym": "Á" }, { - "id": "urban_35_17", "type": "overmap_terrain", - "name": "hospital", - "sym": "Á", - "color": "red" + "id": "urban_35_17", + "copy-from": "urban_35_17", + "sym": "Á" }, { - "id": "urban_35_18", "type": "overmap_terrain", - "name": "hospital", - "sym": "Á", - "color": "red" + "id": "urban_35_18", + "copy-from": "urban_35_18", + "sym": "Á" }, { - "id": "urban_35_19", "type": "overmap_terrain", - "name": "hospital", - "sym": "Á", - "color": "red" + "id": "urban_35_19", + "copy-from": "urban_35_19", + "sym": "Á" }, { - "id": "urban_35_20", "type": "overmap_terrain", - "name": "hospital", - "sym": "Á", - "color": "red" + "id": "urban_35_20", + "copy-from": "urban_35_20", + "sym": "Á" }, { - "id": "urban_35_21", "type": "overmap_terrain", - "name": "hospital", - "sym": "Á", - "color": "red" + "id": "urban_35_21", + "copy-from": "urban_35_21", + "sym": "Á" }, { - "id": "urban_35_22", "type": "overmap_terrain", - "name": "hospital", - "sym": "Á", - "color": "red" + "id": "urban_35_22", + "copy-from": "urban_35_22", + "sym": "Á" }, { - "id": "urban_35_23", "type": "overmap_terrain", - "name": "hospital", - "sym": "Á", - "color": "red" + "id": "urban_35_23", + "copy-from": "urban_35_23", + "sym": "Á" }, { - "id": "urban_36_1", "type": "overmap_terrain", - "name": "projects", - "sym": "Ç", - "color": "light_green" + "id": "urban_36_1", + "copy-from": "urban_36_1", + "sym": "Ç" }, { - "id": "urban_36_2", "type": "overmap_terrain", - "name": "projects", - "sym": "Ç", - "color": "light_green" + "id": "urban_36_2", + "copy-from": "urban_36_2", + "sym": "Ç" }, { - "id": "urban_36_3", "type": "overmap_terrain", - "name": "projects", - "sym": "Ç", - "color": "light_green" + "id": "urban_36_3", + "copy-from": "urban_36_3", + "sym": "Ç" }, { - "id": "urban_36_4", "type": "overmap_terrain", - "name": "projects", - "sym": "Ç", - "color": "light_green" + "id": "urban_36_4", + "copy-from": "urban_36_4", + "sym": "Ç" }, { - "id": "urban_36_5", "type": "overmap_terrain", - "name": "projects", - "sym": "Ç", - "color": "light_green" + "id": "urban_36_5", + "copy-from": "urban_36_5", + "sym": "Ç" }, { - "id": "urban_36_6", "type": "overmap_terrain", - "name": "projects", - "sym": "Ç", - "color": "light_green" + "id": "urban_36_6", + "copy-from": "urban_36_6", + "sym": "Ç" }, { - "id": "urban_36_7", "type": "overmap_terrain", - "name": "projects", - "sym": "Ç", - "color": "light_green" + "id": "urban_36_7", + "copy-from": "urban_36_7", + "sym": "Ç" }, { - "id": "urban_36_8", "type": "overmap_terrain", - "name": "projects", - "sym": "Ç", - "color": "light_green" + "id": "urban_36_8", + "copy-from": "urban_36_8", + "sym": "Ç" }, { - "id": "urban_36_9", "type": "overmap_terrain", - "name": "projects", - "sym": "Ç", - "color": "light_green" + "id": "urban_36_9", + "copy-from": "urban_36_9", + "sym": "Ç" }, { - "id": "urban_36_10", "type": "overmap_terrain", - "name": "projects", - "sym": "Ç", - "color": "light_green" + "id": "urban_36_10", + "copy-from": "urban_36_10", + "sym": "Ç" }, { - "id": "urban_36_11", "type": "overmap_terrain", - "name": "projects", - "sym": "Ç", - "color": "light_green" + "id": "urban_36_11", + "copy-from": "urban_36_11", + "sym": "Ç" }, { - "id": "urban_36_12", "type": "overmap_terrain", - "name": "projects", - "sym": "Ç", - "color": "light_green" + "id": "urban_36_12", + "copy-from": "urban_36_12", + "sym": "Ç" }, { - "id": "urban_36_13", "type": "overmap_terrain", - "name": "projects", - "sym": "Ç", - "color": "light_green" + "id": "urban_36_13", + "copy-from": "urban_36_13", + "sym": "Ç" }, { - "id": "urban_36_14", "type": "overmap_terrain", - "name": "projects", - "sym": "Ç", - "color": "light_green" + "id": "urban_36_14", + "copy-from": "urban_36_14", + "sym": "Ç" }, { - "id": "urban_36_15", "type": "overmap_terrain", - "name": "projects", - "sym": "Ç", - "color": "light_green" + "id": "urban_36_15", + "copy-from": "urban_36_15", + "sym": "Ç" }, { - "id": "urban_36_16", "type": "overmap_terrain", - "name": "projects", - "sym": "Ç", - "color": "light_green" + "id": "urban_36_16", + "copy-from": "urban_36_16", + "sym": "Ç" }, { - "id": "urban_36_17", "type": "overmap_terrain", - "name": "projects", - "sym": "Ç", - "color": "light_green" + "id": "urban_36_17", + "copy-from": "urban_36_17", + "sym": "Ç" }, { - "id": "urban_36_18", "type": "overmap_terrain", - "name": "projects", - "sym": "Ç", - "color": "light_green" + "id": "urban_36_18", + "copy-from": "urban_36_18", + "sym": "Ç" }, { - "id": "urban_36_19", "type": "overmap_terrain", - "name": "projects", - "sym": "Ç", - "color": "light_green" + "id": "urban_36_19", + "copy-from": "urban_36_19", + "sym": "Ç" }, { - "id": "urban_36_20", "type": "overmap_terrain", - "name": "projects", - "sym": "Ç", - "color": "light_green" + "id": "urban_36_20", + "copy-from": "urban_36_20", + "sym": "Ç" }, { - "id": "urban_36_21", "type": "overmap_terrain", - "name": "projects", - "sym": "Ç", - "color": "light_green" + "id": "urban_36_21", + "copy-from": "urban_36_21", + "sym": "Ç" }, { - "id": "urban_36_22", "type": "overmap_terrain", - "name": "projects", - "sym": "Ç", - "color": "light_green" + "id": "urban_36_22", + "copy-from": "urban_36_22", + "sym": "Ç" }, { - "id": "urban_36_23", "type": "overmap_terrain", - "name": "projects", - "sym": "Ç", - "color": "light_green" + "id": "urban_36_23", + "copy-from": "urban_36_23", + "sym": "Ç" }, { - "id": "urban_36_24", "type": "overmap_terrain", - "name": "projects", - "sym": "Ç", - "color": "light_green" + "id": "urban_36_24", + "copy-from": "urban_36_24", + "sym": "Ç" }, { - "id": "urban_36_25", "type": "overmap_terrain", - "name": "projects", - "sym": "Ç", - "color": "light_green" + "id": "urban_36_25", + "copy-from": "urban_36_25", + "sym": "Ç" }, { - "id": "urban_36_26", "type": "overmap_terrain", - "name": "projects", - "sym": "Ç", - "color": "light_green" + "id": "urban_36_26", + "copy-from": "urban_36_26", + "sym": "Ç" }, { - "id": "urban_36_27", "type": "overmap_terrain", - "name": "projects", - "sym": "Ç", - "color": "light_green" + "id": "urban_36_27", + "copy-from": "urban_36_27", + "sym": "Ç" }, { - "id": "urban_36_28", "type": "overmap_terrain", - "name": "projects", - "sym": "Ç", - "color": "light_green" + "id": "urban_36_28", + "copy-from": "urban_36_28", + "sym": "Ç" }, { - "id": "urban_36_29", "type": "overmap_terrain", - "name": "projects", - "sym": "Ç", - "color": "light_green" + "id": "urban_36_29", + "copy-from": "urban_36_29", + "sym": "Ç" }, { - "id": "urban_36_30", "type": "overmap_terrain", - "name": "projects", - "sym": "Ç", - "color": "light_green" + "id": "urban_36_30", + "copy-from": "urban_36_30", + "sym": "Ç" }, { - "id": "urban_36_31", "type": "overmap_terrain", - "name": "projects", - "sym": "Ç", - "color": "light_green" + "id": "urban_36_31", + "copy-from": "urban_36_31", + "sym": "Ç" }, { - "id": "urban_36_32", "type": "overmap_terrain", - "name": "projects", - "sym": "Ç", - "color": "light_green" + "id": "urban_36_32", + "copy-from": "urban_36_32", + "sym": "Ç" }, { - "id": "urban_37_1", "type": "overmap_terrain", - "name": "office tower", + "id": "urban_37_1", + "copy-from": "urban_37_1", "sym": "å", "color": "light_gray" }, { - "id": "urban_37_2", "type": "overmap_terrain", - "name": "office tower", + "id": "urban_37_2", + "copy-from": "urban_37_2", "sym": "å", "color": "light_gray" }, { - "id": "urban_37_3", "type": "overmap_terrain", - "name": "office tower", + "id": "urban_37_3", + "copy-from": "urban_37_3", "sym": "å", "color": "light_gray" }, { - "id": "urban_37_4", "type": "overmap_terrain", - "name": "office tower", + "id": "urban_37_4", + "copy-from": "urban_37_4", "sym": "å", "color": "light_gray" }, { - "id": "urban_37_5", "type": "overmap_terrain", - "name": "office tower", + "id": "urban_37_5", + "copy-from": "urban_37_5", "sym": "å", "color": "light_gray" }, { - "id": "urban_37_6", "type": "overmap_terrain", - "name": "office tower", + "id": "urban_37_6", + "copy-from": "urban_37_6", "sym": "å", "color": "light_gray" }, { - "id": "urban_37_7", "type": "overmap_terrain", - "name": "office tower", + "id": "urban_37_7", + "copy-from": "urban_37_7", "sym": "å", "color": "light_gray" }, { - "id": "urban_37_8", "type": "overmap_terrain", - "name": "office tower", + "id": "urban_37_8", + "copy-from": "urban_37_8", "sym": "å", "color": "light_gray" }, { - "id": "urban_37_9", "type": "overmap_terrain", - "name": "office tower", + "id": "urban_37_9", + "copy-from": "urban_37_9", "sym": "å", "color": "light_gray" }, { - "id": "urban_37_10", "type": "overmap_terrain", - "name": "office tower", + "id": "urban_37_10", + "copy-from": "urban_37_10", "sym": "å", "color": "light_gray" }, { - "id": "urban_37_11", "type": "overmap_terrain", - "name": "office tower", + "id": "urban_37_11", + "copy-from": "urban_37_11", "sym": "å", "color": "light_gray" }, { - "id": "urban_37_12", "type": "overmap_terrain", - "name": "office tower", + "id": "urban_37_12", + "copy-from": "urban_37_12", "sym": "å", "color": "light_gray" }, { - "id": "urban_37_13", "type": "overmap_terrain", - "name": "office tower", + "id": "urban_37_13", + "copy-from": "urban_37_13", "sym": "å", "color": "light_gray" }, { - "id": "urban_37_14", "type": "overmap_terrain", - "name": "office tower", + "id": "urban_37_14", + "copy-from": "urban_37_14", "sym": "å", "color": "light_gray" }, { - "id": "urban_37_15", "type": "overmap_terrain", - "name": "office tower", + "id": "urban_37_15", + "copy-from": "urban_37_15", "sym": "å", "color": "light_gray" }, { - "id": "urban_37_16", "type": "overmap_terrain", - "name": "office tower", + "id": "urban_37_16", + "copy-from": "urban_37_16", "sym": "å", "color": "light_gray" }, { - "id": "urban_37_17", "type": "overmap_terrain", - "name": "office tower", + "id": "urban_37_17", + "copy-from": "urban_37_17", "sym": "å", "color": "light_gray" }, { - "id": "urban_37_18", "type": "overmap_terrain", - "name": "office tower", + "id": "urban_37_18", + "copy-from": "urban_37_18", "sym": "å", "color": "light_gray" }, { - "id": "urban_37_19", "type": "overmap_terrain", - "name": "office tower", + "id": "urban_37_19", + "copy-from": "urban_37_19", "sym": "å", "color": "light_gray" }, { - "id": "urban_37_20", "type": "overmap_terrain", - "name": "office tower", + "id": "urban_37_20", + "copy-from": "urban_37_20", "sym": "å", "color": "light_gray" }, { - "id": "urban_37_21", "type": "overmap_terrain", - "name": "office tower", + "id": "urban_37_21", + "copy-from": "urban_37_21", "sym": "å", "color": "light_gray" }, { - "id": "urban_37_22", "type": "overmap_terrain", - "name": "office tower", + "id": "urban_37_22", + "copy-from": "urban_37_22", "sym": "å", "color": "light_gray" }, { - "id": "urban_37_23", "type": "overmap_terrain", - "name": "office tower", + "id": "urban_37_23", + "copy-from": "urban_37_23", "sym": "å", "color": "light_gray" }, { - "id": "urban_37_24", "type": "overmap_terrain", - "name": "office tower", + "id": "urban_37_24", + "copy-from": "urban_37_24", "sym": "å", "color": "light_gray" }, { - "id": "urban_37_25", "type": "overmap_terrain", - "name": "office tower", + "id": "urban_37_25", + "copy-from": "urban_37_25", "sym": "å", "color": "light_gray" }, { - "id": "urban_37_26", "type": "overmap_terrain", - "name": "office tower", + "id": "urban_37_26", + "copy-from": "urban_37_26", "sym": "å", "color": "light_gray" }, { - "id": "urban_37_27", "type": "overmap_terrain", - "name": "office tower", + "id": "urban_37_27", + "copy-from": "urban_37_27", "sym": "å", "color": "light_gray" }, { - "id": "urban_37_28", "type": "overmap_terrain", - "name": "office tower", + "id": "urban_37_28", + "copy-from": "urban_37_28", "sym": "å", "color": "light_gray" }, { - "id": "urban_37_29", "type": "overmap_terrain", - "name": "office tower", + "id": "urban_37_29", + "copy-from": "urban_37_29", "sym": "å", "color": "light_gray" }, { - "id": "urban_37_30", "type": "overmap_terrain", - "name": "office tower", + "id": "urban_37_30", + "copy-from": "urban_37_30", "sym": "å", "color": "light_gray" }, { - "id": "urban_37_31", "type": "overmap_terrain", - "name": "office tower", + "id": "urban_37_31", + "copy-from": "urban_37_31", "sym": "å", "color": "light_gray" }, { - "id": "urban_37_32", "type": "overmap_terrain", - "name": "office tower", + "id": "urban_37_32", + "copy-from": "urban_37_32", "sym": "å", "color": "light_gray" }, { - "id": "urban_37_33", "type": "overmap_terrain", - "name": "office tower", + "id": "urban_37_33", + "copy-from": "urban_37_33", "sym": "å", "color": "light_gray" }, { - "id": "urban_37_34", "type": "overmap_terrain", - "name": "office tower", + "id": "urban_37_34", + "copy-from": "urban_37_34", "sym": "å", "color": "light_gray" }, { - "id": "urban_37_35", "type": "overmap_terrain", - "name": "office tower", + "id": "urban_37_35", + "copy-from": "urban_37_35", "sym": "å", "color": "light_gray" }, { - "id": "urban_37_36", "type": "overmap_terrain", - "name": "office tower", + "id": "urban_37_36", + "copy-from": "urban_37_36", "sym": "å", "color": "light_gray" }, { - "id": "urban_38_1", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_38_1", + "copy-from": "urban_38_1", + "sym": "à" }, { - "id": "urban_38_2", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_38_2", + "copy-from": "urban_38_2", + "sym": "à" }, { - "id": "urban_38_3", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_38_3", + "copy-from": "urban_38_3", + "sym": "à" }, { - "id": "urban_38_4", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_38_4", + "copy-from": "urban_38_4", + "sym": "à" }, { - "id": "urban_38_5", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_38_5", + "copy-from": "urban_38_5", + "sym": "à" }, { - "id": "urban_38_6", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_38_6", + "copy-from": "urban_38_6", + "sym": "à" }, { - "id": "urban_38_7", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_38_7", + "copy-from": "urban_38_7", + "sym": "à" }, { - "id": "urban_38_8", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_38_8", + "copy-from": "urban_38_8", + "sym": "à" }, { - "id": "urban_38_9", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_38_9", + "copy-from": "urban_38_9", + "sym": "à" }, { - "id": "urban_38_10", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_38_10", + "copy-from": "urban_38_10", + "sym": "à" }, { - "id": "urban_38_11", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_38_11", + "copy-from": "urban_38_11", + "sym": "à" }, { - "id": "urban_38_12", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_38_12", + "copy-from": "urban_38_12", + "sym": "à" }, { - "id": "urban_39_1", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_39_1", + "copy-from": "urban_39_1", + "sym": "à" }, { - "id": "urban_39_2", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_39_2", + "copy-from": "urban_39_2", + "sym": "à" }, { - "id": "urban_39_3", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_39_3", + "copy-from": "urban_39_3", + "sym": "à" }, { - "id": "urban_39_4", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_39_4", + "copy-from": "urban_39_4", + "sym": "à" }, { - "id": "urban_39_5", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_39_5", + "copy-from": "urban_39_5", + "sym": "à" }, { - "id": "urban_39_6", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_39_6", + "copy-from": "urban_39_6", + "sym": "à" }, { - "id": "urban_39_7", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_39_7", + "copy-from": "urban_39_7", + "sym": "à" }, { - "id": "urban_39_8", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_39_8", + "copy-from": "urban_39_8", + "sym": "à" }, { - "id": "urban_39_9", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_39_9", + "copy-from": "urban_39_9", + "sym": "à" }, { - "id": "urban_39_10", "type": "overmap_terrain", - "name": "dense urban", - "sym": "à", - "color": "i_white" + "id": "urban_39_10", + "copy-from": "urban_39_10", + "sym": "à" }, { - "id": "urban_40_1", "type": "overmap_terrain", - "name": "house", + "id": "urban_40_1", + "copy-from": "urban_40_1", "sym": "à", "color": "light_gray" }, { - "id": "urban_40_2", "type": "overmap_terrain", - "name": "house", + "id": "urban_40_2", + "copy-from": "urban_40_2", "sym": "à", "color": "light_gray" }, { - "id": "urban_40_3", "type": "overmap_terrain", - "name": "house", + "id": "urban_40_3", + "copy-from": "urban_40_3", "sym": "à", "color": "light_gray" }, { - "id": "urban_40_4", "type": "overmap_terrain", - "name": "house", + "id": "urban_40_4", + "copy-from": "urban_40_4", "sym": "à", "color": "light_gray" }, { - "id": "urban_40_5", "type": "overmap_terrain", - "name": "house", + "id": "urban_40_5", + "copy-from": "urban_40_5", "sym": "à", "color": "light_gray" }, { - "id": "urban_40_6", "type": "overmap_terrain", - "name": "house", + "id": "urban_40_6", + "copy-from": "urban_40_6", "sym": "à", "color": "light_gray" }, { - "id": "urban_41_1", - "//": "Northwest corner", "type": "overmap_terrain", - "name": "public library", - "sym": "ÿ", - "color": "white" + "id": "urban_41_1", + "copy-from": "urban_41_1", + "sym": "ÿ" }, { - "id": "urban_41_2", - "//": "Northeast corner", "type": "overmap_terrain", - "name": "public library", - "sym": "ÿ", - "color": "white" + "id": "urban_41_2", + "copy-from": "urban_41_2", + "sym": "ÿ" }, { - "id": "urban_41_3", - "//": "Southwest corner", "type": "overmap_terrain", - "name": "public library", - "sym": "ÿ", - "color": "white" + "id": "urban_41_3", + "copy-from": "urban_41_3", + "sym": "ÿ" }, { - "id": "urban_41_4", - "//": "Southeast corner", "type": "overmap_terrain", - "name": "public library", - "sym": "ÿ", - "color": "white" + "id": "urban_41_4", + "copy-from": "urban_41_4", + "sym": "ÿ" }, { - "id": "urban_41_5", - "//": "Northwest corner", "type": "overmap_terrain", - "name": "public library, 2nd floor", - "sym": "ÿ", - "color": "white" + "id": "urban_41_5", + "copy-from": "urban_41_5", + "sym": "ÿ" }, { - "id": "urban_41_6", - "//": "Northeast corner", "type": "overmap_terrain", - "name": "public library, 2nd floor", - "sym": "ÿ", - "color": "white" + "id": "urban_41_6", + "copy-from": "urban_41_6", + "sym": "ÿ" }, { - "id": "urban_41_7", - "//": "Southwest corner", "type": "overmap_terrain", - "name": "public library, 2nd floor", - "sym": "ÿ", - "color": "white" + "id": "urban_41_7", + "copy-from": "urban_41_7", + "sym": "ÿ" }, { - "id": "urban_41_8", - "//": "Southeast corner", "type": "overmap_terrain", - "name": "public library, 2nd floor", - "sym": "ÿ", - "color": "white" + "id": "urban_41_8", + "copy-from": "urban_41_8", + "sym": "ÿ" } ]