From 61d2497e5c06eb8b9624b465bca463391836e8b2 Mon Sep 17 00:00:00 2001 From: Aya Morisawa Date: Fri, 9 Mar 2018 03:10:19 +0900 Subject: [PATCH] Add checker 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 977762dea..434fd75af 100644 --- a/src/common/othello/maps.ts +++ b/src/common/othello/maps.ts @@ -315,6 +315,23 @@ export const walls: Map = { ' bbbbbbbb ' }; +export const checker: Map = { + name: 'Checker', + category: '10x10', + size: 10, + data: + '----------' + + '----------' + + '----------' + + '---wbwb---' + + '---bwbw---' + + '---wbwb---' + + '---bwbw---' + + '----------' + + '----------' + + '----------' +}; + export const sixeight: Map = { name: '6x8', category: 'special',