summaryrefslogtreecommitdiffhomepage
path: root/maps/alpha abyss.lua
blob: 2df6adc49056d928c3b6fa02dbbe9382e50573be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
-- The abyss of the alpha.
local animations_small = {
	default = {
		[1] = love.graphics.newQuad(0, 0, 60,20, 600,20),
		[2] = love.graphics.newQuad(60, 0, 60,20, 600,20),
		[3] = love.graphics.newQuad(120, 0, 60,20, 600,20),
		[4] = love.graphics.newQuad(180, 0, 60,20, 600,20),
		[5] = love.graphics.newQuad(240, 0, 60,20, 600,20),
		[6] = love.graphics.newQuad(300, 0, 60,20, 600,20),
		[7] = love.graphics.newQuad(360, 0, 60,20, 600,20),
		[8] = love.graphics.newQuad(420, 0, 60,20, 600,20),
		[9] = love.graphics.newQuad(480, 0, 60,20, 600,20),
		[10] = love.graphics.newQuad(540, 0, 60,20, 600,20),
		frames = 10,
		repeated = true
	}
}
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.png",
			animations = animations_small
		},
		{
			x = 85,
			y = -50,
			shape = {0,0, 59,0, 59,19, 0,19},
			sprite = "assets/platforms/alpha-small.png",
			animations = animations_small
		},
		{
			x = -30,
			y = -80,
			shape = {0,0, 59,0, 59,19, 0,19},
			sprite = "assets/platforms/alpha-small.png",
			animations = animations_small
		}
	},
	decorations = {}
}