mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-01-02 05:32:16 +00:00
15 lines
496 B
Plaintext
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")
|