From 124505a4fb2777233b28d4e210987a42a81ac4bc Mon Sep 17 00:00:00 2001 From: Trilbyspaceclone <30435998+Trilbyspaceclone@users.noreply.github.com> Date: Thu, 28 Mar 2019 23:31:13 -0400 Subject: [PATCH] Update good.dm --- code/datums/traits/good.dm | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/code/datums/traits/good.dm b/code/datums/traits/good.dm index bd55869c99..cfd8f95d7b 100644 --- a/code/datums/traits/good.dm +++ b/code/datums/traits/good.dm @@ -156,3 +156,17 @@ mob_trait = TRAIT_VORACIOUS gain_text = "You feel HONGRY." lose_text = "You no longer feel HONGRY." + +/datum/quirk/trandening + name = "High Luminosity Eyes" + desc = "When the next big fancy implant came out you had to buy one on impluse!" + value = 1 + gain_text = "You have to keep up with the next big thing!." + lose_text = "High-tech gizmos are a scam..." + +/datum/quirk/trandening/on_spawn() + var/mob/living/carbon/human/H = quirk_holder + var/obj/item/autosurgeon/gloweyes = new(get_turf(H)) + H.put_in_hands(gloweyes) + H.equip_to_slot(gloweyes, SLOT_IN_BACKPACK) + H.regenerate_icons()