Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added map-generator/assets/maps/dungeon/image.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
41 changes: 41 additions & 0 deletions map-generator/assets/maps/dungeon/info.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
{
"id": "Dungeon",
"name": "Dungeon",
"translation_key": "map.dungeon",
"categories": ["other"],
"multiplayer_frequency": 8,
"nations": [
{
"name": "Dragon",
"coordinates": [1983, 285]
},
{
"name": "Wizard",
"coordinates": [929, 698]
},
{
"name": "Necromancer",
"coordinates": [322, 1096]
},
{
"name": "Skeleton",
"coordinates": [155, 540]
},
{
"name": "Knight",
"coordinates": [1675, 1250]
},
{
"name": "Assassin",
"coordinates": [1170, 89]
},
{
"name": "Alchemist",
"coordinates": [186, 166]
},
{
"name": "Goblin",
"coordinates": [1681, 816]
}
]
}
1 change: 1 addition & 0 deletions resources/lang/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -837,6 +837,7 @@
"deglaciatedantarctica": "Deglaciated Antarctica",
"didier": "Didier",
"didierfrance": "Didier (France)",
"dungeon": "Dungeon",
"dyslexdria": "Dyslexdria",
"eastasia": "East Asia",
"europe": "Europe",
Expand Down
56 changes: 56 additions & 0 deletions resources/maps/dungeon/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
{
"categories": ["other"],
"id": "Dungeon",
"map": {
"height": 1344,
"num_land_tiles": 946048,
"width": 2048
},
"map16x": {
"height": 336,
"num_land_tiles": 59128,
"width": 512
},
"map4x": {
"height": 672,
"num_land_tiles": 236512,
"width": 1024
},
"multiplayer_frequency": 8,
"name": "Dungeon",
"nations": [
{
"coordinates": [1983, 285],
"name": "Dragon"
},
{
"coordinates": [929, 698],
"name": "Wizard"
},
{
"coordinates": [322, 1096],
"name": "Necromancer"
},
{
"coordinates": [155, 540],
"name": "Skeleton"
},
{
"coordinates": [1675, 1250],
"name": "Knight"
},
{
"coordinates": [1170, 89],
"name": "Assassin"
},
{
"coordinates": [186, 166],
"name": "Alchemist"
},
{
"coordinates": [1681, 816],
"name": "Goblin"
}
],
"translation_key": "map.dungeon"
}
1 change: 1 addition & 0 deletions resources/maps/dungeon/map.bin

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions resources/maps/dungeon/map16x.bin

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions resources/maps/dungeon/map4x.bin

Large diffs are not rendered by default.

Binary file added resources/maps/dungeon/thumbnail.webp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletions src/core/game/Maps.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ export enum GameMapType {
DeglaciatedAntarctica = "Deglaciated Antarctica", // map-generator/assets/maps/deglaciatedantarctica/info.json
Didier = "Didier", // map-generator/assets/maps/didier/info.json
DidierFrance = "Didier France", // map-generator/assets/maps/didierfrance/info.json
Dungeon = "Dungeon", // map-generator/assets/maps/dungeon/info.json
Dyslexdria = "Dyslexdria", // map-generator/assets/maps/dyslexdria/info.json
EastAsia = "East Asia", // map-generator/assets/maps/eastasia/info.json
Europe = "Europe", // map-generator/assets/maps/europe/info.json
Expand Down Expand Up @@ -361,6 +362,13 @@ export const maps: readonly MapInfo[] = [
categories: ["other"],
multiplayerFrequency: 1,
},
{
id: "Dungeon",
type: GameMapType.Dungeon,
translationKey: "map.dungeon",
categories: ["other"],
multiplayerFrequency: 8,
},
{
id: "Dyslexdria",
type: GameMapType.Dyslexdria,
Expand Down
Loading