aboutsummaryrefslogtreecommitdiff
path: root/src/paperflight/static/levels.js
blob: aba97128f6492621fb2c384cb1cdcb7b2453fa46 (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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
var levels = {
    1: {
        coinsNeeded: 0,
        exit: {
            x: 40,
            y: 460
        },
        title: "Switch madness",
        items: [{
            draw: drawSwitch,
            update: updateSwitch,
            x: 120,
            y: 400,
            width: 60,
            height: 60,
            stateCount: 3
        },
        {
            draw: drawSwitchRect,
            update: updateSwitchRect,
            x: 300,
            y: 400,
            width: 60,
            height: 60,
            state: 0
        },
        {
            draw: drawSwitchRect,
            update: updateSwitchRect,
            x: 400,
            y: 400,
            width: 60,
            height: 60,
            state: 1
        },
        {
            draw: drawSwitchRect,
            update: updateSwitchRect,
            x: 500,
            y: 400,
            width: 60,
            height: 60,
            state: 2
        },
        ]
    },
    2: {
        coinsNeeded: 5,
        exit: {
            x: 40,
            y: 460
        },
        title: "Downwards Dash",
        items: [{
            draw: drawVent,
            update: updateVent,
            x: 420,
            y: 580,
            width: 60,
            height: 600
        },
        {
            draw: drawCoin,
            update: updateCoin,
            x: 40,
            y: 80,
            radius: 10
        },
        {
            draw: drawVent,
            update: updateVent,
            x: 120,
            y: 100,
            width: 280,
            height: 100
        },
        {
            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
        },
        {
            draw: drawRamp,
            update: updateRamp,
            x: 0,
            y: 0,
            slope: 0,
            width: 800,
            height: 40
        },
        ]
    }
}