diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2018-03-10 11:21:57 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-03-10 11:21:57 +0900 |
| commit | ed0b442b92f4f2a120caa8113d8ae9deb21a7827 (patch) | |
| tree | f6d11401d2b89085046a128cbd52309c2d305cd7 /src | |
| parent | v4075 (diff) | |
| parent | Add 8x8 handicap 12 map (diff) | |
| download | misskey-ed0b442b92f4f2a120caa8113d8ae9deb21a7827.tar.gz misskey-ed0b442b92f4f2a120caa8113d8ae9deb21a7827.tar.bz2 misskey-ed0b442b92f4f2a120caa8113d8ae9deb21a7827.zip | |
Merge pull request #1220 from syuilo/othello-eighteightH12-map
Add 8x8 handicap 12 map
Diffstat (limited to 'src')
| -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 ffc0c2cb8d..9e5bc087a7 100644 --- a/src/common/othello/maps.ts +++ b/src/common/othello/maps.ts @@ -142,6 +142,21 @@ export const eighteightH4: Map = { ] }; +export const eighteightH12: Map = { + name: '8x8 handicap 12', + category: '8x8', + data: [ + 'bb----bb', + 'b------b', + '--------', + '---wb---', + '---bw---', + '--------', + 'b------b', + 'bb----bb' + ] +}; + export const eighteightH28: Map = { name: '8x8 handicap 28', category: '8x8', |