summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAya Morisawa <AyaMorisawa4869@gmail.com>2018-03-09 00:47:41 +0900
committerGitHub <noreply@github.com>2018-03-09 00:47:41 +0900
commitbef678df9579cf3bc173aa2e7af7753ec755bd5d (patch)
treeef25621ba5411576491ab3df4622f18f654b3fdd /src
parentv4023 (diff)
downloadmisskey-bef678df9579cf3bc173aa2e7af7753ec755bd5d.tar.gz
misskey-bef678df9579cf3bc173aa2e7af7753ec755bd5d.tar.bz2
misskey-bef678df9579cf3bc173aa2e7af7753ec755bd5d.zip
Add 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..02fe4562fb 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-------' +
+ '----------------' +
+ '----------------' +
+ '----------------' +
+ '----------------' +
+ '----------------' +
+ '----------------' +
+ '----------------' +
+};