mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 02:16:05 +00:00
Moved the radio defines into the actual radio code files. Fixed a few runtimes. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@2229 316c924e-a436-60f5-8080-3fe189b3f50e
31 lines
714 B
Plaintext
31 lines
714 B
Plaintext
/proc/mini_blob_event()
|
|
command_alert("Confirmed outbreak of level 5 biohazard aboard [station_name()]. All personnel must contain the outbreak.", "Biohazard Alert")
|
|
world << sound('outbreak5.ogg')
|
|
var/turf/T = pick(blobstart)
|
|
var/obj/blob/bl = new /obj/blob( T.loc, 30 )
|
|
spawn(0)
|
|
bl.Life()
|
|
bl.Life()
|
|
bl.Life()
|
|
bl.Life()
|
|
bl.blobdebug = 1
|
|
bl.Life()
|
|
blobevent = 1
|
|
spawn(0)
|
|
dotheblobbaby()
|
|
spawn(3000)
|
|
blobevent = 0
|
|
|
|
/proc/dotheblobbaby()
|
|
if (blobevent)
|
|
if (blobs.len > 0)
|
|
for(var/i = 1 to 10)
|
|
sleep(-1)
|
|
if (blobs.len == 0)
|
|
break
|
|
var/obj/blob/B = pick(active_blobs)
|
|
if(B.z != 1)
|
|
continue
|
|
B.Life()
|
|
spawn(30)
|
|
dotheblobbaby() |