diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-03-09 21:54:47 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-03-09 21:54:47 +0900 |
| commit | e815d3bed613e264807cf0439a3d5d0adffb9869 (patch) | |
| tree | 3301c36f0f7133ceee2311cfabbea34210ba36d9 | |
| parent | Add galaxy map (diff) | |
| download | misskey-e815d3bed613e264807cf0439a3d5d0adffb9869.tar.gz misskey-e815d3bed613e264807cf0439a3d5d0adffb9869.tar.bz2 misskey-e815d3bed613e264807cf0439a3d5d0adffb9869.zip | |
Add triangle map
| -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 30d757c540..181a3b087b 100644 --- a/src/common/othello/maps.ts +++ b/src/common/othello/maps.ts @@ -488,6 +488,24 @@ export const galaxy: Map = { ] }; +export const triangle: Map = { + name: 'Triangle', + category: 'special', + author: 'syuilo', + data: [ + ' -- ', + ' -- ', + ' ---- ', + ' ---- ', + ' --wb-- ', + ' --bw-- ', + ' -------- ', + ' -------- ', + '----------', + '----------' + ] +}; + export const iphonex: Map = { name: 'iPhone X', category: 'special', |