mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 18:32:03 +00:00
23 lines
362 B
Plaintext
23 lines
362 B
Plaintext
obj/structure
|
|
icon = 'icons/obj/structures.dmi'
|
|
penetration_dampening = 5
|
|
|
|
obj/structure/blob_act()
|
|
if(prob(50))
|
|
qdel(src)
|
|
|
|
obj/structure/ex_act(severity)
|
|
switch(severity)
|
|
if(1.0)
|
|
qdel(src)
|
|
return
|
|
if(2.0)
|
|
if(prob(50))
|
|
qdel(src)
|
|
return
|
|
if(3.0)
|
|
return
|
|
|
|
/obj/structure/projectile_check()
|
|
return PROJREACT_OBJS
|