diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2018-03-09 00:50:21 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-03-09 00:50:21 +0900 |
| commit | 0cb7c859fc12c7039cc455ca1cd045e203f71432 (patch) | |
| tree | 8ee344afb3098ea247e0e1e19f4e33f3818ba331 /src | |
| parent | v4023 (diff) | |
| parent | Remove trailing + (diff) | |
| download | misskey-0cb7c859fc12c7039cc455ca1cd045e203f71432.tar.gz misskey-0cb7c859fc12c7039cc455ca1cd045e203f71432.tar.bz2 misskey-0cb7c859fc12c7039cc455ca1cd045e203f71432.zip | |
Merge pull request #1201 from syuilo/othello-big-board-map
Othello big board map
Diffstat (limited to 'src')
| -rw-r--r-- | src/common/othello/maps.ts | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/common/othello/maps.ts b/src/common/othello/maps.ts index 2f8dc5ff79..67fcb82601 100644 --- a/src/common/othello/maps.ts +++ b/src/common/othello/maps.ts @@ -333,3 +333,26 @@ export const iphonex: Map = { ' -------- ' + ' ------ ' }; + +export const bigBoard: Map = { + name: 'Big board', + category: 'special', + size: 16, + data: + '----------------' + + '----------------' + + '----------------' + + '----------------' + + '----------------' + + '----------------' + + '----------------' + + '-------wb-------' + + '-------bw-------' + + '----------------' + + '----------------' + + '----------------' + + '----------------' + + '----------------' + + '----------------' + + '----------------' +}; |