mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-15 04:01:41 +00:00
## About The Pull Request Adds a maintenance disk that makes your PDA turn your mouse cursor into a cool sword when it's worn in your ID slot https://github.com/tgstation/tgstation/assets/51863163/ae5c50a1-e6fd-40bb-8957-4af2f6618cba ## Why It's Good For The Game I saw a discord comment about this and it made me laugh. ## Changelog 🆑 Melberte add: Cool Sword Cursor Maintenance App /🆑
31 lines
1.4 KiB
Plaintext
31 lines
1.4 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 ..()
|
|
|
|
/obj/item/computer_disk/maintenance/cool_sword
|
|
starting_programs = list(/datum/computer_file/program/maintenance/cool_sword)
|