Added level file.

This commit is contained in:
KikooDX 2019-07-17 17:14:18 +02:00
parent 64f77c1a0f
commit 49c61cb3a2
1 changed files with 38 additions and 0 deletions

38
levels.py Normal file
View File

@ -0,0 +1,38 @@
levels = []
lvl_dim = []
levels += [
" "+\
"#######"+\
"#..+./#"+\
"#@#+..#"+\
"#..../#"+\
"#######"
]
lvl_dim += [(7, 6)]
levels += [
"##### "+\
"#.@.# "+\
"#...#####"+\
"#.+..+..#"+\
"###++##.#"+\
" #..//..#"+\
" #..//###"+\
" ###### "
]
lvl_dim += [(9,8)]
levels += [
" ######## "+\
" #......# "+\
" #.++#..####"+\
"#####.#@.+....#"+\
"#....+#//##++.#"+\
"#...#.////..#.#"+\
"#..#..////.#..#"+\
"#..++##//#+...#"+\
"#.....+..#.####"+\
"#####..#.+.# "+\
" #...#+.# "+\
" #......# "+\
" ######## "
]
lvl_dim += [(15, 13)]