From 2f593dfa67ac6cd033987526ddb52cbd3594da4d Mon Sep 17 00:00:00 2001
From: Aya Morisawa <AyaMorisawa4869@gmail.com>
Date: Fri, 9 Mar 2018 01:00:21 +0900
Subject: [PATCH] Add Two board map

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

diff --git a/src/common/othello/maps.ts b/src/common/othello/maps.ts
index 67fcb8260..1c9ddc867 100644
--- a/src/common/othello/maps.ts
+++ b/src/common/othello/maps.ts
@@ -356,3 +356,27 @@ export const bigBoard: Map = {
 		'----------------' +
 		'----------------'
 };
+
+export const twoBoard: Map = {
+	name: 'Two board',
+	category: 'special',
+	size: 17,
+	data:
+		'-------- --------' +
+		'-------- --------' +
+		'-------- --------' +
+		'---wb--- ---wb---' +
+		'---bw--- ---bw---' +
+		'-------- --------' +
+		'-------- --------' +
+		'-------- --------' +
+		'                 ' +
+		'                 ' +
+		'                 ' +
+		'                 ' +
+		'                 ' +
+		'                 ' +
+		'                 ' +
+		'                 ' +
+		'                 '
+};