diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-03-09 21:51:00 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-03-09 21:51:00 +0900 |
| commit | d7cf78a19e01e4f950cc4b839527e748e0b34823 (patch) | |
| tree | 28ebaf641a90fc7f7170a7340f390838932ec928 | |
| parent | v4053 (diff) | |
| download | misskey-d7cf78a19e01e4f950cc4b839527e748e0b34823.tar.gz misskey-d7cf78a19e01e4f950cc4b839527e748e0b34823.tar.bz2 misskey-d7cf78a19e01e4f950cc4b839527e748e0b34823.zip | |
Add galaxy map
| -rw-r--r-- | src/common/othello/maps.ts | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/common/othello/maps.ts b/src/common/othello/maps.ts index f25342f364..30d757c540 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', |