Made vira more likely to infect you. Removed vira from the medical HUD. Added the symptoms: Stumble, hoarse throat, and whisper. Added a random virus dishes to virology.

This commit is contained in:
cib
2011-12-27 21:12:01 -08:00
parent cfbb6eb704
commit 9d97e99017
7 changed files with 50 additions and 19 deletions
+6 -2
View File
@@ -992,6 +992,8 @@
for(var/datum/disease/D in viruses)
D.cure()
// clean all the symptoms incurred by the virus
src.disease_symptoms = 0
if(!virus2)
// the following is silly since it lets you infect people through glass
@@ -1013,8 +1015,10 @@
// check if we're immune
if(virus2.antigen & src.antibodies) virus2.dead = 1
if(src.get_infection_chance())
var/obj/virus/V = new(src.loc)
V.disease = src.virus2
// need more pathogens
for(var/i=0, i<3, i++)
var/obj/virus/V = new(src.loc)
V.disease = src.virus2
+3
View File
@@ -132,6 +132,9 @@
if (!message)
return
if( !message_mode && (disease_symptoms & DISEASE_WHISPER))
message_mode = "whisper"
message = capitalize(message) //capitalize the first letter of what they actually say
// :downs:
+2
View File
@@ -54,6 +54,8 @@
/mob/proc/say_quote(var/text)
var/ending = copytext(text, length(text))
if (src.disease_symptoms & DISEASE_HOARSE)
return "rasps, \"[text]\"";
if (src.stuttering)
return "stammers, \"[text]\"";
if (src.slurring)