summaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
authorAya Morisawa <AyaMorisawa4869@gmail.com>2018-03-09 01:00:21 +0900
committerGitHub <noreply@github.com>2018-03-09 01:00:21 +0900
commit2f593dfa67ac6cd033987526ddb52cbd3594da4d (patch)
tree003e59d1cb96d0158fd1ad8b423e574014d332c7 /src/common
parentv4027 (diff)
downloadsharkey-2f593dfa67ac6cd033987526ddb52cbd3594da4d.tar.gz
sharkey-2f593dfa67ac6cd033987526ddb52cbd3594da4d.tar.bz2
sharkey-2f593dfa67ac6cd033987526ddb52cbd3594da4d.zip
Add Two board map
Diffstat (limited to 'src/common')
-rw-r--r--src/common/othello/maps.ts24
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---' +
+ '-------- --------' +
+ '-------- --------' +
+ '-------- --------' +
+ ' ' +
+ ' ' +
+ ' ' +
+ ' ' +
+ ' ' +
+ ' ' +
+ ' ' +
+ ' ' +
+ ' '
+};