summaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2018-03-10 03:25:59 +0900
committersyuilo <syuilotan@yahoo.co.jp>2018-03-10 03:25:59 +0900
commit7bd1199d2ee9665a143144389df87e35c5f6af7a (patch)
tree29174859d9c4e35e8f9799bbdae7f29e2bff2074 /src/common
parent先行後攻を決められるように (diff)
downloadmisskey-7bd1199d2ee9665a143144389df87e35c5f6af7a.tar.gz
misskey-7bd1199d2ee9665a143144389df87e35c5f6af7a.tar.bz2
misskey-7bd1199d2ee9665a143144389df87e35c5f6af7a.zip
Add some handicap maps
Diffstat (limited to 'src/common')
-rw-r--r--src/common/othello/maps.ts60
1 files changed, 60 insertions, 0 deletions
diff --git a/src/common/othello/maps.ts b/src/common/othello/maps.ts
index 9fc87cfff0..48a1f40f31 100644
--- a/src/common/othello/maps.ts
+++ b/src/common/othello/maps.ts
@@ -82,6 +82,66 @@ export const eighteight: Map = {
]
};
+export const eighteightH1: Map = {
+ name: '8x8 handicap 1',
+ category: '8x8',
+ data: [
+ 'b-------',
+ '--------',
+ '--------',
+ '---wb---',
+ '---bw---',
+ '--------',
+ '--------',
+ '--------'
+ ]
+};
+
+export const eighteightH2: Map = {
+ name: '8x8 handicap 2',
+ category: '8x8',
+ data: [
+ 'b-------',
+ '--------',
+ '--------',
+ '---wb---',
+ '---bw---',
+ '--------',
+ '--------',
+ '-------b'
+ ]
+};
+
+export const eighteightH3: Map = {
+ name: '8x8 handicap 3',
+ category: '8x8',
+ data: [
+ 'b------b',
+ '--------',
+ '--------',
+ '---wb---',
+ '---bw---',
+ '--------',
+ '--------',
+ '-------b'
+ ]
+};
+
+export const eighteightH4: Map = {
+ name: '8x8 handicap 4',
+ category: '8x8',
+ data: [
+ 'b------b',
+ '--------',
+ '--------',
+ '---wb---',
+ '---bw---',
+ '--------',
+ '--------',
+ 'b------b'
+ ]
+};
+
export const roundedEighteight: Map = {
name: '8x8 rounded',
category: '8x8',