diff options
author | MilkingChicken <THECHEESEMEISTERS@GMAIL.COM> | 2017-01-15 19:28:29 +1000 |
---|---|---|
committer | Aki <nthirtyone@gmail.com> | 2017-01-15 10:28:29 +0100 |
commit | 110516cf92a6832d0fd088a6187c21b2208e794b (patch) | |
tree | 38e5dc49bda365257eec7d38802e8658146fd07a /maps/sorona.lua | |
parent | 9250a0de60ec055f7ed60b8a0d92ec6e289f58c1 (diff) | |
download | roflnauts-110516cf92a6832d0fd088a6187c21b2208e794b.zip roflnauts-110516cf92a6832d0fd088a6187c21b2208e794b.tar.gz roflnauts-110516cf92a6832d0fd088a6187c21b2208e794b.tar.bz2 |
Sorona map
* Updated map icons sheet with Sorona.
* Updated map list file with Sorona.
* Added map file setting for Sorona.
* Added platforms for Sorona.
* Added background for Sorona.
Diffstat (limited to 'maps/sorona.lua')
-rw-r--r-- | maps/sorona.lua | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/maps/sorona.lua b/maps/sorona.lua new file mode 100644 index 0000000..7c34e04 --- /dev/null +++ b/maps/sorona.lua @@ -0,0 +1,55 @@ +-- Sorona, but with the worms and such. +return { + -- GENERAL + name = "sorona", + theme = "sorona.ogg", + center_x = 0, + center_y = 0, + width = 360, + height = 240, + -- RESPAWN POINTS + respawns = { + {x = -30, y = 70}, + {x = -90, y = 125}, + {x = -31, y = 122}, + {x = 70, y = 20}, + {x = 1, y = -15}, + {x = 105, y = -15} + }, + -- GRAPHICS + clouds = false, + background = "assets/backgrounds/sorona.png", + platforms = { + { + x = -60, + y = 70, + shape = {0,0, 60,0, 60,20, 0,20}, + sprite = "assets/platforms/sorona-center.png" + }, + { + x = -40, + y = 125, + shape = {3,0, 180,0, 180,20, 3,20}, + sprite = "assets/platforms/sorona-right-bottom.png" + }, + { + x = -120, + y = 122, + shape = {3,0, 62,0, 62,24, 3,24}, + sprite = "assets/platforms/sorona-left-bottom.png" + }, + { + x = 0, + y = 20, + shape = {1,0, 141,0, 1,25, 141,25}, + sprite = "assets/platforms/sorona-right-top.png" + }, + { + x = -150, + y = 15, + shape = {1,8, 105,8, 85,16, 38,28, 1,30}, + sprite = "assets/platforms/sorona-left-top.png" + } + }, + decorations = {} +} |