From 91f92f9c98c6370ffd554d780bcc38a456174e5f Mon Sep 17 00:00:00 2001 From: Aya Morisawa Date: Fri, 9 Mar 2018 02:38:54 +0900 Subject: [PATCH] Add reserved 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 77c18e10c..48583c68b 100644 --- a/src/common/othello/maps.ts +++ b/src/common/othello/maps.ts @@ -200,6 +200,21 @@ export const window: Map = { '--------' }; +export const reserved: Map = { + name: 'Reserved', + category: '8x8', + size: 8, + data: + 'w------b' + + '--------' + + '--------' + + '---wb---' + + '---bw---' + + '--------' + + '--------' + + 'b------w' +}; + export const tenthtenth: Map = { name: '10x10', category: '10x10',