diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2020-10-27 18:11:41 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-10-27 18:11:41 +0900 |
| commit | 6258ce75b7ae97584100ecccdf0a7cd0225da7b2 (patch) | |
| tree | 9b969daf7cd37a06c993b20a536b7821466b256c /src/games/reversi | |
| parent | Update popup animation (diff) | |
| download | sharkey-6258ce75b7ae97584100ecccdf0a7cd0225da7b2.tar.gz sharkey-6258ce75b7ae97584100ecccdf0a7cd0225da7b2.tar.bz2 sharkey-6258ce75b7ae97584100ecccdf0a7cd0225da7b2.zip | |
Reversi (#6765)
* wip
* wip
* wip
* wip
* Update game.setting.vue
* wip
* wip
* Update game.setting.vue
* wip
* Update game.board.vue
* wip
* Update sidebar.ts
Diffstat (limited to 'src/games/reversi')
| -rw-r--r-- | src/games/reversi/maps.ts | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/src/games/reversi/maps.ts b/src/games/reversi/maps.ts index f74cc85659..eaaff1c918 100644 --- a/src/games/reversi/maps.ts +++ b/src/games/reversi/maps.ts @@ -142,51 +142,6 @@ export const eighteightH4: Map = { ] }; -export const eighteightH12: Map = { - name: '8x8 handicap 12', - category: '8x8', - data: [ - 'bb----bb', - 'b------b', - '--------', - '---wb---', - '---bw---', - '--------', - 'b------b', - 'bb----bb' - ] -}; - -export const eighteightH16: Map = { - name: '8x8 handicap 16', - category: '8x8', - data: [ - 'bbb---bb', - 'b------b', - '-------b', - '---wb---', - '---bw---', - 'b-------', - 'b------b', - 'bb---bbb' - ] -}; - -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', |