From 5383714ce84df89a4077266911d1cdc27d4db7d2 Mon Sep 17 00:00:00 2001
From: syuilo <syuilotan@yahoo.co.jp>
Date: Sat, 10 Mar 2018 03:01:33 +0900
Subject: [PATCH] :v:

---
 src/common/othello/maps.ts | 27 +++++++++++++++++++--------
 1 file changed, 19 insertions(+), 8 deletions(-)

diff --git a/src/common/othello/maps.ts b/src/common/othello/maps.ts
index 2b1b61b2d2..9fc87cfff0 100644
--- a/src/common/othello/maps.ts
+++ b/src/common/othello/maps.ts
@@ -455,7 +455,7 @@ export const reactor: Map = {
 
 export const sixeight: Map = {
 	name: '6x8',
-	category: 'special',
+	category: 'Special',
 	data: [
 		'------',
 		'------',
@@ -470,7 +470,7 @@ export const sixeight: Map = {
 
 export const spark: Map = {
 	name: 'Spark',
-	category: 'special',
+	category: 'Special',
 	author: 'syuilo',
 	data: [
 		' -      - ',
@@ -488,7 +488,7 @@ export const spark: Map = {
 
 export const islands: Map = {
 	name: 'Islands',
-	category: 'special',
+	category: 'Special',
 	author: 'syuilo',
 	data: [
 		'--------  ',
@@ -506,7 +506,7 @@ export const islands: Map = {
 
 export const galaxy: Map = {
 	name: 'Galaxy',
-	category: 'special',
+	category: 'Special',
 	author: 'syuilo',
 	data: [
 		'   ------   ',
@@ -526,7 +526,7 @@ export const galaxy: Map = {
 
 export const triangle: Map = {
 	name: 'Triangle',
-	category: 'special',
+	category: 'Special',
 	author: 'syuilo',
 	data: [
 		'    --    ',
@@ -544,7 +544,7 @@ export const triangle: Map = {
 
 export const iphonex: Map = {
 	name: 'iPhone X',
-	category: 'special',
+	category: 'Special',
 	author: 'syuilo',
 	data: [
 		' --  -- ',
@@ -564,7 +564,7 @@ export const iphonex: Map = {
 
 export const bigBoard: Map = {
 	name: 'Big board',
-	category: 'special',
+	category: 'Special',
 	data: [
 		'----------------',
 		'----------------',
@@ -587,7 +587,7 @@ export const bigBoard: Map = {
 
 export const twoBoard: Map = {
 	name: 'Two board',
-	category: 'special',
+	category: 'Special',
 	author: 'Aya',
 	data: [
 		'-------- --------',
@@ -600,3 +600,14 @@ export const twoBoard: Map = {
 		'-------- --------'
 	]
 };
+
+export const test: Map = {
+	name: 'Test1',
+	category: 'Test',
+	data: [
+		'--------',
+		'---wb---',
+		'---bw---',
+		'--------'
+	]
+};