aboutsummaryrefslogtreecommitdiff
path: root/src/paperflight/static/levels.js
blob: 7555afb2c0a50b0b7afa29de18fa47c0fe792ccb (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
/**
 * Creates the levels object for the game
 */
var levels = {
    2: {
        coinsNeeded: 0,
        exit: {
            x: 40,
            y: 460
        },
        title: "Switch madness",
        items: [
            constructSwitch(120, 400, 60, 60, 3),
            constructRect(300, 400, 60, 60, 0),
            constructRect(400, 400, 60, 60, 1),
            constructRect(500, 400, 60, 60, 2),
        ]
    },
    1: {
        coinsNeeded: 5,
        exit: {
            x: 40,
            y: 460
        },
        title: "Downwards Dash",
        items: [
            constructVent(420, 580, 60, 300),
            constructCoin(40, 80),
            constructVent(120, 100, 280, 100),
            constructBlock(580, 200, 10, 250),
            constructCoin(700, 240),
            constructCoin(700, 320),
            constructCoin(700, 400),
            constructRamp(70, 410, 200, 10, 2/5),
            constructRamp(70, 470, 200, 10, 2/5),
            constructCoin(170, 405),
            constructBlock(0, 0, 800, 40)
        ]
    }
}