-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtiers.lua
More file actions
62 lines (61 loc) · 994 Bytes
/
tiers.lua
File metadata and controls
62 lines (61 loc) · 994 Bytes
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
local api = robot.internal_api
-- local S = api.translator
api.add_tier('man', {
name_prefix = "norm_",
delay = 2,
ability_slots = 5,
inventory_size = 1,
form_size = 8,
max_fall = 10,
})
api.add_tier('devil', {
name_prefix = "dark_",
delay = 3,
ability_slots = 6,
inventory_size = 2,
form_size = 9,
max_fall = 13,
extra_abilities = {
"boost",
}
})
api.add_tier('god', {
name_prefix = "light_",
delay = 4,
ability_slots = 7,
inventory_size = 4,
form_size = 10,
max_fall = 16,
models = {
body = 'octohedron.obj',
legs = 'dome.obj',
},
node_boxes = {
head = {
type = "fixed",
fixed = {
{-1/4, -1/4, -1/4, 1/4, 1/4, 1/4},
},
}
},
extra_props = {
paramtype = "light",
light_source = 1,
collision_box = {
type = "fixed",
fixed = {
{-3/8, -3/8, -3/8, 3/8, 3/8, 3/8},
},
},
selection_box = {
type = "fixed",
fixed = {
{-3/8, -3/8, -3/8, 3/8, 3/8, 3/8},
},
},
},
extra_abilities = {
"fuel_swap",
"boost",
}
})