diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-03-10 03:53:42 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-03-10 03:53:42 +0900 |
| commit | 754f7a65f0a7210eafa01af13a86064b838cc7eb (patch) | |
| tree | 01834d40251a82d6326e39e9779e13f6726d04ad /src/common | |
| parent | v4073 (diff) | |
| download | misskey-754f7a65f0a7210eafa01af13a86064b838cc7eb.tar.gz misskey-754f7a65f0a7210eafa01af13a86064b838cc7eb.tar.bz2 misskey-754f7a65f0a7210eafa01af13a86064b838cc7eb.zip | |
Add new 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 b84d10ab92..ffc0c2cb8d 100644 --- a/src/common/othello/maps.ts +++ b/src/common/othello/maps.ts @@ -492,6 +492,24 @@ export const checker: Map = { ] }; +export const japaneseCurry: Map = { + name: 'Japanese curry', + category: '10x10', + author: 'syuilo', + data: [ + 'w-b-b-b-b-', + '-w-b-b-b-b', + 'w-w-b-b-b-', + '-w-w-b-b-b', + 'w-w-wwb-b-', + '-w-wbb-b-b', + 'w-w-w-b-b-', + '-w-w-w-b-b', + 'w-w-w-w-b-', + '-w-w-w-w-b' + ] +}; + export const arena: Map = { name: 'Arena', category: '10x10', |