mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-06-06 14:03:20 +01:00
210f8badf4
* Handlers converted, now to fix 3532 compile errors * 3532 compile fixes later, got runtimes on startup * Well the server loads now atleast * Take 2 * Oops
18 lines
584 B
Plaintext
18 lines
584 B
Plaintext
/datum/event/meteor_wave/gore/announce()
|
|
GLOB.event_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), GLOB.meteors_gore)
|
|
next_meteor += rand(15, 30)
|
|
waves--
|
|
endWhen = (waves ? next_meteor + 1 : activeFor + 15)
|
|
|
|
|
|
/datum/event/meteor_wave/gore/end()
|
|
GLOB.event_announcement.Announce("The station has cleared the debris.", "Debris Alert")
|