Add Germany Map and state flags (#4513)

Resolves #4390 

## Description:

- Adds new map, Germany, filed under the New and Europe categories, for
use in Singleplayer and Custom lobbies.
- Adds map to lobby rotation.
- Adds new flags to represent all 16 Federal German states (including a
variant of Bavaria), all to the ISO standard (DE-XX)

Map Info:
Size: 1548x1519, 2,351,412 total. 451,764 water pixels (19.2%), 826,627
impassable pixels (35.2%)
Nations: 16, all of which are Federal German States

Yes, the size has changed and also has impassable terrain added now

<img width="652" height="887" alt="image"
src="https://github.com/user-attachments/assets/6499382e-f073-4ef8-956c-4e80ef09d4b8"
/>
<img width="917" height="905" alt="image"
src="https://github.com/user-attachments/assets/d9c7a532-c2fd-415a-a51d-709be3b43aae"
/>
<img width="922" height="1140" alt="image"
src="https://github.com/user-attachments/assets/fca34d84-414c-4b3f-91ec-f0a21883caa6"
/>

## Please complete the following:

- [x] I have added screenshots for all UI updates
- [x] I process any text displayed to the user through translateText()
and I've added it to the en.json file
- [x] I have added relevant tests to the test directory

## Please put your Discord username so you can be contacted if a bug or
regression is found:

lengy_

Sorry if I've done anything wrong or the files are out of date, I made
the map a week ago, my fork is a mess and I'm still quite new to how
exactly GitHub works.
This commit is contained in:
SpeakIsntThere
2026-07-08 23:26:53 +01:00
committed by GitHub
parent f5ef306d99
commit 901b271acf
28 changed files with 7203 additions and 3 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 415 KiB

+105
View File
@@ -0,0 +1,105 @@
{
"id": "Germany",
"name": "Germany",
"translation_key": "map.germany",
"categories": ["europe", "new"],
"multiplayer_frequency": 5,
"nations": [
{
"coordinates": [688, 396],
"name": "Hamburg",
"strength": 2,
"flag": "DE-HH"
},
{
"coordinates": [717, 311],
"name": "Schleswig-Holstein",
"strength": 2,
"flag": "DE-SH"
},
{
"coordinates": [561, 537],
"name": "Bremen",
"strength": 2,
"flag": "DE-HB"
},
{
"coordinates": [399, 592],
"name": "Lower Saxony",
"strength": 2,
"flag": "DE-NI"
},
{
"coordinates": [336, 803],
"name": "North Rhine-Westphalia",
"strength": 2,
"flag": "DE-NW"
},
{
"coordinates": [279, 1129],
"name": "Saarland",
"strength": 2,
"flag": "DE-SL"
},
{
"coordinates": [362, 1042],
"name": "Rhineland-Palatinate",
"strength": 2,
"flag": "DE-RP"
},
{
"coordinates": [602, 1207],
"name": "Baden-Württemberg",
"strength": 2,
"flag": "DE-BW"
},
{
"coordinates": [627, 900],
"name": "Hesse",
"strength": 2,
"flag": "DE-HE"
},
{
"coordinates": [941, 1139],
"name": "Bavaria",
"strength": 2,
"flag": "DE-BY-L"
},
{
"coordinates": [1077, 836],
"name": "Saxony",
"strength": 2,
"flag": "DE-SN"
},
{
"coordinates": [883, 648],
"name": "Saxony-Anhalt",
"strength": 2,
"flag": "DE-ST"
},
{
"coordinates": [861, 863],
"name": "Thuringia",
"strength": 2,
"flag": "DE-TH"
},
{
"coordinates": [1026, 370],
"name": "Mecklenburg-Vorpommern",
"strength": 2,
"flag": "DE-MV"
},
{
"coordinates": [1189, 590],
"name": "Berlin",
"strength": 2,
"flag": "DE-BE"
},
{
"coordinates": [1254, 708],
"name": "Brandenburg",
"strength": 2,
"flag": "DE-BB"
}
]
}