aboutsummaryrefslogtreecommitdiff
path: root/src/paperflight/static/levels.js
blob: e1628b1a1d964f5689a2e672d878ac995f326dda (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
/**
 * Creates the levels object for the game
 */
function createLevel(title, coinsNeeded, exitX, exitY) {
    return {
        items: [constructBlock(0, 0, 800, 30)],
        exit: {
            x: exitX,
            y: exitY,
            radius: 20
        },
        title, coinsNeeded
    }
}
var levels = {}
levels[1] = createLevel("Downwards Dash", 5, 40, 460)
levels[1].items.push(
    constructVent(420, 580, 60, 600),
    constructCoin(40, 80),
    constructVent(120, 100, 280, 100),
    constructBlock(580, 200, 10, 250),
    constructCoin(700, 240),
    constructCoin(700, 320),
    constructCoin(700, 400),
    constructRamp(70, 400, 200, 10, 2 / 5),
    constructRamp(70, 480, 200, 10, 2 / 5),
    constructCoin(170, 405),
)

levels[2] = createLevel("Switch madness", 0, 40, 460)
levels[2].items.push(
    constructSwitch(120, 400, 60, 60, 3),
    constructRect(300, 400, 60, 60, 0),
    constructRect(400, 400, 60, 60, 1),
    constructRect(500, 400, 60, 60, 2),
)