summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2018-03-09 01:02:14 +0900
committerGitHub <noreply@github.com>2018-03-09 01:02:14 +0900
commit4ca14be9db8444a95d49cd127c1dea03008dcac8 (patch)
tree003e59d1cb96d0158fd1ad8b423e574014d332c7 /src
parentv4027 (diff)
parentAdd Two board map (diff)
downloadmisskey-4ca14be9db8444a95d49cd127c1dea03008dcac8.tar.gz
misskey-4ca14be9db8444a95d49cd127c1dea03008dcac8.tar.bz2
misskey-4ca14be9db8444a95d49cd127c1dea03008dcac8.zip
Merge pull request #1202 from syuilo/othello-two-board-map
Add Two board map
Diffstat (limited to 'src')
-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---' +
+ '-------- --------' +
+ '-------- --------' +
+ '-------- --------' +
+ ' ' +
+ ' ' +
+ ' ' +
+ ' ' +
+ ' ' +
+ ' ' +
+ ' ' +
+ ' ' +
+ ' '
+};