mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-24 05:23:22 +01:00
Update v0.3
- Lays out structure for item-based modular computers (Tablets) - Changes how icons for modular computers will be handled. - NTNet adjustments - Few fixes
This commit is contained in:
@@ -1,38 +1,42 @@
|
||||
// These programs are associated with engineering.
|
||||
|
||||
/datum/computer_file/program/power_monitor
|
||||
filename = "powermonitor"
|
||||
filedesc = "Power Monitoring"
|
||||
nanomodule_path = /datum/nano_module/power_monitor/
|
||||
laptop_icon_state = "power_monitor"
|
||||
program_icon_state = "power_monitor"
|
||||
requires_ntnet = 1
|
||||
|
||||
/datum/computer_file/program/alarm_monitor
|
||||
filename = "alarmmonitor"
|
||||
filedesc = "Alarm Monitoring"
|
||||
nanomodule_path = /datum/nano_module/alarm_monitor/engineering
|
||||
laptop_icon_state = "alarm_monitor"
|
||||
program_icon_state = "alarm_monitor"
|
||||
requires_ntnet = 1
|
||||
|
||||
/datum/computer_file/program/atmos_control
|
||||
filename = "atmoscontrol"
|
||||
filedesc = "Atmosphere Control"
|
||||
nanomodule_path = /datum/nano_module/atmos_control
|
||||
laptop_icon_state = "atmos_control"
|
||||
program_icon_state = "atmos_control"
|
||||
required_access = access_atmospherics
|
||||
requires_ntnet = 1
|
||||
requires_ntnet_feature = NTNET_SYSTEMCONTROL
|
||||
usage_flags = PROGRAM_LAPTOP & PROGRAM_CONSOLE
|
||||
|
||||
/datum/computer_file/program/rcon_console
|
||||
filename = "rconconsole"
|
||||
filedesc = "RCON Remote Control"
|
||||
nanomodule_path = /datum/nano_module/rcon
|
||||
laptop_icon_state = "rcon_console"
|
||||
program_icon_state = "rcon_console"
|
||||
required_access = access_engine
|
||||
requires_ntnet = 1
|
||||
requires_ntnet_feature = NTNET_SYSTEMCONTROL
|
||||
usage_flags = PROGRAM_LAPTOP & PROGRAM_CONSOLE
|
||||
|
||||
/datum/computer_file/program/suit_sensors
|
||||
filename = "sensormonitor"
|
||||
filedesc = "Suit Sensors Monitoring"
|
||||
nanomodule_path = /datum/nano_module/crew_monitor
|
||||
laptop_icon_state = "suit_sensors"
|
||||
program_icon_state = "suit_sensors"
|
||||
requires_ntnet = 1
|
||||
Reference in New Issue
Block a user