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()