mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-22 19:47:22 +01:00
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:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user