diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2018-03-09 01:02:14 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-03-09 01:02:14 +0900 |
| commit | 4ca14be9db8444a95d49cd127c1dea03008dcac8 (patch) | |
| tree | 003e59d1cb96d0158fd1ad8b423e574014d332c7 /src | |
| parent | v4027 (diff) | |
| parent | Add Two board map (diff) | |
| download | misskey-4ca14be9db8444a95d49cd127c1dea03008dcac8.tar.gz misskey-4ca14be9db8444a95d49cd127c1dea03008dcac8.tar.bz2 misskey-4ca14be9db8444a95d49cd127c1dea03008dcac8.zip | |
Merge pull request #1202 from syuilo/othello-two-board-map
Add Two board map
Diffstat (limited to 'src')
| -rw-r--r-- | src/common/othello/maps.ts | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/common/othello/maps.ts b/src/common/othello/maps.ts index 67fcb82601..1c9ddc8677 100644 --- a/src/common/othello/maps.ts +++ b/src/common/othello/maps.ts @@ -356,3 +356,27 @@ export const bigBoard: Map = { '----------------' + '----------------' }; + +export const twoBoard: Map = { + name: 'Two board', + category: 'special', + size: 17, + data: + '-------- --------' + + '-------- --------' + + '-------- --------' + + '---wb--- ---wb---' + + '---bw--- ---bw---' + + '-------- --------' + + '-------- --------' + + '-------- --------' + + ' ' + + ' ' + + ' ' + + ' ' + + ' ' + + ' ' + + ' ' + + ' ' + + ' ' +}; |