diff options
author | Aki <nthirtyone@gmail.com> | 2017-09-13 00:08:06 +0200 |
---|---|---|
committer | Aki <nthirtyone@gmail.com> | 2017-09-13 00:08:06 +0200 |
commit | ddf8c5f880e7175ce316e61471743654b2486d14 (patch) | |
tree | 8703364dd67fd54394072485d47ecca953f7f33a /config/maps | |
parent | c201bef4950138bd8c475d9b8cd1c26e0615145a (diff) | |
download | roflnauts-ddf8c5f880e7175ce316e61471743654b2486d14.zip roflnauts-ddf8c5f880e7175ce316e61471743654b2486d14.tar.gz roflnauts-ddf8c5f880e7175ce316e61471743654b2486d14.tar.bz2 |
Backgroundless, themeless and iconless AI Station 205 added
Diffstat (limited to 'config/maps')
-rw-r--r-- | config/maps/205.lua | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/config/maps/205.lua b/config/maps/205.lua new file mode 100644 index 0000000..3fb348f --- /dev/null +++ b/config/maps/205.lua @@ -0,0 +1,47 @@ +return +{ + name = "AI Station 205", + theme = "sorona.ogg", + portrait = 1, -- TODO: See `maps/ribbit`. + center = {x = 0, y = 0}, + width = 360, + height = 240, + respawns = { + {x = -10, y = -55}, + {x = 0, y = -55}, + {x = 10, y = -55} + }, + clouds = false, + create = { + { + x = -36, + y = -48, + platform = "205-top" + }, + { + x = -36+9, + y = -48+11, + decoration = "assets/decorations/205-exhaust-top.png" + }, + { + x = -122, + y = 10, + platform = "205-left" + }, + { + x = -122+49, + y = 10+2, + decoration = "assets/decorations/205-exhaust-left.png" + }, + { + x = 28, + y = 10, + platform = "205-right" + }, + { + x = 28+29, + y = 10+2, + decoration = "assets/decorations/205-exhaust-right.png" + } + } +} |