mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-19 05:26:28 +00:00
* EFT * E * EEE * E * INTO TO ORBIT * I hate this but I'm going to ignore it. * Seriously, fuck this. * Update CentCom_skyrat_z2.dmm * Update tgstation.dme * oops * Update positronic_alert_console.dm * E
22 lines
518 B
Plaintext
22 lines
518 B
Plaintext
/obj/effect/singularity_creation
|
|
name = "collapsing spacetime"
|
|
desc = "It looks like spacetime is collapsing, oh shit!"
|
|
icon = 'modular_skyrat/modules/aesthetics/singularity/singularity_creation.dmi'
|
|
icon_state = ""
|
|
anchored = TRUE
|
|
opacity = FALSE
|
|
pixel_x = -32
|
|
pixel_y = -32
|
|
var/timeleft = 62
|
|
|
|
/obj/effect/singularity_creation/Initialize()
|
|
. = ..()
|
|
if(timeleft)
|
|
QDEL_IN(src, timeleft)
|
|
|
|
/obj/effect/singularity_creation/singularity_act()
|
|
return
|
|
|
|
/obj/singularity/proc/make_visible()
|
|
invisibility = NONE
|