mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-21 02:57:48 +01:00
37 lines
848 B
Plaintext
37 lines
848 B
Plaintext
|
|
/datum/dna/gene/disability/speech/loud
|
|
name = "Loud"
|
|
desc = "Forces the speaking centre of the subjects brain to yell every sentence."
|
|
activation_message = "YOU FEEL LIKE YELLING!"
|
|
deactivation_message = "You feel like being quiet.."
|
|
mutation = LOUD
|
|
|
|
New()
|
|
..()
|
|
block=LOUDBLOCK
|
|
|
|
|
|
|
|
OnSay(var/mob/M, var/message)
|
|
message = replacetext(message,".","!")
|
|
message = replacetext(message,"?","?!")
|
|
message = replacetext(message,"!","!!")
|
|
return uppertext(message)
|
|
|
|
/datum/dna/gene/disability/dizzy
|
|
name = "Dizzy"
|
|
desc = "Causes the cerebellum to shut down in some places."
|
|
activation_message = "You feel very dizzy..."
|
|
deactivation_message = "You regain your balance."
|
|
mutation = DIZZY
|
|
|
|
New()
|
|
..()
|
|
block=DIZZYBLOCK
|
|
|
|
|
|
OnMobLife(var/mob/living/carbon/human/M)
|
|
if(!istype(M)) return
|
|
if(DIZZY in M.mutations)
|
|
M.Dizzy(300)
|