-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.lua
More file actions
47 lines (47 loc) · 1.2 KB
/
Copy pathdata.lua
File metadata and controls
47 lines (47 loc) · 1.2 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
data:extend{{
type = 'car',
name = 'Underground',
icon = '__base__/graphics/icons/underground-belt.png',
icon_size = 64,
icon_mipmaps = 4,
flags = {'placeable-neutral', 'player-creation', 'placeable-off-grid', 'not-flammable'},
max_health = 100,
energy_per_hit_point = 1,
has_belt_immunity = true,
resistances = {{
type = 'fire',
percent = 100
}, {
type = 'impact',
percent = 100,
decrease = 50
}, {
type = 'acid',
percent = 100
}},
collision_box = {{-1, -1}, {1, 1}},
collision_mask = {},
selection_box = {{-0, -0}, {0, 0}},
effectivity = 1e-44,
braking_force = 1e-44,
energy_source = {
type = 'void'
},
consumption = '0kW',
friction = 1e-44,
render_layer = 'object',
animation = {
layers = {{
filename = '__core__/graphics/empty.png',
priority = 'low',
direction_count = 1,
width = 1,
height = 1,
frame_count = 1
}}
},
turret_rotation_speed = 1e-44,
rotation_speed = 1e-44,
weight = 1e-44,
inventory_size = 0
}}