mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-19 02:59:17 +01:00
* Replaces modular computer card eject verbs with UI buttons (#52489) * Replaces mod-CPU card eject verbs with UI buttons * ? * Replaces modular computer card eject verbs with UI buttons Co-authored-by: zxaber <37497534+zxaber@users.noreply.github.com>
29 lines
892 B
Plaintext
29 lines
892 B
Plaintext
/obj/item/computer_hardware/hard_drive/portable
|
|
name = "data disk"
|
|
desc = "Removable disk used to store data."
|
|
power_usage = 10
|
|
icon_state = "datadisk6"
|
|
w_class = WEIGHT_CLASS_TINY
|
|
critical = 0
|
|
max_capacity = 16
|
|
device_type = MC_SDD
|
|
|
|
/obj/item/computer_hardware/hard_drive/portable/on_remove(obj/item/modular_computer/MC, mob/user)
|
|
return //this is a floppy disk, let's not shut the computer down when it gets pulled out.
|
|
|
|
/obj/item/computer_hardware/hard_drive/portable/install_default_programs()
|
|
return // Empty by default
|
|
|
|
/obj/item/computer_hardware/hard_drive/portable/advanced
|
|
name = "advanced data disk"
|
|
power_usage = 20
|
|
icon_state = "datadisk5"
|
|
max_capacity = 64
|
|
|
|
/obj/item/computer_hardware/hard_drive/portable/super
|
|
name = "super data disk"
|
|
desc = "Removable disk used to store large amounts of data."
|
|
power_usage = 40
|
|
icon_state = "datadisk3"
|
|
max_capacity = 256
|