mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 18:32:03 +00:00
11 lines
272 B
Plaintext
11 lines
272 B
Plaintext
/datum/objective/nuclear
|
|
explanation_text = "Destroy the station with a nuclear device."
|
|
name = "Nuke the station"
|
|
|
|
/datum/objective/nuclear/IsFulfilled()
|
|
if (..())
|
|
return TRUE
|
|
if(ticker.explosion_in_progress || ticker.station_was_nuked)
|
|
return TRUE
|
|
return FALSE
|