mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2025-12-27 10:41:42 +00:00
12 lines
449 B
Plaintext
12 lines
449 B
Plaintext
/obj/alien/acid/proc/tick()
|
|
ticks += 1
|
|
for(var/mob/O in hearers(src, null))
|
|
O.show_message("\green <B>[src.target] sizzles and begins to melt under the bubbling mess of acid!</B>", 1)
|
|
if(prob(ticks*10))
|
|
for(var/mob/O in hearers(src, null))
|
|
O.show_message("\green <B>[src.target] collapses under its own weight into a puddle of goop and undigested debris!</B>", 1)
|
|
del(target)
|
|
del(src)
|
|
return
|
|
spawn(rand(200, 600)) tick()
|