forked from PreLeyZero/248K
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbk_sprites.lua
More file actions
63 lines (62 loc) · 1.21 KB
/
bk_sprites.lua
File metadata and controls
63 lines (62 loc) · 1.21 KB
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
local function sprite(name)
return '__248k__/ressources/booktorio/bk_sprite_'..name
end
data:extend(
{
{
type = "sprite",
name = "bk_sprite_1",
filename = sprite('1.png'),
width = 1245,
height = 1122,
scale = 0.5
},
{
type = "sprite",
name = "bk_sprite_2",
filename = sprite('2.png'),
width = 1044,
height = 826,
scale = 0.5
},
{
type = "sprite",
name = "bk_sprite_3",
filename = sprite('3.png'),
width = 988,
height = 696,
scale = 0.9
},
{
type = "sprite",
name = "bk_sprite_4",
filename = '__248k__/ressources/fusion/fu_fusor/fu_fusor_entity_animation.png',
width = 512*2,
height = 512*2,
scale = 0.4
},
{
type = "sprite",
name = "bk_sprite_5",
filename = '__248k__/ressources/fusion/fu_boiler/fu_boiler_entity_animation.png',
width = 512,
height = 512,
scale = 0.7
},
{
type = "sprite",
name = "bk_sprite_6",
filename = sprite('6.png'),
width = 1080,
height = 1080,
scale = 0.7
},
{
type = "sprite",
name = "bk_sprite_7",
filename = sprite('7.png'),
width = 1292,
height = 627,
scale = 0.7
}
})