More virology symptoms

Pain symptoms, and more antidepressant producing viruses.  Made a change
to the most powerful antidepressant, to make it break their mind more
often if over 5 units, to simulate overdosing of this potent chemical
This commit is contained in:
Bone White
2014-07-24 20:12:50 +01:00
parent 3d4dcd08c7
commit edef61b2c7
2 changed files with 84 additions and 17 deletions
@@ -68,11 +68,18 @@
else
if(world.time > data + ANTIDEPRESSANT_MESSAGE_DELAY)
data = world.time
if(prob(90))
M << "\blue Your mind feels much more stable."
if(volume > 5) // Bone White - Added any concentrations over 5 units to cause higher chance of mind breakage.
if (prob(min(100, volume * 5)))
M << "\red Your mind breaks apart.."
M.hallucination += 200
else
M << "\blue Your mind feels much more stable."
else
M << "\red Your mind breaks apart.."
M.hallucination += 200
if (prob(90))
M << "\blue Your mind feels much more stable."
else
M << "\red Your mind breaks apart.."
M.hallucination += 200
..()
return