cozy-games/packages/mnswpr/levels.js
Ayo 969ebba067 chore: restructure to new cozy-games monorepo
Reviewed-on: https://git.ayo.run/ayo/cozy-games/pulls/1
Co-authored-by: Ayo <ayo@ayco.io>
Co-committed-by: Ayo <ayo@ayco.io>
2026-07-03 13:53:13 +00:00

31 lines
434 B
JavaScript

export const levels = {
beginner: {
rows: 9,
cols: 9,
mines: 10,
id: 'beginner',
name: 'Noobs'
},
intermediate: {
rows: 16,
cols: 16,
mines: 40,
id: 'intermediate',
name: 'Normies'
},
expert: {
rows: 16,
cols: 30,
mines: 99,
id: 'expert',
name: 'Torment'
},
nightmare: {
rows: 20,
cols: 30,
mines: 150,
id: 'nightmare',
name: 'Hell'
}
}