From bac05fc69b220e5ca6587c4fb271e32ff930bdf5 Mon Sep 17 00:00:00 2001 From: Gabriel Jacques <72448793+gabrielJacq@users.noreply.github.com> Date: Sat, 1 Nov 2025 15:10:29 -0400 Subject: [PATCH] Added cities to the Montreal map (#2207) Added about 10 or so cities to the new montreal map. ## Description: Very minor change, only changed the info.json file for the montreal map, so that the map now comes with more NPCs. This should make the map more challenging and fun in offline mode. There is now 13 nations, spread evenly (as best i could) across the map. ## Please complete the following: - [x] I have added screenshots for all UI updates - there is no ui changes - [x] I process any text displayed to the user through translateText() and I've added it to the en.json file - there is no text displayed change, only new nations. - [x] I have added relevant tests to the test directory - No tests relevant - [x] I confirm I have thoroughly tested these changes and take full responsibility for any bugs introduced ## Please put your Discord username so you can be contacted if a bug or regression is found: Lionhyde --------- Co-authored-by: jrouillard --- map-generator/assets/maps/montreal/info.json | 64 ++++++++++++++++++-- resources/maps/montreal/manifest.json | 64 ++++++++++++++++++-- 2 files changed, 118 insertions(+), 10 deletions(-) diff --git a/map-generator/assets/maps/montreal/info.json b/map-generator/assets/maps/montreal/info.json index a563161e0..f8b074939 100644 --- a/map-generator/assets/maps/montreal/info.json +++ b/map-generator/assets/maps/montreal/info.json @@ -3,21 +3,75 @@ "nations": [ { "coordinates": [800, 430], - "flag": "ca", + "flag": "quebec", "name": "Laval", "strength": 2 }, { "coordinates": [1110, 930], - "flag": "ca", - "name": "Montreal", - "strength": 2 + "flag": "quebec", + "name": "Royal Mount park", + "strength": 1 }, { "coordinates": [1220, 1360], - "flag": "ca", + "flag": "quebec", "name": "Hochelaga Archipelago", "strength": 2 + }, + { + "coordinates": [1080, 980], + "flag": "ca", + "name": "Westmount", + "strength": 1 + }, + { + "coordinates": [1400, 1000], + "flag": "quebec", + "name": "Saint-Lambert", + "strength": 1 + }, + { + "coordinates": [500, 130], + "flag": "quebec", + "name": "Blainville", + "strength": 1 + }, + { + "coordinates": [350, 650], + "flag": "quebec", + "name": "Saint-Eustache", + "strength": 1 + }, + { + "coordinates": [200, 1350], + "flag": "quebec", + "name": "Perrot Island", + "strength": 1 + }, + { + "coordinates": [25, 950], + "flag": "quebec", + "name": "Kanesatake Lands", + "strength": 1 + }, + { + "coordinates": [50, 450], + "flag": "quebec", + "name": "Mirabel", + "strength": 1 + }, + { + "coordinates": [650, 1450], + "flag": "quebec", + "name": "Chateauguay", + "strength": 1 + }, + { + "coordinates": [1330, 300], + "flag": "quebec", + "name": "Pointe-aux-Trembles", + "strength": 1 } ] } diff --git a/resources/maps/montreal/manifest.json b/resources/maps/montreal/manifest.json index 24f5c9c02..1c8acccaf 100644 --- a/resources/maps/montreal/manifest.json +++ b/resources/maps/montreal/manifest.json @@ -18,21 +18,75 @@ "nations": [ { "coordinates": [800, 430], - "flag": "ca", + "flag": "quebec", "name": "Laval", "strength": 2 }, { "coordinates": [1110, 930], - "flag": "ca", - "name": "Montreal", - "strength": 2 + "flag": "quebec", + "name": "Royal Mount park", + "strength": 1 }, { "coordinates": [1220, 1360], - "flag": "ca", + "flag": "quebec", "name": "Hochelaga Archipelago", "strength": 2 + }, + { + "coordinates": [1080, 980], + "flag": "ca", + "name": "Westmount", + "strength": 1 + }, + { + "coordinates": [1400, 1000], + "flag": "quebec", + "name": "Saint-Lambert", + "strength": 1 + }, + { + "coordinates": [500, 130], + "flag": "quebec", + "name": "Blainville", + "strength": 1 + }, + { + "coordinates": [350, 650], + "flag": "quebec", + "name": "Saint-Eustache", + "strength": 1 + }, + { + "coordinates": [200, 1350], + "flag": "quebec", + "name": "Perrot Island", + "strength": 1 + }, + { + "coordinates": [25, 950], + "flag": "quebec", + "name": "Kanesatake Lands", + "strength": 1 + }, + { + "coordinates": [50, 450], + "flag": "quebec", + "name": "Mirabel", + "strength": 1 + }, + { + "coordinates": [650, 1450], + "flag": "quebec", + "name": "Chateauguay", + "strength": 1 + }, + { + "coordinates": [1330, 300], + "flag": "quebec", + "name": "Pointe-aux-Trembles", + "strength": 1 } ] }