1bighatoffsets = {}
2bighatoffsets["idle"] = {-4, -2}
3bighatoffsets["fire"] = {-5, -4}
4bighatoffsets["running"] = {{-5, -4}, {-4, -3}, {-3, -2}}
5bighatoffsets["sliding"] = {-5, -2}
6bighatoffsets["jumping"] = {-4, -4}
7bighatoffsets["falling"] = {-4, -2}
8bighatoffsets["climbing"] = {{-4, -4}, {-4, -4}}
9bighatoffsets["swimming"] = {{-5, -4}, {-5, -4}}
10bighatoffsets["ducking"] = {-5, -12}
11bighatoffsets["dead"] = false
12
13bighat = {}
14
15table.insert(bighat, {x = 0, y = 0, height = 4, graphic = love.graphics.newImage("graphics/SMB/bighats/standard.png")})
16
17table.insert(bighat, {x = -2, y = -3, height = 5, graphic = love.graphics.newImage("graphics/SMB/bighats/tyrolean.png")})
18
19table.insert(bighat, {x = -2, y = -2, height = 5, graphic = love.graphics.newImage("graphics/SMB/bighats/towering1.png")})
20
21table.insert(bighat, {x = -2, y = -8, height = 9, graphic = love.graphics.newImage("graphics/SMB/bighats/towering2.png")})
22
23table.insert(bighat, {x = -3, y = -1, height = 2, graphic = love.graphics.newImage("graphics/SMB/bighats/towering3.png")})
24
25table.insert(bighat, {x = -1, y = -7, height = 10, graphic = love.graphics.newImage("graphics/SMB/bighats/drseuss.png")})
26
27table.insert(bighat, {x = -3, y = -8, height = 8, graphic = love.graphics.newImage("graphics/SMB/bighats/bird.png")})
28
29table.insert(bighat, {x = -3, y = -2, height = 3, graphic = love.graphics.newImage("graphics/SMB/bighats/banana.png")})
30
31table.insert(bighat, {x = 1, y = -3, height = 3, graphic = love.graphics.newImage("graphics/SMB/bighats/beanie.png")})
32
33table.insert(bighat, {x = -1, y = -5, height = 8, graphic = love.graphics.newImage("graphics/SMB/bighats/toilet.png")})
34
35table.insert(bighat, {x = -1, y = -4, height = 5, graphic = love.graphics.newImage("graphics/SMB/bighats/indian.png")})
36
37table.insert(bighat, {x = -1, y = -2, height = 4, graphic = love.graphics.newImage("graphics/SMB/bighats/officerhat.png")})
38
39table.insert(bighat, {x = -2, y = -3, height = 7, graphic = love.graphics.newImage("graphics/SMB/bighats/crown.png")})
40
41table.insert(bighat, {x = -2, y = -7, height = 10, graphic = love.graphics.newImage("graphics/SMB/bighats/tophat.png")})
42
43table.insert(bighat, {x = -2, y = 1, height = 3, graphic = love.graphics.newImage("graphics/SMB/bighats/batter.png")})
44
45table.insert(bighat, {x = -2, y = 0, height = 3, graphic = love.graphics.newImage("graphics/SMB/bighats/bonk.png")})
46
47table.insert(bighat, {x = 0, y = 0, height = 4, graphic = love.graphics.newImage("graphics/SMB/bighats/bakerboy.png")})
48
49table.insert(bighat, {x = -3, y = 0, height = 3, graphic = love.graphics.newImage("graphics/SMB/bighats/troublemaker.png")})
50
51table.insert(bighat, {x = 0, y = 0, height = 4, graphic = love.graphics.newImage("graphics/SMB/bighats/whoopee.png")})
52
53table.insert(bighat, {x = -1, y = -1, height = 4, graphic = love.graphics.newImage("graphics/SMB/bighats/milkman.png")})
54
55table.insert(bighat, {x = -2, y = 1, height = 3, graphic = love.graphics.newImage("graphics/SMB/bighats/bombingrun.png")})
56
57table.insert(bighat, {x = -4, y = 3, height = 0, graphic = love.graphics.newImage("graphics/SMB/bighats/bonkboy.png")})
58
59table.insert(bighat, {x = -2, y = -1, height = 4, graphic = love.graphics.newImage("graphics/SMB/bighats/flippedtrilby.png")})
60
61table.insert(bighat, {x = 0, y = -1, height = 3, graphic = love.graphics.newImage("graphics/SMB/bighats/superfan.png")})
62
63table.insert(bighat, {x = -1, y = -2, height = 4, graphic = love.graphics.newImage("graphics/SMB/bighats/familiarfez.png")})
64
65table.insert(bighat, {x = -3, y = -1, height = 4, graphic = love.graphics.newImage("graphics/SMB/bighats/santahat.png")})
66
67table.insert(bighat, {x = -1, y = 0, height = 3, graphic = love.graphics.newImage("graphics/SMB/bighats/sailor.png")})
68
69table.insert(bighat, {x = -3, y = 0, height = 5, graphic = love.graphics.newImage("graphics/SMB/bighats/koopa.png")})
70
71table.insert(bighat, {x = -2, y = -5, height = 5, graphic = love.graphics.newImage("graphics/SMB/bighats/blooper.png")})
72
73table.insert(bighat, {x = -1, y = 1, height = 3, graphic = love.graphics.newImage("graphics/SMB/bighats/shyguy.png")})
74
75table.insert(bighat, {x = -1, y = 3, height = 4, graphic = love.graphics.newImage("graphics/SMB/bighats/goodnewseverybody.png")})
76
77table.insert(bighat, {x = -3, y = -1, height = 5, graphic = love.graphics.newImage("graphics/SMB/bighats/jetset.png")})
78
79table.insert(bighat, {x = -2, y = 0, height = 5, graphic = love.graphics.newImage("graphics/SMB/bighats/bestpony.png")})
80