init
This commit is contained in:
@@ -1,12 +1,59 @@
|
||||
// Level 4 - 9x8 (Nature & Daily Words)
|
||||
const level1 = {
|
||||
grid: [
|
||||
['B','O','M','E','N','#','Z','O','N'],
|
||||
['H','A','A','S','#','D','O','R','P'],
|
||||
['H','O','N','D','#','O','P','E','N'],
|
||||
['W','I','N','D','#','N','E','S','T'],
|
||||
['W','O','L','K','#','D','U','I','F'],
|
||||
['S','T','E','R','#','E','E','N','D'],
|
||||
['M','A','A','N','#','R','E','U','S'],
|
||||
['R','E','G','E','N','#','V','I','S']
|
||||
],
|
||||
words: [
|
||||
// horizontaal
|
||||
{ word: 'BOMEN', clue: 'Planten', startRow: 0, startCol: 0, direction: 'horizontal', answer: 'BOMEN' },
|
||||
{ word: 'ZON', clue: 'Ster aan de hemel', startRow: 0, startCol: 6, direction: 'horizontal', answer: 'ZON' },
|
||||
|
||||
{ word: 'HAAS', clue: 'Snel dier', startRow: 1, startCol: 0, direction: 'horizontal', answer: 'HAAS' },
|
||||
{ word: 'DORP', clue: 'Kleine plaats', startRow: 1, startCol: 5, direction: 'horizontal', answer: 'DORP' },
|
||||
|
||||
{ word: 'HOND', clue: 'Huisdier', startRow: 2, startCol: 0, direction: 'horizontal', answer: 'HOND' },
|
||||
{ word: 'OPEN', clue: 'Niet dicht', startRow: 2, startCol: 5, direction: 'horizontal', answer: 'OPEN' },
|
||||
|
||||
{ word: 'WIND', clue: 'Luchtbeweging', startRow: 3, startCol: 0, direction: 'horizontal', answer: 'WIND' },
|
||||
{ word: 'NEST', clue: 'Thuis van een vogel', startRow: 3, startCol: 5, direction: 'horizontal', answer: 'NEST' },
|
||||
|
||||
{ word: 'WOLK', clue: 'In de lucht', startRow: 4, startCol: 0, direction: 'horizontal', answer: 'WOLK' },
|
||||
{ word: 'DUIF', clue: 'Stadsvogel', startRow: 4, startCol: 5, direction: 'horizontal', answer: 'DUIF' },
|
||||
|
||||
{ word: 'STER', clue: 'Hemellichaam', startRow: 5, startCol: 0, direction: 'horizontal', answer: 'STER' },
|
||||
{ word: 'EEND', clue: 'Watervogel', startRow: 5, startCol: 5, direction: 'horizontal', answer: 'EEND' },
|
||||
|
||||
{ word: 'MAAN', clue: 'Nachthemel', startRow: 6, startCol: 0, direction: 'horizontal', answer: 'MAAN' },
|
||||
{ word: 'REUS', clue: 'Gigant', startRow: 6, startCol: 5, direction: 'horizontal', answer: 'REUS' },
|
||||
|
||||
{ word: 'REGEN', clue: 'Valt uit de lucht', startRow: 7, startCol: 0, direction: 'horizontal', answer: 'REGEN' },
|
||||
{ word: 'VIS', clue: 'Zwemt in water', startRow: 7, startCol: 6, direction: 'horizontal', answer: 'VIS' },
|
||||
|
||||
// verticaal (spine)
|
||||
{ word: 'DONDER', clue: 'Weerverschijnsel', startRow: 1, startCol: 5, direction: 'vertical', answer: 'DONDER' }
|
||||
],
|
||||
difficulty: 3,
|
||||
rewards: { coins: 125, stars: 4, hints: 1 }
|
||||
};
|
||||
|
||||
// Dutch Swedish-style Crossword Puzzles Database
|
||||
const DUTCH_PUZZLES = {
|
||||
// Level 1 - Easy
|
||||
level1: {
|
||||
level1,
|
||||
level0: {
|
||||
grid: [
|
||||
['H', 'A', 'A', 'S'],
|
||||
['#', '#', '#', 'T'],
|
||||
['V', 'L', 'I', 'E', 'G'],
|
||||
['#', '#', '#', 'S']
|
||||
['#','#', '#', '#', '#'],
|
||||
['#','H', 'A', 'A', 'S'],
|
||||
['#','#', '#', '#', 'T'],
|
||||
['#','V', 'L', 'I', 'E', 'G'],
|
||||
['#','#', '#', '#', 'S']
|
||||
],
|
||||
words: [
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user