From ee9611ec2b87997a53c82f1e1fcdc6550e9e8c78 Mon Sep 17 00:00:00 2001
From: Aya Morisawa <AyaMorisawa4869@gmail.com>
Date: Fri, 9 Mar 2018 03:01:55 +0900
Subject: [PATCH] Add X map

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

diff --git a/src/common/othello/maps.ts b/src/common/othello/maps.ts
index 0672fc86b..977762dea 100644
--- a/src/common/othello/maps.ts
+++ b/src/common/othello/maps.ts
@@ -215,6 +215,21 @@ export const reserved: Map = {
 		'b------w'
 };
 
+export const x: Map = {
+	name: 'X',
+	category: '8x8',
+	size: 8,
+	data:
+		'w------b' +
+		'-w----b-' +
+		'--w--b--' +
+		'---wb---' +
+		'---bw---' +
+		'--b--w--' +
+		'-b----w-' +
+		'b------w'
+};
+
 export const tenthtenth: Map = {
 	name: '10x10',
 	category: '10x10',