Add checker map

This commit is contained in:
Aya Morisawa 2018-03-09 03:10:19 +09:00 committed by GitHub
parent 894c36735a
commit 61d2497e5c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -315,6 +315,23 @@ export const walls: Map = {
' bbbbbbbb '
};
export const checker: Map = {
name: 'Checker',
category: '10x10',
size: 10,
data:
'----------' +
'----------' +
'----------' +
'---wbwb---' +
'---bwbw---' +
'---wbwb---' +
'---bwbw---' +
'----------' +
'----------' +
'----------'
};
export const sixeight: Map = {
name: '6x8',
category: 'special',