diff --git a/src/common/othello/maps.ts b/src/common/othello/maps.ts index 77c18e10c..48583c68b 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',