-
Notifications
You must be signed in to change notification settings - Fork 17
/
hatconfigs.lua
209 lines (176 loc) · 4.69 KB
/
hatconfigs.lua
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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
local i
hat = {}
i = 1
hat[i] = {}
hat[i].x = 7
hat[i].y = 2
hat[i].height = 2
hat[i].graphic = love.graphics.newImage("graphics/standardhats/standard.png")
i = 2
hat[i] = {}
hat[i].x = 5
hat[i].y = -3
hat[i].height = 4
hat[i].graphic = love.graphics.newImage("graphics/standardhats/tyrolean.png")
i = 3
hat[i] = {}
hat[i].x = 5
hat[i].y = -1
hat[i].height = 4
hat[i].graphic = love.graphics.newImage("graphics/standardhats/towering1.png")
i = 4
hat[i] = {}
hat[i].x = 5
hat[i].y = -6
hat[i].height = 8
hat[i].graphic = love.graphics.newImage("graphics/standardhats/towering2.png")
i = 5
hat[i] = {}
hat[i].x = 5
hat[i].y = 1
hat[i].height = 2
hat[i].graphic = love.graphics.newImage("graphics/standardhats/towering3.png")
i = 6
hat[i] = {}
hat[i].x = 5
hat[i].y = -7
hat[i].height = 10
hat[i].graphic = love.graphics.newImage("graphics/standardhats/drseuss.png")
i = 7
hat[i] = {}
hat[i].x = 4
hat[i].y = -7
hat[i].height = 8
hat[i].graphic = love.graphics.newImage("graphics/standardhats/bird.png")
i = 8
hat[i] = {}
hat[i].x = 4
hat[i].y = -1
hat[i].height = 3
hat[i].graphic = love.graphics.newImage("graphics/standardhats/banana.png")
i = 9
hat[i] = {}
hat[i].x = 7
hat[i].y = -2
hat[i].height = 3
hat[i].graphic = love.graphics.newImage("graphics/standardhats/beanie.png")
i = 10
hat[i] = {}
hat[i].x = 7
hat[i].y = -5
hat[i].height = 8
hat[i].graphic = love.graphics.newImage("graphics/standardhats/toilet.png")
i = 11
hat[i] = {}
hat[i].x = 5
hat[i].y = -4
hat[i].height = 5
hat[i].graphic = love.graphics.newImage("graphics/standardhats/indian.png")
i = 12
hat[i] = {}
hat[i].x = 6
hat[i].y = -1
hat[i].height = 3
hat[i].graphic = love.graphics.newImage("graphics/standardhats/officerhat.png")
i = 13
hat[i] = {}
hat[i].x = 5
hat[i].y = -3
hat[i].height = 6
hat[i].graphic = love.graphics.newImage("graphics/standardhats/crown.png")
i = 14
hat[i] = {}
hat[i].x = 5
hat[i].y = -5
hat[i].height = 9
hat[i].graphic = love.graphics.newImage("graphics/standardhats/tophat.png")
i = 15
hat[i] = {}
hat[i].x = 6
hat[i].y = 1
hat[i].height = 2
hat[i].graphic = love.graphics.newImage("graphics/standardhats/batter.png")
i = 16
hat[i] = {}
hat[i].x = 6
hat[i].y = 0
hat[i].height = 2
hat[i].graphic = love.graphics.newImage("graphics/standardhats/bonk.png")
i = 17
hat[i] = {}
hat[i].x = 6
hat[i].y = 0
hat[i].height = 3
hat[i].graphic = love.graphics.newImage("graphics/standardhats/bakerboy.png")
i = 18
hat[i] = {}
hat[i].x = 5
hat[i].y = 1
hat[i].height = 2
hat[i].graphic = love.graphics.newImage("graphics/standardhats/troublemaker.png")
i = 19
hat[i] = {}
hat[i].x = 7
hat[i].y = 1
hat[i].height = 3
hat[i].graphic = love.graphics.newImage("graphics/standardhats/whoopee.png")
i = 20
hat[i] = {}
hat[i].x = 6
hat[i].y = -1
hat[i].height = 4
hat[i].graphic = love.graphics.newImage("graphics/standardhats/milkman.png")
i = 21
hat[i] = {}
hat[i].x = 6
hat[i].y = 1
hat[i].height = 2
hat[i].graphic = love.graphics.newImage("graphics/standardhats/bombingrun.png")
i = 22
hat[i] = {}
hat[i].x = 4
hat[i].y = 3
hat[i].height = 0
hat[i].graphic = love.graphics.newImage("graphics/standardhats/bonkboy.png")
i = 23
hat[i] = {}
hat[i].x = 6
hat[i].y = 0
hat[i].height = 3
hat[i].graphic = love.graphics.newImage("graphics/standardhats/flippedtrilby.png")
i = 24
hat[i] = {}
hat[i].x = 7
hat[i].y = 0
hat[i].height = 3
hat[i].graphic = love.graphics.newImage("graphics/standardhats/superfan.png")
i = 25
hat[i] = {}
hat[i].x = 6
hat[i].y = -2
hat[i].height = 4
hat[i].graphic = love.graphics.newImage("graphics/standardhats/familiarfez.png")
i = 26
hat[i] = {}
hat[i].x = 3
hat[i].y = 0
hat[i].height = 4
hat[i].graphic = love.graphics.newImage("graphics/standardhats/santahat.png")
i = 27
hat[i] = {}
hat[i].x = 6
hat[i].y = 0
hat[i].height = 2
hat[i].graphic = love.graphics.newImage("graphics/standardhats/sailor.png")
i = 28
hat[i] = {}
hat[i].x = 3
hat[i].y = -3
hat[i].height = 5
hat[i].graphic = love.graphics.newImage("graphics/standardhats/koopa.png")
table.insert(hat, {x = 5, y = -5, height = 5, graphic = love.graphics.newImage("graphics/standardhats/blooper.png")})
--30:
table.insert(hat, {x = 7, y = 1, height = 2, graphic = love.graphics.newImage("graphics/standardhats/shyguy.png")})
table.insert(hat, {x = 6, y = 4, height = 4, graphic = love.graphics.newImage("graphics/standardhats/goodnewseverybody.png")})
table.insert(hat, {x = 5, y = 1, height = 4, graphic = love.graphics.newImage("graphics/standardhats/jetset.png")})
table.insert(hat, {x = 6, y = 1, height = 4, graphic = love.graphics.newImage("graphics/standardhats/bestpony.png")})