mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 10:12:45 +00:00
21 lines
699 B
Plaintext
21 lines
699 B
Plaintext
/datum/design/item/disk/AssembleDesignName()
|
|
..()
|
|
name = "Data storage design ([name])"
|
|
|
|
/datum/design/item/disk/design_disk
|
|
name = "Design Storage Disk"
|
|
desc = "Produce additional disks for storing device designs."
|
|
id = "design_disk"
|
|
req_tech = list(TECH_DATA = 1)
|
|
materials = list(MAT_STEEL = 30, MAT_GLASS = 10)
|
|
build_path = /obj/item/weapon/disk/design_disk
|
|
sort_string = "CAAAA"
|
|
|
|
/datum/design/item/disk/tech_disk
|
|
name = "Technology Data Storage Disk"
|
|
desc = "Produce additional disks for storing technology data."
|
|
id = "tech_disk"
|
|
req_tech = list(TECH_DATA = 1)
|
|
materials = list(MAT_STEEL = 30, MAT_GLASS = 10)
|
|
build_path = /obj/item/weapon/disk/tech_disk
|
|
sort_string = "CAAAB" |