-
Notifications
You must be signed in to change notification settings - Fork 971
Added 1 new map 2000x2000px (Movtoc) to Fantasy section #3409
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,140 @@ | ||
| { | ||
| "map": { | ||
| "height": 2000, | ||
| "num_land_tiles": 2248304, | ||
| "width": 2000 | ||
| }, | ||
| "map16x": { | ||
| "height": 500, | ||
| "num_land_tiles": 135654, | ||
| "width": 500 | ||
| }, | ||
| "map4x": { | ||
| "height": 1000, | ||
| "num_land_tiles": 555450, | ||
| "width": 1000 | ||
| }, | ||
| "name": "movtoc", | ||
| "nations": [ | ||
| { | ||
| "coordinates": [ | ||
| 631, | ||
| 123 | ||
| ], | ||
| "flag": "", | ||
| "name": "Beckrim" | ||
| }, | ||
| { | ||
| "coordinates": [ | ||
| 1295, | ||
| 69 | ||
| ], | ||
| "flag": "", | ||
| "name": "Kachold" | ||
| }, | ||
| { | ||
| "coordinates": [ | ||
| 1949, | ||
| 269 | ||
| ], | ||
| "flag": "", | ||
| "name": "Armtis" | ||
| }, | ||
| { | ||
| "coordinates": [ | ||
| 1589, | ||
| 461 | ||
| ], | ||
| "flag": "", | ||
| "name": "Precksto Isle" | ||
| }, | ||
| { | ||
| "coordinates": [ | ||
| 1055, | ||
| 513 | ||
| ], | ||
| "flag": "", | ||
| "name": "Lemero" | ||
| }, | ||
| { | ||
| "coordinates": [ | ||
| 79, | ||
| 581 | ||
| ], | ||
| "flag": "", | ||
| "name": "Ghanori" | ||
| }, | ||
| { | ||
| "coordinates": [ | ||
| 637, | ||
| 851 | ||
| ], | ||
| "flag": "", | ||
| "name": "Dwarzen" | ||
| }, | ||
| { | ||
| "coordinates": [ | ||
| 1235, | ||
| 793 | ||
| ], | ||
| "flag": "", | ||
| "name": "Silvaz Coast" | ||
| }, | ||
| { | ||
| "coordinates": [ | ||
| 1743, | ||
| 961 | ||
| ], | ||
| "flag": "", | ||
| "name": "Benthakia" | ||
| }, | ||
| { | ||
| "coordinates": [ | ||
| 1197, | ||
| 1145 | ||
| ], | ||
| "flag": "", | ||
| "name": "Ethuluar" | ||
| }, | ||
| { | ||
| "coordinates": [ | ||
| 767, | ||
| 1253 | ||
| ], | ||
| "flag": "", | ||
| "name": "Kennikai" | ||
| }, | ||
| { | ||
| "coordinates": [ | ||
| 1479, | ||
| 1689 | ||
| ], | ||
| "flag": "", | ||
| "name": "Hethkop" | ||
| }, | ||
| { | ||
| "coordinates": [ | ||
| 941, | ||
| 1713 | ||
| ], | ||
| "flag": "", | ||
| "name": "Iafora" | ||
| }, | ||
| { | ||
| "coordinates": [ | ||
| 367, | ||
| 1843 | ||
| ], | ||
| "flag": "", | ||
| "name": "Thenarisar" | ||
| }, | ||
| { | ||
| "coordinates": [ | ||
| 205, | ||
| 1409 | ||
| ], | ||
| "flag": "", | ||
| "name": "Remoltan" | ||
| } | ||
| ] | ||
| } |
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -139,6 +139,7 @@ export enum GameMapType { | |
| Arctic = "Arctic", | ||
| SanFrancisco = "San Francisco", | ||
| Aegean = "Aegean", | ||
| Movtoc = "Movtoc", | ||
| } | ||
|
|
||
| export type GameMapName = keyof typeof GameMapType; | ||
|
|
@@ -203,6 +204,7 @@ export const mapCategories: Record<string, GameMapType[]> = { | |
| GameMapType.Surrounded, | ||
| GameMapType.TradersDream, | ||
| GameMapType.Passage, | ||
| GameMapType.Movtoc, | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Use spaces here so Prettier passes. Line 207 is indented with a tab, which matches the CI Prettier failure. Replace it with the same space indentation used by the surrounding array items. 🧰 Tools🪛 GitHub Actions: 🧪 CI[warning] Prettier formatting issues found by 'npx prettier --check .'. Run 'npx prettier --write .' to fix. 🤖 Prompt for AI Agents |
||
| ], | ||
| arcade: [ | ||
| GameMapType.TheBox, | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fix the indentation here to clear CI.
Line 346 uses a tab while the rest of this JSON block uses spaces, which matches the current Prettier warning in CI. Reformat this entry and rerun
prettier --check.🧰 Tools
🪛 GitHub Actions: 🧪 CI
[warning] Prettier formatting issues found by 'npx prettier --check .'. Run 'npx prettier --write .' to fix.
🤖 Prompt for AI Agents