thinmap added v1

This commit is contained in:
bijx
2026-02-26 02:06:15 -05:00
parent 7ee9810a64
commit e1595bf3a3
11 changed files with 91 additions and 0 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 284 KiB

@@ -0,0 +1,34 @@
{
"name": "thinmap",
"nations": [
{
"coordinates": [5461, 206],
"name": "Loner Island"
},
{
"coordinates": [2802, 164],
"name": "middle island ig"
},
{
"coordinates": [2338, 158],
"name": "fuck you island"
},
{
"coordinates": [1866, 263],
"name": "arrowhead island"
},
{
"coordinates": [1538, 158],
"name": "bra island"
},
{
"coordinates": [1053, 291],
"name": "thongland"
},
{
"coordinates": [236, 58],
"name": "State of Palestine",
"flag": "ps"
}
]
}
+1
View File
@@ -23,6 +23,7 @@ var maps = []struct {
}{
{Name: "test"},
{Name: "twoislands"},
{Name: "thinmap"},
// {Name: "africa"},
// {Name: "asia"},
// {Name: "australia"},
+1
View File
@@ -319,6 +319,7 @@
"svalmel": "Svalmel",
"manicouagan": "Manicouagan",
"lemnos": "Lemnos",
"thinmap": "Thinmap",
"twoislands": "Two Islands",
"test": "Test",
"sierpinski": "Sierpinski",
+49
View File
@@ -0,0 +1,49 @@
{
"map": {
"height": 400,
"num_land_tiles": 458934,
"width": 6000
},
"map16x": {
"height": 100,
"num_land_tiles": 26672,
"width": 1500
},
"map4x": {
"height": 200,
"num_land_tiles": 112056,
"width": 3000
},
"name": "thinmap",
"nations": [
{
"coordinates": [5461, 206],
"name": "Loner Island"
},
{
"coordinates": [2802, 164],
"name": "middle island ig"
},
{
"coordinates": [2338, 158],
"name": "fuck you island"
},
{
"coordinates": [1866, 263],
"name": "arrowhead island"
},
{
"coordinates": [1538, 158],
"name": "bra island"
},
{
"coordinates": [1053, 291],
"name": "thongland"
},
{
"coordinates": [236, 58],
"flag": "ps",
"name": "State of Palestine"
}
]
}
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: 6.8 KiB

+2
View File
@@ -110,6 +110,7 @@ export enum GameMapType {
Lisbon = "Lisbon",
Manicouagan = "Manicouagan",
Lemnos = "Lemnos",
Thinmap = "Thinmap",
TwoIslands = "Two Islands",
Test = "Test",
Sierpinski = "Sierpinski",
@@ -168,6 +169,7 @@ export const mapCategories: Record<string, GameMapType[]> = {
GameMapType.NewYorkCity,
GameMapType.Manicouagan,
GameMapType.Lemnos,
GameMapType.Thinmap,
GameMapType.TwoLakes,
GameMapType.StraitOfHormuz,
GameMapType.AmazonRiver,
+1
View File
@@ -59,6 +59,7 @@ const frequency: Partial<Record<GameMapName, number>> = {
World: 8,
Lemnos: 3,
TwoIslands: 3,
Thinmap: 3,
Test: 10,
TwoLakes: 6,
StraitOfHormuz: 4,