summaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
authorAya Morisawa <AyaMorisawa4869@gmail.com>2018-03-09 02:31:01 +0900
committerGitHub <noreply@github.com>2018-03-09 02:31:01 +0900
commit5e2b1f66ef8c0bc98dbef499bb77d145ccc6bd16 (patch)
treed43025b436d78ba4ad5f587db24d43b05558aa06 /src/common
parentRemove the duplicatd map (diff)
downloadsharkey-5e2b1f66ef8c0bc98dbef499bb77d145ccc6bd16.tar.gz
sharkey-5e2b1f66ef8c0bc98dbef499bb77d145ccc6bd16.tar.bz2
sharkey-5e2b1f66ef8c0bc98dbef499bb77d145ccc6bd16.zip
Add cross map
Diffstat (limited to 'src/common')
-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',