From bef678df9579cf3bc173aa2e7af7753ec755bd5d Mon Sep 17 00:00:00 2001 From: Aya Morisawa Date: Fri, 9 Mar 2018 00:47:41 +0900 Subject: [PATCH] Add Big board map --- src/common/othello/maps.ts | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/src/common/othello/maps.ts b/src/common/othello/maps.ts index 2f8dc5ff7..02fe4562f 100644 --- a/src/common/othello/maps.ts +++ b/src/common/othello/maps.ts @@ -333,3 +333,26 @@ export const iphonex: Map = { ' -------- ' + ' ------ ' }; + +export const bigBoard: Map = { + name: 'Big board', + category: 'special', + size: 16, + data: + '----------------' + + '----------------' + + '----------------' + + '----------------' + + '----------------' + + '----------------' + + '----------------' + + '-------wb-------' + + '-------bw-------' + + '----------------' + + '----------------' + + '----------------' + + '----------------' + + '----------------' + + '----------------' + + '----------------' + +};