// Citadel-specific Neutral Traits /datum/quirk/libido name = "Nymphomania" desc = "You're always feeling a bit in heat. Also, you get aroused faster than usual." value = 0 category = CATEGORY_SEXUAL mob_trait = TRAIT_NYMPHO gain_text = "You are feeling extra wild." lose_text = "You don't feel that burning sensation anymore." /datum/quirk/libido/add() quirk_holder.min_arousal = 16 quirk_holder.arousal_rate = 3 /datum/quirk/libido/remove() if(quirk_holder) quirk_holder.min_arousal = initial(quirk_holder.min_arousal) quirk_holder.arousal_rate = initial(quirk_holder.arousal_rate) /datum/quirk/libido/on_process() var/mob/living/M = quirk_holder if(M.canbearoused == FALSE) to_chat(quirk_holder, "Having high libido is useless when you can't feel arousal at all!") qdel(src) /datum/quirk/choke_slut name = "Choke Slut" desc = "You are aroused by suffocation." value = 0 category = CATEGORY_SEXUAL mob_trait = TRAIT_CHOKE_SLUT gain_text = "You feel like you want to feel fingers around your neck, choking you until you pass out or make a mess... Maybe both." lose_text = "Seems you don't have a kink for suffocation anymore." /datum/quirk/pharmacokinesis //Prevents unwanted organ additions. name = "Acute hepatic pharmacokinesis" desc = "You've a rare genetic disorder that causes Incubus draft and Sucubus milk to be absorbed by your liver instead." value = 0 category = CATEGORY_SEXUAL mob_trait = TRAIT_PHARMA lose_text = "Your liver feels different." var/active = FALSE var/power = 0 var/cachedmoveCalc = 1