Merge pull request #1202 from syuilo/othello-two-board-map
Add Two board map
This commit is contained in:
commit
4ca14be9db
|
@ -356,3 +356,27 @@ export const bigBoard: Map = {
|
||||||
'----------------' +
|
'----------------' +
|
||||||
'----------------'
|
'----------------'
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export const twoBoard: Map = {
|
||||||
|
name: 'Two board',
|
||||||
|
category: 'special',
|
||||||
|
size: 17,
|
||||||
|
data:
|
||||||
|
'-------- --------' +
|
||||||
|
'-------- --------' +
|
||||||
|
'-------- --------' +
|
||||||
|
'---wb--- ---wb---' +
|
||||||
|
'---bw--- ---bw---' +
|
||||||
|
'-------- --------' +
|
||||||
|
'-------- --------' +
|
||||||
|
'-------- --------' +
|
||||||
|
' ' +
|
||||||
|
' ' +
|
||||||
|
' ' +
|
||||||
|
' ' +
|
||||||
|
' ' +
|
||||||
|
' ' +
|
||||||
|
' ' +
|
||||||
|
' ' +
|
||||||
|
' '
|
||||||
|
};
|
||||||
|
|
Loading…
Reference in New Issue