Add map More than luck (#4584)

Resolves #4563 

## Description:
- 1344x1348 and ~916000 land tiles
- 35 default (5x7), 400 total
- 5 sided map. Hard to nuke neighboring leafs due to angle. Organic
design.
https://youtu.be/z4xlCXfOW7k
https://discord.com/channels/1284581928254701718/1519889161220522054

## 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:
PlaysBadly

---------

Co-authored-by: Aaron Tidwell <Aaron.Tidwell@gmail.com>
This commit is contained in:
Patrick Plays Badly
2026-07-18 16:16:00 -07:00
committed by GitHub
co-authored by Aaron Tidwell
parent a5480ec7f7
commit c1dfa9641b
9 changed files with 2611 additions and 0 deletions
+9
View File
@@ -72,6 +72,7 @@ export enum GameMapType {
MilkyWay = "MilkyWay", // map-generator/assets/maps/milkyway/info.json
MississippiRiver = "Mississippi River", // map-generator/assets/maps/mississippiriver/info.json
Montreal = "Montreal", // map-generator/assets/maps/montreal/info.json
MoreThanLuck = "More Than Luck", // map-generator/assets/maps/morethanluck/info.json
NewYorkCity = "New York City", // map-generator/assets/maps/newyorkcity/info.json
NileDelta = "Nile Delta", // map-generator/assets/maps/niledelta/info.json
NorthAmerica = "North America", // map-generator/assets/maps/northamerica/info.json
@@ -670,6 +671,14 @@ export const maps: readonly MapInfo[] = [
categories: ["north_america"],
multiplayerFrequency: 6,
},
{
id: "MoreThanLuck",
type: GameMapType.MoreThanLuck,
translationKey: "map.morethanluck",
categories: ["arcade", "fictional", "new"],
multiplayerFrequency: 7,
specialTeamCount: 5,
},
{
id: "NewYorkCity",
type: GameMapType.NewYorkCity,