summaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
authorAya Morisawa <AyaMorisawa4869@gmail.com>2018-03-09 02:54:51 +0900
committerGitHub <noreply@github.com>2018-03-09 02:54:51 +0900
commit175b2ed81f45acb45acd039ef64cef844586e8a0 (patch)
treed8831ba2d38cb7d890968d53832dc7da62c21a8d /src/common
parentFix islands map (diff)
downloadsharkey-175b2ed81f45acb45acd039ef64cef844586e8a0.tar.gz
sharkey-175b2ed81f45acb45acd039ef64cef844586e8a0.tar.bz2
sharkey-175b2ed81f45acb45acd039ef64cef844586e8a0.zip
Add Walls 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 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',