From 99bef32d1f840977f3d946fea4a30889eff5023d Mon Sep 17 00:00:00 2001 From: syuilo Date: Fri, 9 Mar 2018 22:54:30 +0900 Subject: [PATCH] Add new othello 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 e4f898fd7..2b1b61b2d 100644 --- a/src/common/othello/maps.ts +++ b/src/common/othello/maps.ts @@ -417,6 +417,24 @@ export const checker: Map = { ] }; +export const arena: Map = { + name: 'Arena', + category: '10x10', + author: 'syuilo', + data: [ + '- - -- - -', + ' - - - - ', + '- ------ -', + ' -------- ', + '- --wb-- -', + '- --bw-- -', + ' -------- ', + '- ------ -', + ' - - - - ', + '- - -- - -' + ] +}; + export const reactor: Map = { name: 'Reactor', category: '10x10',