From e815d3bed613e264807cf0439a3d5d0adffb9869 Mon Sep 17 00:00:00 2001 From: syuilo Date: Fri, 9 Mar 2018 21:54:47 +0900 Subject: [PATCH] Add triangle map --- src/common/othello/maps.ts | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/src/common/othello/maps.ts b/src/common/othello/maps.ts index 30d757c54..181a3b087 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',