test map added

This commit is contained in:
bijx
2026-02-23 15:34:02 -05:00
parent 4788316504
commit bf65a94a73
11 changed files with 77 additions and 0 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 98 KiB

+17
View File
@@ -0,0 +1,17 @@
{
"name": "test",
"nations": [
{
"coordinates": [644, 327],
"name": "test 1"
},
{
"coordinates": [1009, 592],
"name": "test 2"
},
{
"coordinates": [1360, 572],
"name": "test 3"
}
]
}
+1
View File
@@ -21,6 +21,7 @@ var maps = []struct {
Name string
IsTest bool
}{
{Name: "test"},
{Name: "africa"},
{Name: "asia"},
{Name: "australia"},
+1
View File
@@ -319,6 +319,7 @@
"svalmel": "Svalmel",
"manicouagan": "Manicouagan",
"lemnos": "Lemnos",
"test": "Test",
"sierpinski": "Sierpinski",
"thebox": "The Box",
"twolakes": "Two Lakes",
+41
View File
@@ -0,0 +1,41 @@
{
"map": {
"height": 980,
"num_land_tiles": 422065,
"width": 1584
},
"map16x": {
"height": 245,
"num_land_tiles": 24084,
"width": 396
},
"map4x": {
"height": 490,
"num_land_tiles": 102384,
"width": 792
},
"name": "test",
"nations": [
{
"coordinates": [
644,
327
],
"name": "test 1"
},
{
"coordinates": [
1009,
592
],
"name": "test 2"
},
{
"coordinates": [
1360,
572
],
"name": "test 3"
}
]
}
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Binary file not shown.

After

Width:  |  Height:  |  Size: 7.5 KiB

+2
View File
@@ -110,6 +110,7 @@ export enum GameMapType {
Lisbon = "Lisbon",
Manicouagan = "Manicouagan",
Lemnos = "Lemnos",
Test = "Test",
Sierpinski = "Sierpinski",
TheBox = "The Box",
TwoLakes = "Two Lakes",
@@ -190,6 +191,7 @@ export const mapCategories: Record<string, GameMapType[]> = {
GameMapType.Didier,
GameMapType.DidierFrance,
GameMapType.Sierpinski,
GameMapType.Test,
],
};
+1
View File
@@ -58,6 +58,7 @@ const frequency: Partial<Record<GameMapName, number>> = {
Svalmel: 8,
World: 8,
Lemnos: 3,
Test: 10,
TwoLakes: 6,
StraitOfHormuz: 4,
Surrounded: 4,