mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-21 02:57:48 +01:00
34 lines
981 B
Plaintext
34 lines
981 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')
|
|
if(prob(33)) //33% chance of making a blob.
|
|
var/turf/T = pick(blobstart)
|
|
var/obj/effect/blob/bl = new /obj/effect/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(15000)
|
|
blobevent = 0
|
|
spawn(rand(30, 60)) //Delayed announcements to keep the crew on their toes.
|
|
command_alert("Confirmed outbreak of level 5 biohazard aboard [station_name()].", "Biohazard Alert")
|
|
world << sound('outbreak5.ogg')
|
|
|
|
/proc/dotheblobbaby()
|
|
if (blobevent)
|
|
if(active_blobs.len)
|
|
for(var/i = 1 to 10)
|
|
sleep(-1)
|
|
if(!active_blobs.len) break
|
|
var/obj/effect/blob/B = pick(active_blobs)
|
|
if(B.z != 1)
|
|
continue
|
|
B.Life()
|
|
spawn(150)
|
|
dotheblobbaby() |