mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-22 16:12:19 +00:00
70 lines
3.1 KiB
Plaintext
70 lines
3.1 KiB
Plaintext
/datum/gear/augment
|
|
display_name = "integrated timepiece"
|
|
description = "An augment that allows the user to consult the time anywhere."
|
|
path = /obj/item/organ/internal/augment/timepiece
|
|
cost = 1
|
|
augment = TRUE
|
|
sort_category = "Augments"
|
|
whitelisted = list("Human", "Off-Worlder Human", "Tajara", "Zhan-Khazan Tajara", "M'sai Tajara", "Skrell", "Baseline Frame", "Hephaestus G1 Industrial Frame", "Hephaestus G2 Industrial Frame", "Xion Industrial Frame", "Zeng-Hu Mobility Frame", "Bishop Accessory Frame", "Shell Frame")
|
|
flags = GEAR_NO_SELECTION
|
|
|
|
/datum/gear/augment/eye_sensors
|
|
display_name = "integrated eye sensors"
|
|
description = "An eye augment that allows the user to deploy medical or security sensors."
|
|
path = /obj/item/organ/internal/augment/eye_sensors
|
|
cost = 4
|
|
whitelisted = list("Human", "Off-Worlder Human", "Tajara", "Zhan-Khazan Tajara", "M'sai Tajara", "Unathi", "Skrell", "Baseline Frame", "Hephaestus G1 Industrial Frame", "Hephaestus G2 Industrial Frame", "Xion Industrial Frame", "Zeng-Hu Mobility Frame", "Bishop Accessory Frame", "Shell Frame", "Vaurca Worker", "Vaurca Warrior")
|
|
|
|
|
|
/datum/gear/augment/cyber_hair
|
|
display_name = "synthetic hair extensions"
|
|
description = "A hair augment that allows the user to change the shape and color of their hair."
|
|
path = /obj/item/organ/internal/augment/cyber_hair
|
|
cost = 2
|
|
whitelisted = list("Human", "Off-Worlder Human", "Tajara", "Zhan-Khazan Tajara", "M'sai Tajara", "Shell Frame")
|
|
|
|
|
|
/datum/gear/augment/combitool
|
|
display_name = "retractable combitool"
|
|
description = "An augment that allows the user to deploy a robotic combitool."
|
|
path = /obj/item/organ/internal/augment/tool/combitool
|
|
cost = 5
|
|
|
|
/datum/gear/augment/combitool/New()
|
|
..()
|
|
var/augs = list()
|
|
augs["retractable combitool, right hand"] = /obj/item/organ/internal/augment/tool/combitool
|
|
augs["retractable combitool, left hand"] = /obj/item/organ/internal/augment/tool/combitool/left
|
|
gear_tweaks += new /datum/gear_tweak/path(augs)
|
|
|
|
/datum/gear/augment/health_scanner
|
|
display_name = "integrated health scanner"
|
|
description = "An augment that allows the user scan their own health condition."
|
|
path = /obj/item/organ/internal/augment/health_scanner
|
|
cost = 3
|
|
|
|
/datum/gear/augment/suspension
|
|
display_name = "calf suspension"
|
|
description = "An augment that reduces the damage from falling from heights."
|
|
path = /obj/item/organ/internal/augment/suspension
|
|
cost = 4
|
|
|
|
/datum/gear/augment/taste_boosters
|
|
display_name = "taste booster selection"
|
|
description = "A selection of augments that modify the user's taste sensitivity."
|
|
path = /obj/item/organ/internal/augment/taste_booster
|
|
cost = 3
|
|
|
|
/datum/gear/augment/taste_boosters/New()
|
|
..()
|
|
var/augs = list()
|
|
augs["taste booster"] = /obj/item/organ/internal/augment/taste_booster
|
|
augs["taste duller"] = /obj/item/organ/internal/augment/taste_booster/dull
|
|
gear_tweaks += new /datum/gear_tweak/path(augs)
|
|
|
|
/datum/gear/augment/fuel_cell
|
|
display_name = "integrated fuel cell"
|
|
description = "An augment that allows the user to synthetize welding fuel into nutrients."
|
|
path = /obj/item/organ/internal/augment/fuel_cell
|
|
cost = 3
|