mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2025-12-23 16:51:53 +00:00
* Adds the check components * Adds in trailing newlines * Converts all CRLF to LF * Post merge EOF * Post merge line endings * Final commit
17 lines
421 B
Plaintext
17 lines
421 B
Plaintext
/obj/structure/blob/storage
|
|
name = "storage blob"
|
|
icon = 'icons/mob/blob.dmi'
|
|
icon_state = "blob_resource"
|
|
max_integrity = 30
|
|
fire_resist = 2
|
|
point_return = 12
|
|
|
|
/obj/structure/blob/storage/obj_destruction(damage_flag)
|
|
if(overmind)
|
|
overmind.max_blob_points -= 50
|
|
..()
|
|
|
|
/obj/structure/blob/storage/proc/update_max_blob_points(var/new_point_increase)
|
|
if(overmind)
|
|
overmind.max_blob_points += new_point_increase
|