mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-01-08 16:41:58 +00:00
6 lines
387 B
Plaintext
6 lines
387 B
Plaintext
/datum/event/mass_hallucination/start()
|
|
for(var/mob/living/carbon/human/C in living_mob_list)
|
|
if(!(C.species.flags & IS_SYNTHETIC))
|
|
C.hallucination += rand(50, 100)
|
|
/datum/event/mass_hallucination/announce()
|
|
command_announcement.Announce("It seems that station [station_name()] is passing through a minor radiation field, this may cause some hallucination, but no further damage") |