summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2018-03-10 03:01:33 +0900
committersyuilo <syuilotan@yahoo.co.jp>2018-03-10 03:01:33 +0900
commit5383714ce84df89a4077266911d1cdc27d4db7d2 (patch)
treea742fa9a054128475310655c742ba4977e389b17 /src
parentFix #1218 (diff)
downloadsharkey-5383714ce84df89a4077266911d1cdc27d4db7d2.tar.gz
sharkey-5383714ce84df89a4077266911d1cdc27d4db7d2.tar.bz2
sharkey-5383714ce84df89a4077266911d1cdc27d4db7d2.zip
:v:
Diffstat (limited to 'src')
-rw-r--r--src/common/othello/maps.ts27
1 files changed, 19 insertions, 8 deletions
diff --git a/src/common/othello/maps.ts b/src/common/othello/maps.ts
index 2b1b61b2d2..9fc87cfff0 100644
--- a/src/common/othello/maps.ts
+++ b/src/common/othello/maps.ts
@@ -455,7 +455,7 @@ export const reactor: Map = {
export const sixeight: Map = {
name: '6x8',
- category: 'special',
+ category: 'Special',
data: [
'------',
'------',
@@ -470,7 +470,7 @@ export const sixeight: Map = {
export const spark: Map = {
name: 'Spark',
- category: 'special',
+ category: 'Special',
author: 'syuilo',
data: [
' - - ',
@@ -488,7 +488,7 @@ export const spark: Map = {
export const islands: Map = {
name: 'Islands',
- category: 'special',
+ category: 'Special',
author: 'syuilo',
data: [
'-------- ',
@@ -506,7 +506,7 @@ export const islands: Map = {
export const galaxy: Map = {
name: 'Galaxy',
- category: 'special',
+ category: 'Special',
author: 'syuilo',
data: [
' ------ ',
@@ -526,7 +526,7 @@ export const galaxy: Map = {
export const triangle: Map = {
name: 'Triangle',
- category: 'special',
+ category: 'Special',
author: 'syuilo',
data: [
' -- ',
@@ -544,7 +544,7 @@ export const triangle: Map = {
export const iphonex: Map = {
name: 'iPhone X',
- category: 'special',
+ category: 'Special',
author: 'syuilo',
data: [
' -- -- ',
@@ -564,7 +564,7 @@ export const iphonex: Map = {
export const bigBoard: Map = {
name: 'Big board',
- category: 'special',
+ category: 'Special',
data: [
'----------------',
'----------------',
@@ -587,7 +587,7 @@ export const bigBoard: Map = {
export const twoBoard: Map = {
name: 'Two board',
- category: 'special',
+ category: 'Special',
author: 'Aya',
data: [
'-------- --------',
@@ -600,3 +600,14 @@ export const twoBoard: Map = {
'-------- --------'
]
};
+
+export const test: Map = {
+ name: 'Test1',
+ category: 'Test',
+ data: [
+ '--------',
+ '---wb---',
+ '---bw---',
+ '--------'
+ ]
+};