/datum/event/meteor_wave/gore/announce() command_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/tick() if(waves && activeFor >= next_meteor) spawn() spawn_meteors(rand(5,8), meteors_gore) next_meteor += rand(15, 30) waves-- endWhen = (waves ? next_meteor + 1 : activeFor + 15) /datum/event/meteor_wave/gore/end() command_announcement.Announce("The station has cleared the debris.", "Debris Alert")