Files
Paradise/code/modules/events/meaty_gore.dm
2022-12-19 17:02:22 +00:00

15 lines
496 B
Plaintext

/datum/event/meteor_wave/gore/announce()
GLOB.minor_announcement.Announce("Unknown biological debris have been detected near [station_name()], please stand-by.", "Debris Alert")
/datum/event/meteor_wave/gore/setup()
waves = 3
/datum/event/meteor_wave/gore/get_meteor_count()
return rand(5, 8)
/datum/event/meteor_wave/gore/get_meteors()
return GLOB.meteors_gore
/datum/event/meteor_wave/gore/end()
GLOB.minor_announcement.Announce("The station has cleared the debris.", "Debris Alert")