diff options
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-------' + + '----------------' + + '----------------' + + '----------------' + + '----------------' + + '----------------' + + '----------------' + + '----------------' + +}; |