mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-14 19:51:59 +00:00
* Fixes some stupid behavior in computer hardware code. (#61350) * Fixes some stupid behavior in computer hardware code. Co-authored-by: LemonInTheDark <58055496+LemonInTheDark@users.noreply.github.com>
29 lines
905 B
Plaintext
29 lines
905 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 = FALSE
|
|
max_capacity = 16
|
|
device_type = MC_SDD
|
|
|
|
/obj/item/computer_hardware/hard_drive/portable/on_remove(obj/item/modular_computer/remove_from, 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
|