From 7f570eb1e700097c6d9dccba0f6f1968ab3206f1 Mon Sep 17 00:00:00 2001 From: syuilo Date: Fri, 9 Mar 2018 22:05:00 +0900 Subject: [PATCH] Add reactor 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 181a3b087..e4f898fd7 100644 --- a/src/common/othello/maps.ts +++ b/src/common/othello/maps.ts @@ -417,6 +417,24 @@ export const checker: Map = { ] }; +export const reactor: Map = { + name: 'Reactor', + category: '10x10', + author: 'syuilo', + data: [ + '-w------b-', + 'b- - - -w', + '- --wb-- -', + '---b w---', + '- b wb w -', + '- w bw b -', + '---w b---', + '- --bw-- -', + 'w- - - -b', + '-b------w-' + ] +}; + export const sixeight: Map = { name: '6x8', category: 'special',