This commit is contained in:
Fox-McCloud
2015-07-13 00:40:26 -04:00
parent 18b14d6c6d
commit 70b386d861
+1 -7
View File
@@ -1,14 +1,8 @@
/datum/event/blob
announceWhen = 12
endWhen = 120
var/new_rate = 2
var/obj/effect/blob/core/Blob
/datum/event/blob/New(var/strength)
..()
if(strength)
new_rate = strength
/datum/event/blob/announce()
command_announcement.Announce("Confirmed outbreak of level 5 biohazard aboard [station_name()]. All personnel must contain the outbreak.", "Biohazard Alert", 'sound/AI/outbreak5.ogg')
@@ -17,7 +11,7 @@
var/turf/T = pick(blobstart)
if(!T)
return kill()
Blob = new /obj/effect/blob/core(T, 200, null, new_rate)
Blob = new /obj/effect/blob/core(T, 200)
for(var/i = 1; i < rand(3, 6), i++)
Blob.process()