mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-21 02:58:45 +01:00
Readded the AM stuff to the dme Added another explosion edit from Willox git-svn-id: http://tgstation13.googlecode.com/svn/trunk@3903 316c924e-a436-60f5-8080-3fe189b3f50e
29 lines
771 B
Plaintext
29 lines
771 B
Plaintext
/proc/mini_blob_event()
|
|
|
|
var/turf/T = pick(blobstart)
|
|
var/obj/effect/blob/core/bl = new /obj/effect/blob/core(T, 200)
|
|
spawn(0)
|
|
bl.Life()
|
|
bl.Life()
|
|
bl.Life()
|
|
blobevent = 1
|
|
spawn(0)
|
|
dotheblobbaby()
|
|
spawn(3000)
|
|
blobevent = 0
|
|
spawn(rand(3000, 6000)) //Delayed announcements to keep the crew on their toes.
|
|
command_alert("Confirmed outbreak of level 5 biohazard aboard [station_name()]. All personnel must contain the outbreak.", "Biohazard Alert")
|
|
world << sound('outbreak5.ogg')
|
|
|
|
/proc/dotheblobbaby()
|
|
if (blobevent)
|
|
if(blob_cores.len)
|
|
for(var/i = 1 to 5)
|
|
sleep(-1)
|
|
if(!blob_cores.len) break
|
|
var/obj/effect/blob/B = pick(blob_cores)
|
|
if(B.z != 1)
|
|
continue
|
|
B.Life()
|
|
spawn(30)
|
|
dotheblobbaby() |