diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/common/othello/maps.ts | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/common/othello/maps.ts b/src/common/othello/maps.ts index d8f3154a0f..f25342f364 100644 --- a/src/common/othello/maps.ts +++ b/src/common/othello/maps.ts @@ -242,6 +242,22 @@ export const x: Map = { ] }; +export const squareParty: Map = { + name: 'Square Party', + category: '8x8', + author: 'syuilo', + data: [ + '--------', + '-wwwbbb-', + '-w-wb-b-', + '-wwwbbb-', + '-bbbwww-', + '-b-bw-w-', + '-bbbwww-', + '--------' + ] +}; + export const minesweeper: Map = { name: 'Minesweeper', category: '8x8', |