summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/common/othello/maps.ts17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/common/othello/maps.ts b/src/common/othello/maps.ts
index e587b584c7..0a9ff477a6 100644
--- a/src/common/othello/maps.ts
+++ b/src/common/othello/maps.ts
@@ -251,6 +251,23 @@ export const grid: Map = {
'----------'
};
+export const cross: Map = {
+ name: 'Cross',
+ category: '10x10',
+ size: 10,
+ data:
+ ' ---- ' +
+ ' ---- ' +
+ ' ---- ' +
+ '----------' +
+ '----wb----' +
+ '----bw----' +
+ '----------' +
+ ' ---- ' +
+ ' ---- ' +
+ ' ---- '
+};
+
export const sixeight: Map = {
name: '6x8',
category: 'special',