Files
Polaris/code/modules/modular_computers/hardware/portable_hard_drive.dm
Unknown cce3116c3a Ports Modular Computers from Baystation
This is just the initial parts. Additional work will probably be necessary.
2019-04-02 21:06:37 -04:00

31 lines
1.1 KiB
Plaintext

// These are basically USB data sticks and may be used to transfer files between devices
/obj/item/weapon/computer_hardware/hard_drive/portable/
name = "basic data crystal"
desc = "Small crystal with imprinted photonic circuits that can be used to store data. It's capacity is 16 GQ"
power_usage = 10
icon_state = "flashdrive_basic"
hardware_size = 1
max_capacity = 16
/obj/item/weapon/computer_hardware/hard_drive/portable/advanced
name = "advanced data crystal"
desc = "Small crystal with imprinted high-density photonic circuits that can be used to store data. It's capacity is 64 GQ"
power_usage = 20
icon_state = "flashdrive_advanced"
hardware_size = 1
max_capacity = 64
/obj/item/weapon/computer_hardware/hard_drive/portable/super
name = "super data crystal"
desc = "Small crystal with imprinted ultra-density photonic circuits that can be used to store data. It's capacity is 256 GQ"
power_usage = 40
icon_state = "flashdrive_super"
hardware_size = 1
max_capacity = 256
/obj/item/weapon/computer_hardware/hard_drive/portable/New()
..()
stored_files = list()
recalculate_size()