From ae44f772060f98eabe0bb33170e7bf5090c1c328 Mon Sep 17 00:00:00 2001 From: Aki Date: Mon, 16 Jan 2017 13:29:54 +0100 Subject: Alpha Abyss map (#24) - Added Alpha Abyss map setting file - Added Alpha Abyss to maplist - Added Alpha Abyss to map icon sheet - Changed size of map icon sheet in mapicon --- maps/alpha abyss.lua | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 maps/alpha abyss.lua (limited to 'maps/alpha abyss.lua') diff --git a/maps/alpha abyss.lua b/maps/alpha abyss.lua new file mode 100644 index 0000000..a3b6153 --- /dev/null +++ b/maps/alpha abyss.lua @@ -0,0 +1,49 @@ +-- The abyss of the alpha. +return { + -- GENERAL + name = "alpha abyss", + theme = "alpha.ogg", + center_x = 0, + center_y = -80, + width = 360, + height = 240, + -- RESPAWN POINTS + 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} + }, + -- GRAPHICS + clouds = false, + background = "assets/backgrounds/alpha-1.png", + platforms = { + { + x = -60, + y = 0, + shape = {0,0, 117,0, 101,50, 16,50}, + sprite = "assets/platforms/alpha-big-1.png" + }, + { + x = -145, + y = -50, + shape = {0,0, 59,0, 59,19, 0,19}, + sprite = "assets/platforms/alpha-small-1.png" + }, + { + x = 85, + y = -50, + shape = {0,0, 59,0, 59,19, 0,19}, + sprite = "assets/platforms/alpha-small-1.png" + }, + { + x = -30, + y = -80, + shape = {0,0, 59,0, 59,19, 0,19}, + sprite = "assets/platforms/alpha-small-1.png" + } + }, + decorations = {} +} -- cgit v1.1