summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2018-03-09 02:55:23 +0900
committerGitHub <noreply@github.com>2018-03-09 02:55:23 +0900
commit0b30ec34d0da513218939b426bdec9fac2d230ec (patch)
treed8831ba2d38cb7d890968d53832dc7da62c21a8d /src
parentFix islands map (diff)
parentAdd Walls map (diff)
downloadsharkey-0b30ec34d0da513218939b426bdec9fac2d230ec.tar.gz
sharkey-0b30ec34d0da513218939b426bdec9fac2d230ec.tar.bz2
sharkey-0b30ec34d0da513218939b426bdec9fac2d230ec.zip
Merge pull request #1208 from syuilo/othello-walls-map
Add Walls map
Diffstat (limited to 'src')
-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 77c18e10c1..9d91219ff0 100644
--- a/src/common/othello/maps.ts
+++ b/src/common/othello/maps.ts
@@ -268,6 +268,23 @@ export const cross: Map = {
' ---- '
};
+export const walls: Map = {
+ name: 'Walls',
+ category: '10x10',
+ size: 10,
+ data:
+ ' bbbbbbbb ' +
+ 'w--------w' +
+ 'w--------w' +
+ 'w--------w' +
+ 'w---wb---w' +
+ 'w---bw---w' +
+ 'w--------w' +
+ 'w--------w' +
+ 'w--------w' +
+ ' bbbbbbbb '
+};
+
export const sixeight: Map = {
name: '6x8',
category: 'special',