From e815d3bed613e264807cf0439a3d5d0adffb9869 Mon Sep 17 00:00:00 2001
From: syuilo <syuilotan@yahoo.co.jp>
Date: Fri, 9 Mar 2018 21:54:47 +0900
Subject: [PATCH] Add triangle map

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

diff --git a/src/common/othello/maps.ts b/src/common/othello/maps.ts
index 30d757c540..181a3b087b 100644
--- a/src/common/othello/maps.ts
+++ b/src/common/othello/maps.ts
@@ -488,6 +488,24 @@ export const galaxy: Map = {
 	]
 };
 
+export const triangle: Map = {
+	name: 'Triangle',
+	category: 'special',
+	author: 'syuilo',
+	data: [
+		'    --    ',
+		'    --    ',
+		'   ----   ',
+		'   ----   ',
+		'  --wb--  ',
+		'  --bw--  ',
+		' -------- ',
+		' -------- ',
+		'----------',
+		'----------'
+	]
+};
+
 export const iphonex: Map = {
 	name: 'iPhone X',
 	category: 'special',