mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2026-08-27 22:57:15 +01:00
This commit makes the following changes: - Added pacifism trait to D4C craving - Added D4C craving text to illiteracy warning - Updated text for cum_stuffed mood event - Updated D4C craving removal to trigger regardless of timer - Fix incorrect type assignment for craving trait removal Adds Dumb For Cum quirk craving checks to: - Mob proc can_read - PDA send_message - PDA receive_message
17 lines
494 B
Plaintext
17 lines
494 B
Plaintext
/datum/mood_event/fat/add_effects(param)
|
|
. = ..()
|
|
var/mob/living/carbon/human/actual_owner = owner_mob()
|
|
if(!HAS_TRAIT(actual_owner, TRAIT_VORACIOUS))
|
|
return
|
|
description = span_nicegreen("MORE FOOD!!! MORE FOOD!!! MORE FOOD!!!\n")
|
|
mood_change = 8
|
|
|
|
/datum/mood_event/cum_craving
|
|
description = span_warning("I... NEED... CUM...\n")
|
|
mood_change = -20
|
|
|
|
/datum/mood_event/cum_stuffed
|
|
description = span_nicegreen("The cum feels so good inside me!\n")
|
|
mood_change = 8
|
|
timeout = 5 MINUTES
|