mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-19 06:03:14 +00:00
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>
28 lines
1.3 KiB
Plaintext
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 ..()
|