mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 10:43:20 +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>
25 lines
703 B
Plaintext
25 lines
703 B
Plaintext
// Implants
|
|
|
|
/datum/design/item/implant
|
|
materials = list(MAT_STEEL = 50, MAT_GLASS = 50)
|
|
|
|
/datum/design/item/implant/AssembleDesignName()
|
|
..()
|
|
name = "Implantable biocircuit design ([item_name])"
|
|
|
|
/datum/design/item/implant/chemical
|
|
name = "chemical"
|
|
id = "implant_chem"
|
|
req_tech = list(TECH_MATERIAL = 2, TECH_BIO = 3)
|
|
build_path = /obj/item/implantcase/chem
|
|
sort_string = "MFAAA"
|
|
department = LATHE_ALL | LATHE_MEDICAL | LATHE_SECURITY // CHOMPAdd
|
|
|
|
/datum/design/item/implant/freedom
|
|
name = "freedom"
|
|
id = "implant_free"
|
|
req_tech = list(TECH_ILLEGAL = 2, TECH_BIO = 3)
|
|
build_path = /obj/item/implantcase/freedom
|
|
sort_string = "MFAAB"
|
|
department = LATHE_ALL | LATHE_SECURITY // CHOMPAdd
|