mirror of
https://github.com/fulpstation/fulpstation.git
synced 2025-12-10 01:57:01 +00:00
22 lines
519 B
Plaintext
22 lines
519 B
Plaintext
/obj/effect/blob/shield
|
|
name = "strong blob"
|
|
icon = 'icons/mob/blob.dmi'
|
|
icon_state = "blob_idle"
|
|
desc = "Some blob creature thingy"
|
|
health = 75
|
|
fire_resist = 2
|
|
|
|
|
|
/obj/effect/blob/shield/update_icon()
|
|
if(health <= 0)
|
|
qdel(src)
|
|
return
|
|
return
|
|
|
|
/obj/effect/blob/shield/fire_act(datum/gas_mixture/air, exposed_temperature, exposed_volume)
|
|
return
|
|
|
|
/obj/effect/blob/shield/CanPass(atom/movable/mover, turf/target, height=0)
|
|
if(istype(mover) && mover.checkpass(PASSBLOB)) return 1
|
|
return 0
|