mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-26 17:41:05 +00:00
30 lines
1.6 KiB
Plaintext
30 lines
1.6 KiB
Plaintext
|
|
// This is literally the worst possible cheap tablet
|
|
/obj/item/device/modular_computer/tablet/preset/cheap
|
|
desc = "A low-end tablet often seen among low ranked station personnel."
|
|
|
|
/obj/item/device/modular_computer/tablet/preset/cheap/Initialize()
|
|
. = ..()
|
|
install_component(new /obj/item/computer_hardware/processor_unit/small)
|
|
install_component(new /obj/item/computer_hardware/battery(src, /obj/item/stock_parts/cell/computer/micro))
|
|
install_component(new /obj/item/computer_hardware/hard_drive/small)
|
|
install_component(new /obj/item/computer_hardware/network_card)
|
|
|
|
// Alternative version, an average one, for higher ranked positions mostly
|
|
/obj/item/device/modular_computer/tablet/preset/advanced/Initialize()
|
|
. = ..()
|
|
install_component(new /obj/item/computer_hardware/processor_unit/small)
|
|
install_component(new /obj/item/computer_hardware/battery(src, /obj/item/stock_parts/cell/computer))
|
|
install_component(new /obj/item/computer_hardware/hard_drive/small)
|
|
install_component(new /obj/item/computer_hardware/network_card)
|
|
install_component(new /obj/item/computer_hardware/card_slot)
|
|
install_component(new /obj/item/computer_hardware/printer/mini)
|
|
|
|
/obj/item/device/modular_computer/tablet/preset/cargo/Initialize()
|
|
. = ..()
|
|
install_component(new /obj/item/computer_hardware/processor_unit/small)
|
|
install_component(new /obj/item/computer_hardware/battery(src, /obj/item/stock_parts/cell/computer))
|
|
install_component(new /obj/item/computer_hardware/hard_drive/small)
|
|
install_component(new /obj/item/computer_hardware/network_card)
|
|
install_component(new /obj/item/computer_hardware/printer/mini)
|