Files
Bubberstation/code/modules/modular_computers/computers/item/disks/maintenance_disks.dm
SkyratBot cbaee82e73 [MIRROR] The Spectre-Meter App, also a bootleg data disk item for the black market. [MDB IGNORE] (#25717)
The Spectre-Meter App, also a bootleg data disk item for the black market.

Co-authored-by: Ghom <42542238+Ghommie@users.noreply.github.com>
Co-authored-by: Gandalf <9026500+Gandalf2k15@users.noreply.github.com>
2023-12-24 23:25:23 +00:00

28 lines
1.3 KiB
Plaintext

/obj/item/computer_disk/maintenance
name = "maintenance data disk"
desc = "A data disk forgotten in the depths of maintenance, might have some useful program on it."
/// Medical health analyzer app
/obj/item/computer_disk/maintenance/scanner
starting_programs = list(/datum/computer_file/program/maintenance/phys_scanner)
///Camera app, forced to always have largest image size
/obj/item/computer_disk/maintenance/camera
starting_programs = list(/datum/computer_file/program/maintenance/camera)
///MODsuit UI, in your PDA!
/obj/item/computer_disk/maintenance/modsuit_control
starting_programs = list(/datum/computer_file/program/maintenance/modsuit_control)
///Returns A 'spookiness' value based on the number of ghastly creature and hauntium and their distance from the PC.
/obj/item/computer_disk/maintenance/spectre_meter
starting_programs = list(/datum/computer_file/program/maintenance/spectre_meter)
///A version of the arcade program with less HP/MP for the enemy and more for the player
/obj/item/computer_disk/maintenance/arcade
starting_programs = list(/datum/computer_file/program/arcade/eazy)
/obj/item/computer_disk/maintenance/theme/Initialize(mapload)
starting_programs = list(pick(subtypesof(/datum/computer_file/program/maintenance/theme)))
return ..()