diff options
author | Aki <nthirtyone@gmail.com> | 2017-09-05 19:05:21 +0200 |
---|---|---|
committer | Aki <nthirtyone@gmail.com> | 2017-09-05 19:05:21 +0200 |
commit | 1ffc08dd2343b76b2f94d9c290ef346346585270 (patch) | |
tree | 2d5d1ba10a56a246d4d8992eee8ab877a52b7fe7 /config/maps | |
parent | dc6fd557ed955fc5f177608c186768e29c7778c6 (diff) | |
download | roflnauts-1ffc08dd2343b76b2f94d9c290ef346346585270.zip roflnauts-1ffc08dd2343b76b2f94d9c290ef346346585270.tar.gz roflnauts-1ffc08dd2343b76b2f94d9c290ef346346585270.tar.bz2 |
Converted default map to new format for cloud testing
Diffstat (limited to 'config/maps')
-rw-r--r-- | config/maps/default.lua | 33 |
1 files changed, 14 insertions, 19 deletions
diff --git a/config/maps/default.lua b/config/maps/default.lua index 05b8dc9..a11c503 100644 --- a/config/maps/default.lua +++ b/config/maps/default.lua @@ -1,47 +1,42 @@ --- Default map from original roflnauts -return { - -- GENERAL +return +{ name = "default", theme = "default.ogg", - center_x = 0, - center_y = 0, + portrait = 1, -- TODO: See `maps/ribbit`. + center = {x = 0, 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 = { + create = { + { + ratio = 0, + background = "assets/backgrounds/default.png" + }, { x = -91, y = 0, - shape = {0,1, 180,1, 180,10, 95,76, 86,76, 0,10}, - sprite = "assets/platforms/default-big.png" + platform = "default-big" }, { x = 114, y = 50, - shape = {0,1, 51,1, 51,18, 0,18}, - sprite = "assets/platforms/default-side.png" + platform = "default-side" }, { x = -166, y = 50, - shape = {0,1, 51,1, 51,18, 0,18}, - sprite = "assets/platforms/default-side.png" + platform = "default-side" }, { x = -17, y = -50, - shape = {0,1, 33,1, 33,14, 0,14}, - sprite = "assets/platforms/default-top.png" + platform = "default-top" } - }, - decorations = {} + } } |