mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 10:12:45 +00:00
Co-authored-by: Changelogs <action@github.com> Co-authored-by: Heroman3003 <31296024+Heroman3003@users.noreply.github.com> Co-authored-by: Guti <32563288+TheCaramelion@users.noreply.github.com> Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com> Co-authored-by: Kashargul <KashL@t-online.de>
21 lines
685 B
Plaintext
21 lines
685 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/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/disk/tech_disk
|
|
sort_string = "CAAAB" |