mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-20 02:27:36 +01:00
63 lines
2.1 KiB
Plaintext
63 lines
2.1 KiB
Plaintext
/////////////////////////////////////////
|
|
/////////////////Misc Designs////////////
|
|
/////////////////////////////////////////
|
|
/datum/design/design_disk
|
|
name = "Design Storage Disk"
|
|
desc = "Produce additional disks for storing device designs."
|
|
id = "design_disk"
|
|
req_tech = list("programming" = 1)
|
|
build_type = PROTOLATHE | AUTOLATHE
|
|
materials = list(MAT_METAL = 300, MAT_GLASS = 100)
|
|
build_path = /obj/item/weapon/disk/design_disk
|
|
category = list("Miscellaneous")
|
|
|
|
/datum/design/diskplantgene
|
|
name = "Plant data disk"
|
|
desc = "A disk for storing plant genetic data."
|
|
id = "diskplantgene"
|
|
req_tech = list("programming" = 4, "biotech" = 3)
|
|
build_type = PROTOLATHE
|
|
materials = list(MAT_METAL=200, MAT_GLASS=100)
|
|
build_path = /obj/item/weapon/disk/plantgene
|
|
category = list("Miscellaneous")
|
|
|
|
/datum/design/intellicard
|
|
name = "Intellicard"
|
|
desc = "Allows for the construction of an intellicard."
|
|
id = "intellicard"
|
|
req_tech = list("programming" = 3, "materials" = 3)
|
|
build_type = PROTOLATHE
|
|
materials = list(MAT_GLASS = 1000, MAT_GOLD = 200)
|
|
build_path = /obj/item/device/aicard
|
|
category = list("Miscellaneous")
|
|
|
|
/datum/design/paicard
|
|
name = "Personal Artificial Intelligence Card"
|
|
desc = "Allows for the construction of a pAI Card"
|
|
id = "paicard"
|
|
req_tech = list("programming" = 2)
|
|
build_type = PROTOLATHE
|
|
materials = list(MAT_GLASS = 500, MAT_METAL = 500)
|
|
build_path = /obj/item/device/paicard
|
|
category = list("Miscellaneous")
|
|
|
|
/datum/design/tech_disk
|
|
name = "Technology Data Storage Disk"
|
|
desc = "Produce additional disks for storing technology data."
|
|
id = "tech_disk"
|
|
req_tech = list("programming" = 1)
|
|
build_type = PROTOLATHE | AUTOLATHE
|
|
materials = list(MAT_METAL = 300, MAT_GLASS = 100)
|
|
build_path = /obj/item/weapon/disk/tech_disk
|
|
category = list("Miscellaneous")
|
|
|
|
/datum/design/digital_camera
|
|
name = "Digital Camera"
|
|
desc = "Produce an enhanced version of the standard issue camera."
|
|
id = "digitalcamera"
|
|
req_tech = list("programming" = 2, "materials" = 2)
|
|
build_type = PROTOLATHE
|
|
materials = list(MAT_METAL = 500, MAT_GLASS = 300)
|
|
build_path = /obj/item/device/camera/digital
|
|
category = list("Miscellaneous")
|