mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 10:12:45 +00:00
22 lines
311 B
Plaintext
22 lines
311 B
Plaintext
/datum/event/blob
|
|
announceWhen = 12
|
|
endWhen = 120
|
|
|
|
var/obj/structure/blob/core/Blob
|
|
|
|
|
|
/datum/event/blob/start()
|
|
var/turf/T = pick(blobstart)
|
|
if(!T)
|
|
kill()
|
|
return
|
|
|
|
Blob = new /obj/structure/blob/core/random_medium(T)
|
|
|
|
|
|
/datum/event/blob/tick()
|
|
if(!Blob || !Blob.loc)
|
|
Blob = null
|
|
kill()
|
|
return
|