diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2018-03-11 00:04:48 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-03-11 00:04:48 +0900 |
| commit | a2b73582cd623da6ad9a05ff999f688550544ce5 (patch) | |
| tree | 2ec9e18e9716a847784bb446c57c5e350d660059 | |
| parent | Merge pull request #1228 from syuilo/othello-eighteightH20-map (diff) | |
| parent | Add 8x8 handicap 16 map (diff) | |
| download | misskey-a2b73582cd623da6ad9a05ff999f688550544ce5.tar.gz misskey-a2b73582cd623da6ad9a05ff999f688550544ce5.tar.bz2 misskey-a2b73582cd623da6ad9a05ff999f688550544ce5.zip | |
Merge pull request #1229 from syuilo/othello-eighteightH16-map
Add 8x8 handicap 16 map
| -rw-r--r-- | src/common/othello/maps.ts | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/common/othello/maps.ts b/src/common/othello/maps.ts index a4b8799b45..7f38d8c678 100644 --- a/src/common/othello/maps.ts +++ b/src/common/othello/maps.ts @@ -157,6 +157,21 @@ export const eighteightH12: Map = { ] }; +export const eighteightH16: Map = { + name: '8x8 handicap 16', + category: '8x8', + data: [ + 'bbb---bb', + 'b------b', + '-------b', + '---wb---', + '---bw---', + 'b-------', + 'b------b', + 'bb---bbb' + ] +}; + export const eighteightH20: Map = { name: '8x8 handicap 20', category: '8x8', |