mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2025-12-20 15:21:29 +00:00
17 lines
462 B
Plaintext
17 lines
462 B
Plaintext
/obj/structure/blob/storage
|
|
name = "storage blob"
|
|
icon = 'icons/mob/blob.dmi'
|
|
icon_state = "blob_resource"
|
|
health = 30
|
|
fire_resist = 2
|
|
point_return = 12
|
|
var/mob/camera/blob/overmind = null
|
|
|
|
/obj/structure/blob/storage/update_icon()
|
|
if(health <= 0 && !QDELETED(src))
|
|
overmind.max_blob_points -= 50
|
|
qdel(src)
|
|
|
|
/obj/structure/blob/storage/proc/update_max_blob_points(var/new_point_increase)
|
|
if(overmind)
|
|
overmind.max_blob_points += new_point_increase |