mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-12 03:02:54 +00:00
Makes Blobs more useful.
This commit is contained in:
@@ -7,6 +7,7 @@
|
||||
max_integrity = 40
|
||||
point_return = 15
|
||||
var/resource_delay = 0
|
||||
var/resource_cooldown = 4 SECONDS
|
||||
|
||||
/obj/structure/blob/resource/New(var/newloc, var/new_overmind)
|
||||
..(newloc, new_overmind)
|
||||
@@ -25,6 +26,12 @@
|
||||
flick("blob_resource_glow", src)
|
||||
if(overmind)
|
||||
overmind.add_points(1)
|
||||
resource_delay = world.time + 4 SECONDS + (overmind.resource_blobs.len * 2.5) //4 seconds plus a quarter second for each resource blob the overmind has
|
||||
resource_delay = world.time + resource_cooldown + (overmind.resource_blobs.len * 2.5) //4 seconds plus a quarter second for each resource blob the overmind has
|
||||
else
|
||||
resource_delay = world.time + 4 SECONDS
|
||||
resource_delay = world.time + resource_cooldown
|
||||
|
||||
/obj/structure/blob/resource/sluggish // Tankier, but really slow.
|
||||
name = "sluggish resource blob"
|
||||
desc = "A thin spire of occasionally convulsing tendrils."
|
||||
max_integrity = 80
|
||||
resource_cooldown = 8 SECONDS
|
||||
|
||||
Reference in New Issue
Block a user