diff options
| author | Aya Morisawa <AyaMorisawa4869@gmail.com> | 2018-03-09 00:47:41 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-03-09 00:47:41 +0900 |
| commit | bef678df9579cf3bc173aa2e7af7753ec755bd5d (patch) | |
| tree | ef25621ba5411576491ab3df4622f18f654b3fdd /src | |
| parent | v4023 (diff) | |
| download | misskey-bef678df9579cf3bc173aa2e7af7753ec755bd5d.tar.gz misskey-bef678df9579cf3bc173aa2e7af7753ec755bd5d.tar.bz2 misskey-bef678df9579cf3bc173aa2e7af7753ec755bd5d.zip | |
Add 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..02fe4562fb 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-------' + + '----------------' + + '----------------' + + '----------------' + + '----------------' + + '----------------' + + '----------------' + + '----------------' + +}; |