mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-19 05:26:28 +00:00
Additionally, -Create virus re-added to secrets menu, as it had options to specify a specific virus to create -Blob added to One-Click-Antag with the option to set the strength of the blob (1=Weak, 2= Strong, 3=Full)
19 lines
564 B
Plaintext
19 lines
564 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
|
|
announceWhen = 1
|
|
|
|
/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, meteorsA) //meteor list types defined in gamemode/meteor/meteors.dm
|