summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2018-03-09 02:56:44 +0900
committerGitHub <noreply@github.com>2018-03-09 02:56:44 +0900
commitbd07246af6b8a48cd4a2008ccc15129f3692b1d0 (patch)
treeb694e29a2691f767e26377a6b209c70ccead60fd /src
parentv4038 (diff)
parentAdd reserved map (diff)
downloadsharkey-bd07246af6b8a48cd4a2008ccc15129f3692b1d0.tar.gz
sharkey-bd07246af6b8a48cd4a2008ccc15129f3692b1d0.tar.bz2
sharkey-bd07246af6b8a48cd4a2008ccc15129f3692b1d0.zip
Merge pull request #1207 from syuilo/othello-reserved-map
Add Reserved map
Diffstat (limited to 'src')
-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 9d91219ff0..0672fc86b0 100644
--- a/src/common/othello/maps.ts
+++ b/src/common/othello/maps.ts
@@ -200,6 +200,21 @@ export const window: Map = {
'--------'
};
+export const reserved: Map = {
+ name: 'Reserved',
+ category: '8x8',
+ size: 8,
+ data:
+ 'w------b' +
+ '--------' +
+ '--------' +
+ '---wb---' +
+ '---bw---' +
+ '--------' +
+ '--------' +
+ 'b------w'
+};
+
export const tenthtenth: Map = {
name: '10x10',
category: '10x10',