mirror of
https://github.com/yogstation13/Yogstation.git
synced 2025-02-26 09:04:50 +00:00
* Remove reagent ids and use typepaths where applicable * Remove reagent ids and use typepaths where applicable * Resolves some easier conflicts * Resolves medical_tools.dm * Resolves robots.dm * Handles cinnamon Wow, I cannot do this manually. Fuckin' regex time. * Removes 27 merge conflicts (!!!!!) * Makes it actually half-attempt to compile * I just -- I give up, it's over * mk * mk * mk * hm * ok * what a bloody chain reaction jesus * ok * and done * went threw and changed the ones I missed * ok * dangit altoids hurry the fek up * Fixes whatever I found find thru this regex: reagents[\s\w]*=[\s\w]*list\([^\/]+\)
29 lines
1.0 KiB
Plaintext
29 lines
1.0 KiB
Plaintext
/datum/disease/pierrot_throat
|
|
name = "Pierrot's Throat"
|
|
max_stages = 4
|
|
spread_text = "Airborne"
|
|
cure_text = "Banana products, especially banana bread."
|
|
cures = list(/datum/reagent/consumable/banana)
|
|
cure_chance = 75
|
|
agent = "H0NI<42 Virus"
|
|
viable_mobtypes = list(/mob/living/carbon/human)
|
|
permeability_mod = 0.75
|
|
desc = "If left untreated the subject will probably drive others to insanity."
|
|
severity = DISEASE_SEVERITY_MEDIUM
|
|
|
|
/datum/disease/pierrot_throat/stage_act()
|
|
..()
|
|
switch(stage)
|
|
if(1)
|
|
if(prob(10))
|
|
to_chat(affected_mob, "<span class='danger'>You feel a little silly.</span>")
|
|
if(2)
|
|
if(prob(10))
|
|
to_chat(affected_mob, "<span class='danger'>You start seeing rainbows.</span>")
|
|
if(3)
|
|
if(prob(10))
|
|
to_chat(affected_mob, "<span class='danger'>Your thoughts are interrupted by a loud <b>HONK!</b></span>")
|
|
if(4)
|
|
if(prob(5))
|
|
affected_mob.say( pick( list("HONK!", "Honk!", "Honk.", "Honk?", "Honk!!", "Honk?!", "Honk...") ) , forced = "pierrot's throat")
|