From 5e2b1f66ef8c0bc98dbef499bb77d145ccc6bd16 Mon Sep 17 00:00:00 2001 From: Aya Morisawa Date: Fri, 9 Mar 2018 02:31:01 +0900 Subject: [PATCH] Add cross map --- src/common/othello/maps.ts | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/src/common/othello/maps.ts b/src/common/othello/maps.ts index e587b584c..0a9ff477a 100644 --- a/src/common/othello/maps.ts +++ b/src/common/othello/maps.ts @@ -251,6 +251,23 @@ export const grid: Map = { '----------' }; +export const cross: Map = { + name: 'Cross', + category: '10x10', + size: 10, + data: + ' ---- ' + + ' ---- ' + + ' ---- ' + + '----------' + + '----wb----' + + '----bw----' + + '----------' + + ' ---- ' + + ' ---- ' + + ' ---- ' +}; + export const sixeight: Map = { name: '6x8', category: 'special',