diff options
| author | Aya Morisawa <AyaMorisawa4869@gmail.com> | 2018-03-10 23:36:05 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-03-10 23:36:05 +0900 |
| commit | 01b2c7b027d8c5c58dc520efb51bb714bfe6a1e4 (patch) | |
| tree | b539d380817f6905a03e260d5b56355d752115f9 /src/common | |
| parent | othello/games/show にボードの状態やターン情報を含めるように (diff) | |
| download | sharkey-01b2c7b027d8c5c58dc520efb51bb714bfe6a1e4.tar.gz sharkey-01b2c7b027d8c5c58dc520efb51bb714bfe6a1e4.tar.bz2 sharkey-01b2c7b027d8c5c58dc520efb51bb714bfe6a1e4.zip | |
Add 8x8 handicap 20 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 1382cac03f..a4b8799b45 100644 --- a/src/common/othello/maps.ts +++ b/src/common/othello/maps.ts @@ -157,6 +157,21 @@ export const eighteightH12: Map = { ] }; +export const eighteightH20: Map = { + name: '8x8 handicap 20', + category: '8x8', + data: [ + 'bbb--bbb', + 'b------b', + 'b------b', + '---wb---', + '---bw---', + 'b------b', + 'b------b', + 'bbb---bb' + ] +}; + export const eighteightH28: Map = { name: '8x8 handicap 28', category: '8x8', |