diff options
author | Aki <nthirtyone@gmail.com> | 2017-04-09 22:07:04 +0200 |
---|---|---|
committer | Aki <nthirtyone@gmail.com> | 2017-04-09 22:07:04 +0200 |
commit | 0dd01913fe0eefc7ba4bc0797877f40fdedf9315 (patch) | |
tree | 8d270eb07f589d2487b3ce66d4865e5a4718042a /maps/default.lua | |
parent | 55b0cf1a22e4a7e41fe00aa693445d6c4bd0652d (diff) | |
parent | a03c1125f10fbbad253a0efc4727072fcbd55345 (diff) | |
download | roflnauts-0dd01913fe0eefc7ba4bc0797877f40fdedf9315.zip roflnauts-0dd01913fe0eefc7ba4bc0797877f40fdedf9315.tar.gz roflnauts-0dd01913fe0eefc7ba4bc0797877f40fdedf9315.tar.bz2 |
Merge branch 'com'
Diffstat (limited to 'maps/default.lua')
-rw-r--r-- | maps/default.lua | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/maps/default.lua b/maps/default.lua deleted file mode 100644 index 05b8dc9..0000000 --- a/maps/default.lua +++ /dev/null @@ -1,47 +0,0 @@ --- Default map from original roflnauts -return { - -- GENERAL - name = "default", - theme = "default.ogg", - center_x = 0, - center_y = 0, - width = 360, - height = 240, - -- RESPAWN POINTS - respawns = { - {x = -15, y = -80}, - {x = -5, y = -80}, - {x = 5, y = -80}, - {x = 15, y = -80} - }, - -- GRAPHICS - clouds = true, - background = "assets/backgrounds/default.png", - platforms = { - { - x = -91, - y = 0, - shape = {0,1, 180,1, 180,10, 95,76, 86,76, 0,10}, - sprite = "assets/platforms/default-big.png" - }, - { - x = 114, - y = 50, - shape = {0,1, 51,1, 51,18, 0,18}, - sprite = "assets/platforms/default-side.png" - }, - { - x = -166, - y = 50, - shape = {0,1, 51,1, 51,18, 0,18}, - sprite = "assets/platforms/default-side.png" - }, - { - x = -17, - y = -50, - shape = {0,1, 33,1, 33,14, 0,14}, - sprite = "assets/platforms/default-top.png" - } - }, - decorations = {} -} |