diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-03-09 22:54:30 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-03-09 22:54:30 +0900 |
| commit | 99bef32d1f840977f3d946fea4a30889eff5023d (patch) | |
| tree | 8e73a966968d202d8c58b1f220d476f7a91427c5 /src/common | |
| parent | setイベントに次どっちのターンかの情報を含めた (diff) | |
| download | misskey-99bef32d1f840977f3d946fea4a30889eff5023d.tar.gz misskey-99bef32d1f840977f3d946fea4a30889eff5023d.tar.bz2 misskey-99bef32d1f840977f3d946fea4a30889eff5023d.zip | |
Add new othello 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 e4f898fd74..2b1b61b2d2 100644 --- a/src/common/othello/maps.ts +++ b/src/common/othello/maps.ts @@ -417,6 +417,24 @@ export const checker: Map = { ] }; +export const arena: Map = { + name: 'Arena', + category: '10x10', + author: 'syuilo', + data: [ + '- - -- - -', + ' - - - - ', + '- ------ -', + ' -------- ', + '- --wb-- -', + '- --bw-- -', + ' -------- ', + '- ------ -', + ' - - - - ', + '- - -- - -' + ] +}; + export const reactor: Map = { name: 'Reactor', category: '10x10', |