adds voice of god orgasm and dab commands (#7694)

This commit is contained in:
izzyinbox
2018-11-09 21:10:42 -06:00
committed by kevinz000
parent 057bd51c82
commit 172a46bcbe
@@ -251,6 +251,8 @@
var/static/regex/clap_words = regex("clap|applaud")
var/static/regex/honk_words = regex("ho+nk") //hooooooonk
var/static/regex/multispin_words = regex("like a record baby|right round")
var/static/regex/orgasm_words = regex("cum|orgasm|climax|squirt") //CITADEL CHANGE
var/static/regex/dab_words = regex("dab|mood") //CITADEL CHANGE
var/i = 0
//STUN
@@ -565,6 +567,23 @@
var/mob/living/L = V
L.SpinAnimation(speed = 10, loops = 5)
//CITADEL CHANGES
//ORGASM
else if((findtext(message, orgasm_words)))
cooldown = COOLDOWN_MEME
for(var/V in listeners)
var/mob/living/carbon/human/H = V
if(H.canbearoused && H.has_dna()) // probably a redundant check but for good measure
H.mob_climax(forced_climax=TRUE)
//DAB
else if((findtext(message, dab_words)))
cooldown = COOLDOWN_DAMAGE
for(var/V in listeners)
var/mob/living/M = V
M.say("*dab")
//END CITADEL CHANGES
else
cooldown = COOLDOWN_NONE