Adds back aphro, nympho
This commit is contained in:
@@ -105,6 +105,22 @@
|
||||
gain_text = "<span class='notice'>You desire to be hurt.</span>"
|
||||
lose_text = "<span class='notice'>Pain has become less exciting for you.</span>"
|
||||
|
||||
/datum/quirk/libido
|
||||
name = "Nymphomaniac"
|
||||
desc = "You are much more sensitive to arousal."
|
||||
value = 0
|
||||
mob_trait = TRAIT_NYMPHO
|
||||
gain_text = "<span class='notice'>You are feeling extra wild.</span>"
|
||||
lose_text = "<span class='notice'>You don't feel that burning sensation anymore.</span>"
|
||||
|
||||
/datum/quirk/libido/add()
|
||||
var/mob/living/carbon/human/H = quirk_holder
|
||||
H.arousal_rate = 3 * initial(H.arousal_rate)
|
||||
|
||||
/datum/quirk/libido/remove()
|
||||
var/mob/living/carbon/human/H = quirk_holder
|
||||
H.arousal_rate = initial(H.arousal_rate)
|
||||
|
||||
/datum/quirk/alcohol_intolerance
|
||||
name = "Alcohol Intolerance"
|
||||
desc = "You take toxin damage from alcohol rather than getting drunk."
|
||||
|
||||
Reference in New Issue
Block a user