diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-03-10 03:33:03 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-03-10 03:33:03 +0900 |
| commit | 30a5bf1a64f83e4678dacab2c6e496fee46a0a22 (patch) | |
| tree | 7933ffb713930c115a1563ec42bfeafbc2b64547 /src/common | |
| parent | Better text (diff) | |
| download | misskey-30a5bf1a64f83e4678dacab2c6e496fee46a0a22.tar.gz misskey-30a5bf1a64f83e4678dacab2c6e496fee46a0a22.tar.bz2 misskey-30a5bf1a64f83e4678dacab2c6e496fee46a0a22.zip | |
Add new handi map
Diffstat (limited to 'src/common')
| -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 48a1f40f31..b84d10ab92 100644 --- a/src/common/othello/maps.ts +++ b/src/common/othello/maps.ts @@ -142,6 +142,21 @@ export const eighteightH4: Map = { ] }; +export const eighteightH28: Map = { + name: '8x8 handicap 28', + category: '8x8', + data: [ + 'bbbbbbbb', + 'b------b', + 'b------b', + 'b--wb--b', + 'b--bw--b', + 'b------b', + 'b------b', + 'bbbbbbbb' + ] +}; + export const roundedEighteight: Map = { name: '8x8 rounded', category: '8x8', |