Files
project-cybersyn/cybersyn/prototypes/signal.lua
Monica Moniot 2c5bee0c6a added graphics
2022-11-05 10:31:14 -04:00

44 lines
970 B
Lua

--By Mami
subgroup_signal = {
type = "item-subgroup",
name = "cybersyn-signal",
group = "signals",
order = "f"
}
priority_signal = {
type = "virtual-signal",
name = SIGNAL_PRIORITY,
icon = "__cybersyn__/graphics/icons/priority.png",
icon_size = 64,
icon_mipmaps = 4,
subgroup = "cybersyn-signal",
order = "a"
}
p_threshold_signal = {
type = "virtual-signal",
name = PROVIDE_THRESHOLD,
icon = "__cybersyn__/graphics/icons/provide-threshold.png",
icon_size = 64,
icon_mipmaps = 4,
subgroup = "cybersyn-signal",
order = "b"
}
r_threshold_signal = {
type = "virtual-signal",
name = REQUEST_THRESHOLD,
icon = "__cybersyn__/graphics/icons/request-threshold.png",
icon_size = 64,
icon_mipmaps = 4,
subgroup = "cybersyn-signal",
order = "c"
}
locked_slots_signal = {
type = "virtual-signal",
name = LOCKED_SLOTS,
icon = "__cybersyn__/graphics/icons/locked-slots.png",
icon_size = 64,
icon_mipmaps = 4,
subgroup = "cybersyn-signal",
order = "d"
}