From 175b2ed81f45acb45acd039ef64cef844586e8a0 Mon Sep 17 00:00:00 2001
From: Aya Morisawa <AyaMorisawa4869@gmail.com>
Date: Fri, 9 Mar 2018 02:54:51 +0900
Subject: [PATCH] Add Walls map

---
 src/common/othello/maps.ts | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)

diff --git a/src/common/othello/maps.ts b/src/common/othello/maps.ts
index 77c18e10c..9d91219ff 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',