diff options
author | Aki <nthirtyone@gmail.com> | 2017-04-07 03:06:26 +0200 |
---|---|---|
committer | Aki <nthirtyone@gmail.com> | 2017-04-07 03:06:26 +0200 |
commit | 54e85dd188af15cd5f3f5e08f5d3e69088a909b1 (patch) | |
tree | 7d188fd4142d8690321df69281ce8d5c55fbfa2b /config/maps/ribbit.lua | |
parent | 37767d6c54ea6af0b4631b5ce838ee584603895e (diff) | |
download | roflnauts-54e85dd188af15cd5f3f5e08f5d3e69088a909b1.zip roflnauts-54e85dd188af15cd5f3f5e08f5d3e69088a909b1.tar.gz roflnauts-54e85dd188af15cd5f3f5e08f5d3e69088a909b1.tar.bz2 |
Moved map configs to config directory
Diffstat (limited to 'config/maps/ribbit.lua')
-rw-r--r-- | config/maps/ribbit.lua | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/config/maps/ribbit.lua b/config/maps/ribbit.lua new file mode 100644 index 0000000..c3f5c78 --- /dev/null +++ b/config/maps/ribbit.lua @@ -0,0 +1,46 @@ +return { + -- GENERAL + name = "ribbit", + theme = "ribbit.ogg", + center_x = 0, + center_y = 50, + 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 = false, + background = "assets/backgrounds/ribbit.png", + platforms = { + { + x = -154, + y = 10, + shape = {1,12, 48,12, 48,32, 1,32}, + sprite = "assets/platforms/ribbit-left.png" + }, + { + x = 67, + y = 7, + shape = {36,14, 83,14, 83,29, 36,29}, + sprite = "assets/platforms/ribbit-right.png" + }, + { + x = -70, + y = -5, + shape = {0,3, 139,3, 134,24, 5,24}, + sprite = "assets/platforms/ribbit-top.png" + }, + { + x = -54, + y = 63, + shape = {0,3, 107,3, 75,44, 32,44}, + sprite = "assets/platforms/ribbit-bottom.png" + } + }, + decorations = {} +}
\ No newline at end of file |