mirror of
https://github.com/fulpstation/fulpstation.git
synced 2025-12-10 10:01:40 +00:00
-Centcom announcement proc merged with generic priority announcement proc -Re-added the Captain Announces accompanied by a new pleasant sound, instead of the generic priority announcement -Captain Announcements will automatically generate a newscaster article -Priority announcements without any defined accompanying sound will play a generic "Attention" soundbyte as an audio cue -Communications consoles will display who is currently logged in
17 lines
475 B
Plaintext
17 lines
475 B
Plaintext
/datum/round_event_control/meteor_wave
|
|
name = "Meteor Wave"
|
|
typepath = /datum/round_event/meteor_wave
|
|
weight = 5
|
|
max_occurrences = 3
|
|
|
|
/datum/round_event/meteor_wave
|
|
startWhen = 6
|
|
endWhen = 66
|
|
|
|
/datum/round_event/meteor_wave/announce()
|
|
priority_announce("Meteors have been detected on collision course with the station.", "Meteor Alert", 'sound/AI/meteors.ogg')
|
|
|
|
|
|
/datum/round_event/meteor_wave/tick()
|
|
if(IsMultiple(activeFor, 3))
|
|
spawn_meteors(5) |