summaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2018-03-09 03:02:49 +0900
committerGitHub <noreply@github.com>2018-03-09 03:02:49 +0900
commit894c36735a7b34d8f45102adb2570aaf01b4a8de (patch)
treea53e6c71c291876bcd756a83f596b7d9ddbc48ac /src/common
parentv4041 (diff)
parentAdd X map (diff)
downloadmisskey-894c36735a7b34d8f45102adb2570aaf01b4a8de.tar.gz
misskey-894c36735a7b34d8f45102adb2570aaf01b4a8de.tar.bz2
misskey-894c36735a7b34d8f45102adb2570aaf01b4a8de.zip
Merge pull request #1209 from syuilo/othello-x-map
Add X map
Diffstat (limited to 'src/common')
-rw-r--r--src/common/othello/maps.ts15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/common/othello/maps.ts b/src/common/othello/maps.ts
index 0672fc86b0..977762dea9 100644
--- a/src/common/othello/maps.ts
+++ b/src/common/othello/maps.ts
@@ -215,6 +215,21 @@ export const reserved: Map = {
'b------w'
};
+export const x: Map = {
+ name: 'X',
+ category: '8x8',
+ size: 8,
+ data:
+ 'w------b' +
+ '-w----b-' +
+ '--w--b--' +
+ '---wb---' +
+ '---bw---' +
+ '--b--w--' +
+ '-b----w-' +
+ 'b------w'
+};
+
export const tenthtenth: Map = {
name: '10x10',
category: '10x10',