From 8eea10c4f4aab9fa02e8c1c8004cd96f09076281 Mon Sep 17 00:00:00 2001 From: Aya Morisawa Date: Sun, 11 Mar 2018 04:53:00 +0900 Subject: [PATCH] Add Lack of Black map --- src/common/othello/maps.ts | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/src/common/othello/maps.ts b/src/common/othello/maps.ts index 7f38d8c67..2d4a55b5d 100644 --- a/src/common/othello/maps.ts +++ b/src/common/othello/maps.ts @@ -378,6 +378,21 @@ export const parallel: Map = { ] }; +export const lackOfBlack: Map = { + name: 'Lack of Black', + category: '8x8', + data: [ + '--------', + '--------', + '--------', + '---w----', + '---bw---', + '--------', + '--------', + '--------' + ] +}; + export const squareParty: Map = { name: 'Square Party', category: '8x8',