From b6b1fb30328694cc7230d49d255052c6f815211e Mon Sep 17 00:00:00 2001 From: Aya Morisawa Date: Sun, 11 Mar 2018 00:04:25 +0900 Subject: [PATCH] Add 8x8 handicap 16 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 a4b8799b4..7f38d8c67 100644 --- a/src/common/othello/maps.ts +++ b/src/common/othello/maps.ts @@ -157,6 +157,21 @@ export const eighteightH12: Map = { ] }; +export const eighteightH16: Map = { + name: '8x8 handicap 16', + category: '8x8', + data: [ + 'bbb---bb', + 'b------b', + '-------b', + '---wb---', + '---bw---', + 'b-------', + 'b------b', + 'bb---bbb' + ] +}; + export const eighteightH20: Map = { name: '8x8 handicap 20', category: '8x8',