forked from Stabyourself/mari0
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bighatconfigs.lua
79 lines (45 loc) · 4.36 KB
/
bighatconfigs.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
bighatoffsets = {}
bighatoffsets["idle"] = {-4, -2}
bighatoffsets["fire"] = {-5, -4}
bighatoffsets["running"] = {{-5, -4}, {-4, -3}, {-3, -2}}
bighatoffsets["sliding"] = {-5, -2}
bighatoffsets["jumping"] = {-4, -4}
bighatoffsets["falling"] = {-4, -2}
bighatoffsets["climbing"] = {{-4, -4}, {-4, -4}}
bighatoffsets["swimming"] = {{-5, -4}, {-5, -4}}
bighatoffsets["ducking"] = {-5, -12}
bighatoffsets["dead"] = false
bighat = {}
table.insert(bighat, {x = 0, y = 0, height = 4, graphic = love.graphics.newImage("graphics/SMB/bighats/standard.png")})
table.insert(bighat, {x = -2, y = -3, height = 5, graphic = love.graphics.newImage("graphics/SMB/bighats/tyrolean.png")})
table.insert(bighat, {x = -2, y = -2, height = 5, graphic = love.graphics.newImage("graphics/SMB/bighats/towering1.png")})
table.insert(bighat, {x = -2, y = -8, height = 9, graphic = love.graphics.newImage("graphics/SMB/bighats/towering2.png")})
table.insert(bighat, {x = -3, y = -1, height = 2, graphic = love.graphics.newImage("graphics/SMB/bighats/towering3.png")})
table.insert(bighat, {x = -1, y = -7, height = 10, graphic = love.graphics.newImage("graphics/SMB/bighats/drseuss.png")})
table.insert(bighat, {x = -3, y = -8, height = 8, graphic = love.graphics.newImage("graphics/SMB/bighats/bird.png")})
table.insert(bighat, {x = -3, y = -2, height = 3, graphic = love.graphics.newImage("graphics/SMB/bighats/banana.png")})
table.insert(bighat, {x = 1, y = -3, height = 3, graphic = love.graphics.newImage("graphics/SMB/bighats/beanie.png")})
table.insert(bighat, {x = -1, y = -5, height = 8, graphic = love.graphics.newImage("graphics/SMB/bighats/toilet.png")})
table.insert(bighat, {x = -1, y = -4, height = 5, graphic = love.graphics.newImage("graphics/SMB/bighats/indian.png")})
table.insert(bighat, {x = -1, y = -2, height = 4, graphic = love.graphics.newImage("graphics/SMB/bighats/officerhat.png")})
table.insert(bighat, {x = -2, y = -3, height = 7, graphic = love.graphics.newImage("graphics/SMB/bighats/crown.png")})
table.insert(bighat, {x = -2, y = -7, height = 10, graphic = love.graphics.newImage("graphics/SMB/bighats/tophat.png")})
table.insert(bighat, {x = -2, y = 1, height = 3, graphic = love.graphics.newImage("graphics/SMB/bighats/batter.png")})
table.insert(bighat, {x = -2, y = 0, height = 3, graphic = love.graphics.newImage("graphics/SMB/bighats/bonk.png")})
table.insert(bighat, {x = 0, y = 0, height = 4, graphic = love.graphics.newImage("graphics/SMB/bighats/bakerboy.png")})
table.insert(bighat, {x = -3, y = 0, height = 3, graphic = love.graphics.newImage("graphics/SMB/bighats/troublemaker.png")})
table.insert(bighat, {x = 0, y = 0, height = 4, graphic = love.graphics.newImage("graphics/SMB/bighats/whoopee.png")})
table.insert(bighat, {x = -1, y = -1, height = 4, graphic = love.graphics.newImage("graphics/SMB/bighats/milkman.png")})
table.insert(bighat, {x = -2, y = 1, height = 3, graphic = love.graphics.newImage("graphics/SMB/bighats/bombingrun.png")})
table.insert(bighat, {x = -4, y = 3, height = 0, graphic = love.graphics.newImage("graphics/SMB/bighats/bonkboy.png")})
table.insert(bighat, {x = -2, y = -1, height = 4, graphic = love.graphics.newImage("graphics/SMB/bighats/flippedtrilby.png")})
table.insert(bighat, {x = 0, y = -1, height = 3, graphic = love.graphics.newImage("graphics/SMB/bighats/superfan.png")})
table.insert(bighat, {x = -1, y = -2, height = 4, graphic = love.graphics.newImage("graphics/SMB/bighats/familiarfez.png")})
table.insert(bighat, {x = -3, y = -1, height = 4, graphic = love.graphics.newImage("graphics/SMB/bighats/santahat.png")})
table.insert(bighat, {x = -1, y = 0, height = 3, graphic = love.graphics.newImage("graphics/SMB/bighats/sailor.png")})
table.insert(bighat, {x = -3, y = 0, height = 5, graphic = love.graphics.newImage("graphics/SMB/bighats/koopa.png")})
table.insert(bighat, {x = -2, y = -5, height = 5, graphic = love.graphics.newImage("graphics/SMB/bighats/blooper.png")})
table.insert(bighat, {x = -1, y = 1, height = 3, graphic = love.graphics.newImage("graphics/SMB/bighats/shyguy.png")})
table.insert(bighat, {x = -1, y = 3, height = 4, graphic = love.graphics.newImage("graphics/SMB/bighats/goodnewseverybody.png")})
table.insert(bighat, {x = -3, y = -1, height = 5, graphic = love.graphics.newImage("graphics/SMB/bighats/jetset.png")})
table.insert(bighat, {x = -2, y = 0, height = 5, graphic = love.graphics.newImage("graphics/SMB/bighats/bestpony.png")})