summaryrefslogtreecommitdiffhomepage
path: root/config/maps/rill.lua
diff options
context:
space:
mode:
authorAki <nthirtyone@gmail.com>2017-04-07 03:06:26 +0200
committerAki <nthirtyone@gmail.com>2017-04-07 03:06:26 +0200
commit54e85dd188af15cd5f3f5e08f5d3e69088a909b1 (patch)
tree7d188fd4142d8690321df69281ce8d5c55fbfa2b /config/maps/rill.lua
parent37767d6c54ea6af0b4631b5ce838ee584603895e (diff)
downloadroflnauts-54e85dd188af15cd5f3f5e08f5d3e69088a909b1.zip
roflnauts-54e85dd188af15cd5f3f5e08f5d3e69088a909b1.tar.gz
roflnauts-54e85dd188af15cd5f3f5e08f5d3e69088a909b1.tar.bz2
Moved map configs to config directory
Diffstat (limited to 'config/maps/rill.lua')
-rw-r--r--config/maps/rill.lua73
1 files changed, 73 insertions, 0 deletions
diff --git a/config/maps/rill.lua b/config/maps/rill.lua
new file mode 100644
index 0000000..83c02f2
--- /dev/null
+++ b/config/maps/rill.lua
@@ -0,0 +1,73 @@
+return {
+ -- CENTER AND SIZE
+ name = "rill",
+ theme = "rill.ogg",
+ center_x = 0,
+ center_y = 75,
+ width = 400,
+ height = 260,
+ -- RESPAWN POINTS
+ respawns = {
+ {x = -135, y = 10},
+ {x = -135, y = 10},
+ {x = 135, y = 10},
+ {x = 135, y = 10}
+ },
+ -- GRAPHICS
+ clouds = false,
+ background = "assets/backgrounds/rill.png",
+ platforms = {
+ {
+ x = -151,
+ y = 25,
+ shape = {0,0, 55,0, 55,11, 0,11},
+ sprite = "assets/platforms/rill-flat-left.png"
+ },
+ {
+ x = 93,
+ y = 25,
+ shape = {0,0, 55,0, 55,11, 0,11},
+ sprite = "assets/platforms/rill-flat-right.png"
+ },
+ {
+ x = -24,
+ y = 55,
+ shape = {0,0, 48,0, 47,15, 1,15},
+ sprite = "assets/platforms/rill-center.png"
+ },
+ {
+ x = -112,
+ y = 80,
+ shape = {77,30, 17,0, 0,0, 0,7, 77,44},
+ sprite = "assets/platforms/rill-slope-left.png"
+ },
+ {
+ x = 35,
+ y = 80,
+ shape = {0,30, 60,0, 77,0, 77,7, 0,44},
+ sprite = "assets/platforms/rill-slope-right.png"
+ }
+ },
+ decorations = {
+ {
+ x = 98,
+ y = -20,
+ sprite = "assets/decorations/rill-lollipop-big-purple.png"
+ },
+ {
+ x = 127,
+ y = 4,
+ sprite = "assets/decorations/rill-lollipop-small-green.png"
+ },
+ {
+ x = -152,
+ y = -20,
+ sprite = "assets/decorations/rill-lollipop-big-orange.png"
+ },
+ {
+ x = -121,
+ y = 4,
+ sprite = "assets/decorations/rill-lollipop-small-blue.png"
+ },
+ }
+}