From d7cf78a19e01e4f950cc4b839527e748e0b34823 Mon Sep 17 00:00:00 2001 From: syuilo Date: Fri, 9 Mar 2018 21:51:00 +0900 Subject: [PATCH] Add galaxy map --- src/common/othello/maps.ts | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/src/common/othello/maps.ts b/src/common/othello/maps.ts index f25342f36..30d757c54 100644 --- a/src/common/othello/maps.ts +++ b/src/common/othello/maps.ts @@ -468,6 +468,26 @@ export const islands: Map = { ] }; +export const galaxy: Map = { + name: 'Galaxy', + category: 'special', + author: 'syuilo', + data: [ + ' ------ ', + ' --www--- ', + ' ------w--- ', + '---bbb--w---', + '--b---b-w-b-', + '-b--wwb-w-b-', + '-b-w-bww--b-', + '-b-w-b---b--', + '---w--bbb---', + ' ---w------ ', + ' ---www-- ', + ' ------ ' + ] +}; + export const iphonex: Map = { name: 'iPhone X', category: 'special',