mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-28 15:39:57 +01:00
* Modernize and improve implant code * Lint fix * Fix initialize hint in implant cases * fix tabulations --------- Co-authored-by: Fluffy <65877598+FluffyGhoster@users.noreply.github.com>
24 lines
804 B
Plaintext
24 lines
804 B
Plaintext
/datum/design/item/implant
|
|
materials = list(DEFAULT_WALL_MATERIAL = 50, MATERIAL_GLASS = 50)
|
|
p_category = "Implantable Biocircuit Designs"
|
|
|
|
/datum/design/item/implant/adrenaline
|
|
name = "Adrenaline"
|
|
req_tech = list(TECH_MATERIAL = 1, TECH_ILLEGAL = 2, TECH_BIO = 3)
|
|
build_path = /obj/item/implantcase/adrenaline
|
|
|
|
/datum/design/item/implant/chemical
|
|
name = "Chemical"
|
|
req_tech = list(TECH_MATERIAL = 2, TECH_BIO = 3)
|
|
build_path = /obj/item/implantcase/chem
|
|
|
|
/datum/design/item/implant/death_alarm
|
|
name = "Death Alarm"
|
|
req_tech = list(TECH_MATERIAL = 1, TECH_BIO = 3, TECH_DATA = 2)
|
|
build_path = /obj/item/implantcase/death_alarm
|
|
|
|
/datum/design/item/implant/freedom
|
|
name = "Freedom"
|
|
req_tech = list(TECH_MATERIAL = 1, TECH_ILLEGAL = 2, TECH_BIO = 3)
|
|
build_path = /obj/item/implantcase/freedom
|