summaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
Diffstat (limited to 'src/common')
-rw-r--r--src/common/othello/maps.ts23
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-------' +
+ '----------------' +
+ '----------------' +
+ '----------------' +
+ '----------------' +
+ '----------------' +
+ '----------------' +
+ '----------------'
+};