Merge pull request #1202 from syuilo/othello-two-board-map

Add Two board map
This commit is contained in:
syuilo 2018-03-09 01:02:14 +09:00 committed by GitHub
commit 4ca14be9db
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 24 additions and 0 deletions

View File

@ -356,3 +356,27 @@ export const bigBoard: Map = {
'----------------' +
'----------------'
};
export const twoBoard: Map = {
name: 'Two board',
category: 'special',
size: 17,
data:
'-------- --------' +
'-------- --------' +
'-------- --------' +
'---wb--- ---wb---' +
'---bw--- ---bw---' +
'-------- --------' +
'-------- --------' +
'-------- --------' +
' ' +
' ' +
' ' +
' ' +
' ' +
' ' +
' ' +
' ' +
' '
};