Hearing Aids (#8138)

This commit is contained in:
Geeves
2020-02-08 16:31:11 +02:00
committed by GitHub
parent 0a29501ac0
commit bd2506d8a0
8 changed files with 54 additions and 7 deletions
@@ -51,6 +51,18 @@
fountainpens["white fountain pen"] = /obj/item/pen/fountain/white
gear_tweaks += new/datum/gear_tweak/path(fountainpens)
/datum/gear/utility/hearing_aid
display_name = "hearing aid selection"
path = /obj/item/device/hearing_aid
cost = 1
/datum/gear/utility/hearing_aid/New()
..()
var/hearingaids = list()
hearingaids["hearing aid, skrell design"] = /obj/item/device/hearing_aid
hearingaids["hearing aid, human design"] = /obj/item/device/hearing_aid/human
gear_tweaks += new/datum/gear_tweak/path(hearingaids)
/datum/gear/utility/paicard
display_name = "personal AI device"
path = /obj/item/device/paicard
@@ -125,4 +137,4 @@
display_name = "tool-belt, alt"
cost = 0
path = /obj/item/storage/belt/utility/alt
allowed_roles = list("Station Engineer", "Atmospheric Technician", "Chief Engineer", "Engineering Apprentice", "Roboticist")
allowed_roles = list("Station Engineer", "Atmospheric Technician", "Chief Engineer", "Engineering Apprentice", "Roboticist")