summaryrefslogtreecommitdiffhomepage
path: root/maps/rill.lua
diff options
context:
space:
mode:
authorAki <nthirtyone@gmail.com>2016-07-31 21:59:07 +0200
committerAki <nthirtyone@gmail.com>2016-07-31 21:59:07 +0200
commit125a5b85f8a252a162d4ed7539cf3964b2101c48 (patch)
treef9a386b4893ec76ed9e91d1c45d96a83f6a438f2 /maps/rill.lua
parent95751a8ba1a2881972ab50fabc72526ee989a29f (diff)
downloadroflnauts-125a5b85f8a252a162d4ed7539cf3964b2101c48.zip
roflnauts-125a5b85f8a252a162d4ed7539cf3964b2101c48.tar.gz
roflnauts-125a5b85f8a252a162d4ed7539cf3964b2101c48.tar.bz2
Map editing and general map update
Diffstat (limited to 'maps/rill.lua')
-rw-r--r--maps/rill.lua51
1 files changed, 51 insertions, 0 deletions
diff --git a/maps/rill.lua b/maps/rill.lua
new file mode 100644
index 0000000..bf915d3
--- /dev/null
+++ b/maps/rill.lua
@@ -0,0 +1,51 @@
+return {
+ -- CENTER AND SIZE
+ name = "rill",
+ center_x = 0,
+ center_y = 60,
+ width = 320,
+ height = 240,
+ -- RESPAWN POINTS
+ respawns = {
+ {x = -100, y = 10},
+ {x = -100, y = 10},
+ {x = 100, y = 10},
+ {x = 100, y = 10}
+ },
+ -- GRAPHICS
+ clouds = false,
+ background = "assets/background-rill.png",
+ platforms = {
+ {
+ x = -120,
+ y = 30,
+ shape = {0,0, 40,0, 40,15, 0,15},
+ sprite = "assets/platform_top.png"
+ },
+ {
+ x = 80,
+ y = 30,
+ shape = {0,0, 40,0, 40,15, 0,15},
+ sprite = "assets/platform_top.png"
+ },
+ {
+ x = -15,
+ y = 70,
+ shape = {0,0, 30,0, 30,15, 0,15},
+ sprite = "assets/platform_top.png"
+ },
+ {
+ x = -110,
+ y = 90,
+ shape = {0,0, 10,-10, 90,80, 80,90},
+ sprite = "assets/platform_top.png"
+ },
+ {
+ x = 110,
+ y = 90,
+ shape = {0,0, -10,-10, -90,80, -80,90},
+ sprite = "assets/platform_top.png"
+ }
+ },
+ decorations = {}
+} \ No newline at end of file