aboutsummaryrefslogtreecommitdiff
path: root/src/paperflight/static/levels.js
blob: d82609540a64d8dcafa2cd95c007514e662b44cd (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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
var levels = {
    1: {
        coinsNeeded: 5,
        exit: {
            x: 40, 
            y: 460
        },
        items: [{
            draw: drawVent,
            update: updateVent,
            x: 420,
            y: 580,
            width: 60
        },
        {
            draw: drawRamp,
            update: updateRamp,
            x: 0,
            y: 0,
            slope: 0,
            width: 800,
            height: 40
        },
        {
            draw: drawCoin,
            update: updateCoin,
            x: 40,
            y: 80,
            radius: 10
        },
        {
            draw: drawVent,
            update: updateVent,
            x: 120,
            y: 100,
            width: 280
        },
        {
            draw: drawBlock,
            update: updateBlock,
            x: 580,
            y: 200,
            width: 10,
            height: 250
        },
        {
            draw: drawCoin,
            update: updateCoin,
            x: 700,
            y: 240,
            radius: 10
        },
        {
            draw: drawCoin,
            update: updateCoin,
            x: 700,
            y: 320,
            radius: 10
        },
        {
            draw: drawCoin,
            update: updateCoin,
            x: 700,
            y: 400,
            radius: 10
        },
        {
            draw: drawRamp,
            update: updateRamp,
            x: 70,
            y: 410,
            slope: 2/5,
            width: 200,
            height: 10
        },
        {
            draw: drawRamp,
            update: updateRamp,
            x: 70,
            y: 470,
            slope: 2/5,
            width: 200,
            height: 10
        },
        {
            draw: drawCoin,
            update: updateCoin,
            x: 170,
            y: 405,
            radius: 10
        },
    ]
    }
}