diff options
author | Aki <nthirtyone@gmail.com> | 2017-09-07 01:18:46 +0200 |
---|---|---|
committer | Aki <nthirtyone@gmail.com> | 2017-09-07 01:18:46 +0200 |
commit | c21ba70172ca360d4305834ad7c21719af781225 (patch) | |
tree | c1800bcdd74fad57b66ebe6c6308cb25486c130b /config/maps | |
parent | 438c230b21f93a98f78b03bfc3cf1cad6a6e2655 (diff) | |
download | roflnauts-c21ba70172ca360d4305834ad7c21719af781225.zip roflnauts-c21ba70172ca360d4305834ad7c21719af781225.tar.gz roflnauts-c21ba70172ca360d4305834ad7c21719af781225.tar.bz2 |
Aiguillon translated to dev format
Diffstat (limited to 'config/maps')
-rw-r--r-- | config/maps/aiguillon.lua | 46 |
1 files changed, 20 insertions, 26 deletions
diff --git a/config/maps/aiguillon.lua b/config/maps/aiguillon.lua index 40d3928..3fc3d3a 100644 --- a/config/maps/aiguillon.lua +++ b/config/maps/aiguillon.lua @@ -1,58 +1,52 @@ -return { - -- CENTER AND SIZE - name = "aiguillon", +return +{ + name = "Aiguillon", theme = "aiguillon.ogg", - center_x = 0, - center_y = 10, + portrait = 5, -- TODO: See `maps/ribbit`. + center = {x = 0, y = 10}, width = 370, height = 290, - -- RESPAWN POINTS respawns = { - {x = 0, y = -80}, - {x = 0, y = -80}, - {x = 0, y = -80}, - {x = 0, y = -80}, + {x = -15, y = -80}, + {x = -5, y = -80}, + {x = 5, y = -80}, + {x = 15, y = -80}, }, - -- GRAPHICS clouds = false, - background = "assets/backgrounds/aiguillon.png", - platforms = { + create = { + { + ratio = 0, + background = "assets/backgrounds/aiguillon.png" + }, { x = -108, y = 22, - shape = {1,0, 212,0, 212,12, 206,18, 14,18, 1,12}, - sprite = "assets/platforms/aiguillon-wide.png" + platform = "aiguillon-wide" }, { x = -46, y = -19, - shape = {1,0, 87,0, 87,18, 14,18, 1,12}, - sprite = "assets/platforms/aiguillon-middle.png" + platform = "aiguillon-middle" }, { x = -141, y = -57, - shape = {1,0, 50,0, 50,18, 5,18, 1,13}, - sprite = "assets/platforms/aiguillon-left-big.png" + platform = "aiguillon-left-big" }, { x = -132, y = 84, - shape = {1,0, 25,0, 25,18, 1,18}, - sprite = "assets/platforms/aiguillon-left-small.png" + platform = "aiguillon-left-small" }, { x = 77, y = -57, - shape = {1,0, 50,0, 50,12, 37,18, 1,18}, - sprite = "assets/platforms/aiguillon-right-big.png" + platform = "aiguillon-right-big" }, { x = 103, y = 84, - shape = {1,0, 25,0, 25,18, 1,18}, - sprite = "assets/platforms/aiguillon-right-small.png" + platform = "aiguillon-right-small" } }, - decorations = {} } |