diff options
| author | Aya Morisawa <AyaMorisawa4869@gmail.com> | 2018-03-10 11:42:50 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-03-10 11:42:50 +0900 |
| commit | 57081857f7e42f4afd1f7e85b00db8b219ffe536 (patch) | |
| tree | 99e5af15da88755fb833b7c673f860a68e2c5735 /src | |
| parent | Merge pull request #1220 from syuilo/othello-eighteightH12-map (diff) | |
| download | sharkey-57081857f7e42f4afd1f7e85b00db8b219ffe536.tar.gz sharkey-57081857f7e42f4afd1f7e85b00db8b219ffe536.tar.bz2 sharkey-57081857f7e42f4afd1f7e85b00db8b219ffe536.zip | |
Add Parallel map
Diffstat (limited to 'src')
| -rw-r--r-- | src/common/othello/maps.ts | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/common/othello/maps.ts b/src/common/othello/maps.ts index 9e5bc087a7..5c6c44dd29 100644 --- a/src/common/othello/maps.ts +++ b/src/common/othello/maps.ts @@ -332,6 +332,22 @@ export const x: Map = { ] }; +export const parallel: Map = { + name: 'Parallel', + category: '8x8', + author: 'Aya', + data: [ + '--------', + '--------', + '--------', + '---bb---', + '---ww---', + '--------', + '--------', + '--------' + ] +}; + export const squareParty: Map = { name: 'Square Party', category: '8x8', |