summaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
authorAya Morisawa <AyaMorisawa4869@gmail.com>2018-03-09 03:10:19 +0900
committerGitHub <noreply@github.com>2018-03-09 03:10:19 +0900
commit61d2497e5c06eb8b9624b465bca463391836e8b2 (patch)
treeb637e056c48a7a1993b7731e3dd78a66d6b68cca /src/common
parentMerge pull request #1209 from syuilo/othello-x-map (diff)
downloadmisskey-61d2497e5c06eb8b9624b465bca463391836e8b2.tar.gz
misskey-61d2497e5c06eb8b9624b465bca463391836e8b2.tar.bz2
misskey-61d2497e5c06eb8b9624b465bca463391836e8b2.zip
Add checker 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 977762dea9..434fd75af3 100644
--- a/src/common/othello/maps.ts
+++ b/src/common/othello/maps.ts
@@ -315,6 +315,23 @@ export const walls: Map = {
' bbbbbbbb '
};
+export const checker: Map = {
+ name: 'Checker',
+ category: '10x10',
+ size: 10,
+ data:
+ '----------' +
+ '----------' +
+ '----------' +
+ '---wbwb---' +
+ '---bwbw---' +
+ '---wbwb---' +
+ '---bwbw---' +
+ '----------' +
+ '----------' +
+ '----------'
+};
+
export const sixeight: Map = {
name: '6x8',
category: 'special',