diff options
Diffstat (limited to 'src/common')
| -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---' + + '-------- --------' + + '-------- --------' + + '-------- --------' + + ' ' + + ' ' + + ' ' + + ' ' + + ' ' + + ' ' + + ' ' + + ' ' + + ' ' +}; |