mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-01-01 13:12:23 +00:00
13 lines
614 B
Plaintext
13 lines
614 B
Plaintext
/datum/event/mass_hallucination/setup()
|
|
announceWhen = rand(0, 20)
|
|
|
|
/datum/event/mass_hallucination/start()
|
|
for(var/mob/living/carbon/human/H in GLOB.living_mob_list)
|
|
var/armor = H.getarmor(type = "rad")
|
|
if((RADIMMUNE in H.dna.species.species_traits) || armor >= 75) // Leave radiation-immune species/rad armored players completely unaffected
|
|
continue
|
|
H.AdjustHallucinate(rand(50, 100))
|
|
|
|
/datum/event/mass_hallucination/announce()
|
|
event_announcement.Announce("It seems that station [station_name()] is passing through a minor radiation field, this may cause some hallucination, but no further damage")
|