-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathdata.lua
More file actions
79 lines (74 loc) · 1.69 KB
/
data.lua
File metadata and controls
79 lines (74 loc) · 1.69 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
require("fusion-construction-robot")
data:extend(
{
{
type = "equipment-grid",
name = "mini-equipment-grid",
width = 6,
height = 4,
equipment_categories = {"armor"}
},
{
type = "item",
name = "fusion-construction-robot",
icon = "__FasterStart__/graphics/icons/fusion-construction-robot.png",
icon_size = 64,
icon_mipmaps = 4,
subgroup = "logistic-network",
order = "a[robot]-b[construction-robot]-a[fusion-construction-robot]",
place_result = "fusion-construction-robot",
stack_size = 50
},
{
type = "item",
name = "mini-fusion-reactor-equipment",
icons =
{{
icon = "__base__/graphics/icons/fusion-reactor-equipment.png",
tint = {r=0.53, g=0.81, b=0.92, a=1}
}},
icon_size = 64,
icon_mipmaps = 4,
placed_as_equipment_result = "mini-fusion-reactor-equipment",
subgroup = "equipment",
order = "a[energy-source]-b[fusion-reactor]-a[mini-fusion-reactor-equipment]",
stack_size = 20
},
{
type = "armor",
name = "mini-power-armor",
icon = "__FasterStart__/graphics/icons/mini-power-armor.png",
icon_size = 64,
icon_mipmaps = 4,
subgroup = "armor",
order = "c[modular-armor]-a[mini-power-armor]",
stack_size = 1,
infinite = true,
equipment_grid = "mini-equipment-grid",
inventory_size_bonus = 10
},
{
type = "generator-equipment",
name = "mini-fusion-reactor-equipment",
sprite =
{
filename = "__FasterStart__/graphics/equipment/mini-fusion-reactor-equipment.png",
width = 65,
height = 128,
priority = "medium"
},
shape =
{
width = 2,
height = 4,
type = "full"
},
energy_source =
{
type = "electric",
usage_priority = "primary-output"
},
power = "250kW",
categories = {"armor"}
}
})