From 57081857f7e42f4afd1f7e85b00db8b219ffe536 Mon Sep 17 00:00:00 2001 From: Aya Morisawa Date: Sat, 10 Mar 2018 11:42:50 +0900 Subject: [PATCH] Add Parallel 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 9e5bc087a..5c6c44dd2 100644 --- a/src/common/othello/maps.ts +++ b/src/common/othello/maps.ts @@ -332,6 +332,22 @@ export const x: Map = { ] }; +export const parallel: Map = { + name: 'Parallel', + category: '8x8', + author: 'Aya', + data: [ + '--------', + '--------', + '--------', + '---bb---', + '---ww---', + '--------', + '--------', + '--------' + ] +}; + export const squareParty: Map = { name: 'Square Party', category: '8x8',