mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-20 03:30:01 +01:00
11 lines
495 B
Plaintext
11 lines
495 B
Plaintext
/datum/round_event_control/wizard/fake_explosion //Oh no the station is gone!
|
|
name = "Fake Nuclear Explosion"
|
|
weight = 0 //Badmin exclusive now because once it's expected its not funny
|
|
typepath = /datum/round_event/wizard/fake_explosion
|
|
max_occurrences = 1
|
|
earliest_start = 0 MINUTES
|
|
|
|
/datum/round_event/wizard/fake_explosion/start()
|
|
sound_to_playing_players('sound/machines/alarm.ogg')
|
|
addtimer(CALLBACK(GLOBAL_PROC, /proc/play_cinematic, /datum/cinematic/nuke/fake, world), 10 SECONDS)
|