fix and add level

This commit is contained in:
KikooDX 2022-04-17 18:55:42 +02:00
parent abd8932085
commit 0fe0be1b76
1 changed files with 24 additions and 5 deletions

View File

@ -1,10 +1,29 @@
levels = []
lvl_dim = []
levels += [
levels=[]
lvl_dim=[]
levels+=[
" "+\
"#######"+\
"#..+./#"+\
"#@#+..#"+\
"#..../#"+\
"#######"
]
"#######"]
lvl_dim+=[(7,6)]
# didn't find creator infos
levels+=[
"################ "+\
"#..#...........# "+\
"#.+@.+.+.+.+.+.# "+\
"#..#.+++++++++## "+\
"##.#..........## "+\
"##.##/################"+\
" #.#.//////////////..#"+\
" #.#.//////////////#.#"+\
" #.##############.##.#"+\
" #.#.+.+.+.+.+.+.+.#.#"+\
" #.#..+.+.+.+.+.+..#.#"+\
" #.............+...#.#"+\
" #.#...............#.#"+\
" #.#################.#"+\
" #...................#"+\
" #####################"]
lvl_dim+=[(22,16)]