diff options
author | Aki <nthirtyone@gmail.com> | 2017-09-06 03:45:35 +0200 |
---|---|---|
committer | Aki <nthirtyone@gmail.com> | 2017-09-06 03:45:35 +0200 |
commit | 438c230b21f93a98f78b03bfc3cf1cad6a6e2655 (patch) | |
tree | f1e0becbf400fdad0580c9e01b8ec46da44b1a09 /config/maps/alpha.lua | |
parent | 0d838536c5fa0f832de796a094a150bd4af73adb (diff) | |
download | roflnauts-438c230b21f93a98f78b03bfc3cf1cad6a6e2655.zip roflnauts-438c230b21f93a98f78b03bfc3cf1cad6a6e2655.tar.gz roflnauts-438c230b21f93a98f78b03bfc3cf1cad6a6e2655.tar.bz2 |
Translated Alpha Abyss map to dev format
Diffstat (limited to 'config/maps/alpha.lua')
-rw-r--r-- | config/maps/alpha.lua | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/config/maps/alpha.lua b/config/maps/alpha.lua new file mode 100644 index 0000000..4f900c2 --- /dev/null +++ b/config/maps/alpha.lua @@ -0,0 +1,44 @@ +return +{ + name = "Alpha Abyss", + theme = "alpha.ogg", + portrait = 7, -- TODO: See `maps/ribbit`. + center = {x = 0, y = -80}, + width = 360, + height = 240, + respawns = { + {x = -30, y = 0}, + {x = 30, y = 0}, + {x = 0, y = 0}, + {x = -120, y = -50}, + {x = 120, y = -50}, + {x = 0, y = -75} + }, + clouds = false, + create = { + { + ratio = 0, + background = "assets/backgrounds/alpha.png", + }, + { + x = -60, + y = 0, + platform = "alpha-big", + }, + { + x = -145, + y = -50, + platform = "alpha-small", + }, + { + x = 85, + y = -50, + platform = "alpha-small", + }, + { + x = -30, + y = -80, + platform = "alpha-small", + } + }, +} |