mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-12 11:13:16 +00:00
234 lines
8.0 KiB
Plaintext
234 lines
8.0 KiB
Plaintext
// Modular computer components
|
|
// Hard drives
|
|
/datum/design/item/modularcomponent/disk/normal
|
|
name = "basic hard drive"
|
|
id = "hdd_basic"
|
|
req_tech = list(TECH_DATA = 1, TECH_ENGINEERING = 1)
|
|
build_type = PROTOLATHE
|
|
materials = list(DEFAULT_WALL_MATERIAL = 2000, "glass" = 100)
|
|
build_path = /obj/item/weapon/computer_hardware/hard_drive/
|
|
sort_string = "VBAAA"
|
|
|
|
/datum/design/item/modularcomponent/disk/advanced
|
|
name = "advanced hard drive"
|
|
id = "hdd_advanced"
|
|
req_tech = list(TECH_DATA = 2, TECH_ENGINEERING = 2)
|
|
build_type = PROTOLATHE
|
|
materials = list(DEFAULT_WALL_MATERIAL = 4000, "glass" = 200)
|
|
build_path = /obj/item/weapon/computer_hardware/hard_drive/advanced
|
|
sort_string = "VBAAB"
|
|
|
|
/datum/design/item/modularcomponent/disk/super
|
|
name = "super hard drive"
|
|
id = "hdd_super"
|
|
req_tech = list(TECH_DATA = 3, TECH_ENGINEERING = 3)
|
|
build_type = PROTOLATHE
|
|
materials = list(DEFAULT_WALL_MATERIAL = 8000, "glass" = 400)
|
|
build_path = /obj/item/weapon/computer_hardware/hard_drive/super
|
|
sort_string = "VBAAC"
|
|
|
|
/datum/design/item/modularcomponent/disk/cluster
|
|
name = "cluster hard drive"
|
|
id = "hdd_cluster"
|
|
req_tech = list(TECH_DATA = 4, TECH_ENGINEERING = 4)
|
|
build_type = PROTOLATHE
|
|
materials = list(DEFAULT_WALL_MATERIAL = 16000, "glass" = 800)
|
|
build_path = /obj/item/weapon/computer_hardware/hard_drive/cluster
|
|
sort_string = "VBAAD"
|
|
|
|
/datum/design/item/modularcomponent/disk/small
|
|
name = "small hard drive"
|
|
id = "hdd_small"
|
|
req_tech = list(TECH_DATA = 2, TECH_ENGINEERING = 2)
|
|
build_type = PROTOLATHE
|
|
materials = list(DEFAULT_WALL_MATERIAL = 4000, "glass" = 200)
|
|
build_path = /obj/item/weapon/computer_hardware/hard_drive/small
|
|
sort_string = "VBAAE"
|
|
|
|
/datum/design/item/modularcomponent/disk/micro
|
|
name = "micro hard drive"
|
|
id = "hdd_micro"
|
|
req_tech = list(TECH_DATA = 1, TECH_ENGINEERING = 1)
|
|
build_type = PROTOLATHE
|
|
materials = list(DEFAULT_WALL_MATERIAL = 2000, "glass" = 100)
|
|
build_path = /obj/item/weapon/computer_hardware/hard_drive/micro
|
|
sort_string = "VBAAF"
|
|
|
|
// Network cards
|
|
/datum/design/item/modularcomponent/netcard/basic
|
|
name = "basic network card"
|
|
id = "netcard_basic"
|
|
req_tech = list(TECH_DATA = 2, TECH_ENGINEERING = 1)
|
|
build_type = IMPRINTER
|
|
materials = list(DEFAULT_WALL_MATERIAL = 500, "glass" = 100)
|
|
build_path = /obj/item/weapon/computer_hardware/network_card
|
|
sort_string = "VBAAG"
|
|
|
|
/datum/design/item/modularcomponent/netcard/advanced
|
|
name = "advanced network card"
|
|
id = "netcard_advanced"
|
|
req_tech = list(TECH_DATA = 4, TECH_ENGINEERING = 2)
|
|
build_type = IMPRINTER
|
|
materials = list(DEFAULT_WALL_MATERIAL = 1000, "glass" = 200)
|
|
build_path = /obj/item/weapon/computer_hardware/network_card/advanced
|
|
sort_string = "VBAAH"
|
|
|
|
/datum/design/item/modularcomponent/netcard/wired
|
|
name = "wired network card"
|
|
id = "netcard_wired"
|
|
req_tech = list(TECH_DATA = 5, TECH_ENGINEERING = 3)
|
|
build_type = IMPRINTER
|
|
materials = list(DEFAULT_WALL_MATERIAL = 5000, "glass" = 400)
|
|
build_path = /obj/item/weapon/computer_hardware/network_card/wired
|
|
sort_string = "VBAAI"
|
|
|
|
// Data crystals (USB flash drives)
|
|
/datum/design/item/modularcomponent/portabledrive/basic
|
|
name = "basic data crystal"
|
|
id = "portadrive_basic"
|
|
req_tech = list(TECH_DATA = 1)
|
|
build_type = IMPRINTER
|
|
materials = list("glass" = 8000)
|
|
build_path = /obj/item/weapon/computer_hardware/hard_drive/portable
|
|
sort_string = "VBAAJ"
|
|
|
|
/datum/design/item/modularcomponent/portabledrive/advanced
|
|
name = "advanced data crystal"
|
|
id = "portadrive_advanced"
|
|
req_tech = list(TECH_DATA = 2)
|
|
build_type = IMPRINTER
|
|
materials = list("glass" = 16000)
|
|
build_path = /obj/item/weapon/computer_hardware/hard_drive/portable/advanced
|
|
sort_string = "VBAAK"
|
|
|
|
/datum/design/item/modularcomponent/portabledrive/super
|
|
name = "super data crystal"
|
|
id = "portadrive_super"
|
|
req_tech = list(TECH_DATA = 4)
|
|
build_type = IMPRINTER
|
|
materials = list("glass" = 32000)
|
|
build_path = /obj/item/weapon/computer_hardware/hard_drive/portable/super
|
|
sort_string = "VBAAL"
|
|
|
|
// Card slot
|
|
/datum/design/item/modularcomponent/cardslot
|
|
name = "RFID card slot"
|
|
id = "cardslot"
|
|
req_tech = list(TECH_DATA = 2)
|
|
build_type = PROTOLATHE
|
|
materials = list(DEFAULT_WALL_MATERIAL = 3000)
|
|
build_path = /obj/item/weapon/computer_hardware/card_slot
|
|
sort_string = "VBAAM"
|
|
|
|
// Nano printer
|
|
/datum/design/item/modularcomponent/nanoprinter
|
|
name = "nano printer"
|
|
id = "nanoprinter"
|
|
req_tech = list(TECH_DATA = 2, TECH_ENGINEERING = 2)
|
|
build_type = PROTOLATHE
|
|
materials = list(DEFAULT_WALL_MATERIAL = 3000)
|
|
build_path = /obj/item/weapon/computer_hardware/nano_printer
|
|
sort_string = "VBAAN"
|
|
|
|
// Tesla Link
|
|
/datum/design/item/modularcomponent/teslalink
|
|
name = "tesla link"
|
|
id = "teslalink"
|
|
req_tech = list(TECH_DATA = 2, TECH_POWER = 3, TECH_ENGINEERING = 2)
|
|
build_type = PROTOLATHE
|
|
materials = list(DEFAULT_WALL_MATERIAL = 10000)
|
|
build_path = /obj/item/weapon/computer_hardware/tesla_link
|
|
sort_string = "VBAAO"
|
|
|
|
// Batteries
|
|
/datum/design/item/modularcomponent/battery/normal
|
|
name = "standard battery module"
|
|
id = "bat_normal"
|
|
req_tech = list(TECH_POWER = 1, TECH_ENGINEERING = 1)
|
|
build_type = PROTOLATHE
|
|
materials = list(DEFAULT_WALL_MATERIAL = 2000)
|
|
build_path = /obj/item/weapon/computer_hardware/battery_module
|
|
sort_string = "VBAAP"
|
|
|
|
/datum/design/item/modularcomponent/battery/advanced
|
|
name = "advanced battery module"
|
|
id = "bat_advanced"
|
|
req_tech = list(TECH_POWER = 2, TECH_ENGINEERING = 2)
|
|
build_type = PROTOLATHE
|
|
materials = list(DEFAULT_WALL_MATERIAL = 4000)
|
|
build_path = /obj/item/weapon/computer_hardware/battery_module/advanced
|
|
sort_string = "VBAAQ"
|
|
|
|
/datum/design/item/modularcomponent/battery/super
|
|
name = "super battery module"
|
|
id = "bat_super"
|
|
req_tech = list(TECH_POWER = 3, TECH_ENGINEERING = 3)
|
|
build_type = PROTOLATHE
|
|
materials = list(DEFAULT_WALL_MATERIAL = 8000)
|
|
build_path = /obj/item/weapon/computer_hardware/battery_module/super
|
|
sort_string = "VBAAR"
|
|
|
|
/datum/design/item/modularcomponent/battery/ultra
|
|
name = "ultra battery module"
|
|
id = "bat_ultra"
|
|
req_tech = list(TECH_POWER = 5, TECH_ENGINEERING = 4)
|
|
build_type = PROTOLATHE
|
|
materials = list(DEFAULT_WALL_MATERIAL = 16000)
|
|
build_path = /obj/item/weapon/computer_hardware/battery_module/ultra
|
|
sort_string = "VBAAS"
|
|
|
|
/datum/design/item/modularcomponent/battery/nano
|
|
name = "nano battery module"
|
|
id = "bat_nano"
|
|
req_tech = list(TECH_POWER = 1, TECH_ENGINEERING = 1)
|
|
build_type = PROTOLATHE
|
|
materials = list(DEFAULT_WALL_MATERIAL = 2000)
|
|
build_path = /obj/item/weapon/computer_hardware/battery_module/nano
|
|
sort_string = "VBAAT"
|
|
|
|
/datum/design/item/modularcomponent/battery/micro
|
|
name = "micro battery module"
|
|
id = "bat_micro"
|
|
req_tech = list(TECH_POWER = 2, TECH_ENGINEERING = 2)
|
|
build_type = PROTOLATHE
|
|
materials = list(DEFAULT_WALL_MATERIAL = 4000)
|
|
build_path = /obj/item/weapon/computer_hardware/battery_module/micro
|
|
sort_string = "VBAAU"
|
|
|
|
// Processor unit
|
|
/datum/design/item/modularcomponent/cpu/
|
|
name = "computer processor unit"
|
|
id = "cpu_normal"
|
|
req_tech = list(TECH_DATA = 3, TECH_ENGINEERING = 2)
|
|
build_type = IMPRINTER
|
|
materials = list(DEFAULT_WALL_MATERIAL = 8000)
|
|
build_path = /obj/item/weapon/computer_hardware/processor_unit
|
|
sort_string = "VBAAV"
|
|
|
|
/datum/design/item/modularcomponent/cpu/small
|
|
name = "computer microprocessor unit"
|
|
id = "cpu_small"
|
|
req_tech = list(TECH_DATA = 2, TECH_ENGINEERING = 2)
|
|
build_type = IMPRINTER
|
|
materials = list(DEFAULT_WALL_MATERIAL = 4000)
|
|
build_path = /obj/item/weapon/computer_hardware/processor_unit/small
|
|
sort_string = "VBAAW"
|
|
|
|
/datum/design/item/modularcomponent/cpu/photonic
|
|
name = "computer photonic processor unit"
|
|
id = "pcpu_normal"
|
|
req_tech = list(TECH_DATA = 5, TECH_ENGINEERING = 4)
|
|
build_type = IMPRINTER
|
|
materials = list(DEFAULT_WALL_MATERIAL = 32000, glass = 8000)
|
|
build_path = /obj/item/weapon/computer_hardware/processor_unit/photonic
|
|
sort_string = "VBAAX"
|
|
|
|
/datum/design/item/modularcomponent/cpu/photonic/small
|
|
name = "computer photonic microprocessor unit"
|
|
id = "pcpu_small"
|
|
req_tech = list(TECH_DATA = 4, TECH_ENGINEERING = 3)
|
|
build_type = IMPRINTER
|
|
materials = list(DEFAULT_WALL_MATERIAL = 16000, glass = 4000)
|
|
build_path = /obj/item/weapon/computer_hardware/processor_unit/photonic/small
|
|
sort_string = "VBAAY"
|