summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2018-03-09 00:50:21 +0900
committerGitHub <noreply@github.com>2018-03-09 00:50:21 +0900
commit0cb7c859fc12c7039cc455ca1cd045e203f71432 (patch)
tree8ee344afb3098ea247e0e1e19f4e33f3818ba331 /src
parentv4023 (diff)
parentRemove trailing + (diff)
downloadmisskey-0cb7c859fc12c7039cc455ca1cd045e203f71432.tar.gz
misskey-0cb7c859fc12c7039cc455ca1cd045e203f71432.tar.bz2
misskey-0cb7c859fc12c7039cc455ca1cd045e203f71432.zip
Merge pull request #1201 from syuilo/othello-big-board-map
Othello big board map
Diffstat (limited to 'src')
-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-------' +
+ '----------------' +
+ '----------------' +
+ '----------------' +
+ '----------------' +
+ '----------------' +
+ '----------------' +
+ '----------------'
+};