Update good.dm

This commit is contained in:
Trilbyspaceclone
2019-03-28 23:31:13 -04:00
committed by GitHub
parent f006c1e16a
commit 124505a4fb
+14
View File
@@ -156,3 +156,17 @@
mob_trait = TRAIT_VORACIOUS
gain_text = "<span class='notice'>You feel HONGRY.</span>"
lose_text = "<span class='danger'>You no longer feel HONGRY.</span>"
/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 = "<span class='notice'>You have to keep up with the next big thing!.</span>"
lose_text = "<span class='danger'>High-tech gizmos are a scam...</span>"
/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()