diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-03-09 22:05:00 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-03-09 22:05:00 +0900 |
| commit | 7f570eb1e700097c6d9dccba0f6f1968ab3206f1 (patch) | |
| tree | d6c2187b71d1633c0f13cdfa0ceeb083a1e28e7d /src/common | |
| parent | Add triangle map (diff) | |
| download | misskey-7f570eb1e700097c6d9dccba0f6f1968ab3206f1.tar.gz misskey-7f570eb1e700097c6d9dccba0f6f1968ab3206f1.tar.bz2 misskey-7f570eb1e700097c6d9dccba0f6f1968ab3206f1.zip | |
Add reactor map
Diffstat (limited to 'src/common')
| -rw-r--r-- | src/common/othello/maps.ts | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/common/othello/maps.ts b/src/common/othello/maps.ts index 181a3b087b..e4f898fd74 100644 --- a/src/common/othello/maps.ts +++ b/src/common/othello/maps.ts @@ -417,6 +417,24 @@ export const checker: Map = { ] }; +export const reactor: Map = { + name: 'Reactor', + category: '10x10', + author: 'syuilo', + data: [ + '-w------b-', + 'b- - - -w', + '- --wb-- -', + '---b w---', + '- b wb w -', + '- w bw b -', + '---w b---', + '- --bw-- -', + 'w- - - -b', + '-b------w-' + ] +}; + export const sixeight: Map = { name: '6x8', category: 'special', |