diff options
| author | Aya Morisawa <AyaMorisawa4869@gmail.com> | 2018-03-09 02:38:54 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-03-09 02:38:54 +0900 |
| commit | 91f92f9c98c6370ffd554d780bcc38a456174e5f (patch) | |
| tree | 0d7dcc1569ae8f6ad179ecba434710c114bbbeca /src | |
| parent | Fix islands map (diff) | |
| download | misskey-91f92f9c98c6370ffd554d780bcc38a456174e5f.tar.gz misskey-91f92f9c98c6370ffd554d780bcc38a456174e5f.tar.bz2 misskey-91f92f9c98c6370ffd554d780bcc38a456174e5f.zip | |
Add reserved 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 77c18e10c1..48583c68bc 100644 --- a/src/common/othello/maps.ts +++ b/src/common/othello/maps.ts @@ -200,6 +200,21 @@ export const window: Map = { '--------' }; +export const reserved: Map = { + name: 'Reserved', + category: '8x8', + size: 8, + data: + 'w------b' + + '--------' + + '--------' + + '---wb---' + + '---bw---' + + '--------' + + '--------' + + 'b------w' +}; + export const tenthtenth: Map = { name: '10x10', category: '10x10', |