From 7f30c26cc239efe779145a41946fffc5b39797f0 Mon Sep 17 00:00:00 2001 From: syuilo Date: Fri, 9 Mar 2018 19:10:11 +0900 Subject: [PATCH] Add new othello map --- src/common/othello/maps.ts | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/src/common/othello/maps.ts b/src/common/othello/maps.ts index d8f3154a0..f25342f36 100644 --- a/src/common/othello/maps.ts +++ b/src/common/othello/maps.ts @@ -242,6 +242,22 @@ export const x: Map = { ] }; +export const squareParty: Map = { + name: 'Square Party', + category: '8x8', + author: 'syuilo', + data: [ + '--------', + '-wwwbbb-', + '-w-wb-b-', + '-wwwbbb-', + '-bbbwww-', + '-b-bw-w-', + '-bbbwww-', + '--------' + ] +}; + export const minesweeper: Map = { name: 'Minesweeper', category: '8x8',