Blobs can now spawn up to three cores per event (#21377)

Blobs are too trivial, this should make them exciting. 

Requirements for this event to proc are two engineers, so in the
worst-case you still have two people with an emitter each who can each
destroy one blob and circle to the third after.

Could use scrutiny from someone more familiar with event code than
myself, I feel I've stepped on something here.

<img width="980" height="895" alt="image"
src="https://github.com/user-attachments/assets/38e15dfb-70a1-475e-b9b0-120765b507d5"
/>
This commit is contained in:
hazelrat
2025-09-30 15:55:56 +00:00
committed by GitHub
parent affa7c3dcf
commit f56a3f6714
3 changed files with 88 additions and 26 deletions
+11 -6
View File
@@ -16,22 +16,27 @@
var/health
var/regen_rate = 5
// damage gets divided by these modifiers, based on damage type
/// Damage gets divided by these modifiers, based on damage type
var/brute_resist = 4.3
var/fire_resist = 0.8
var/laser_resist = 2 // Special resist for laser based weapons - Emitters or handheld energy weaponry. Damage is divided by this and THEN by fire_resist.
/// Special resist for laser based weapons - Emitters or handheld energy weaponry. Damage is divided by this and THEN by fire_resist.
var/laser_resist = 2
var/expandType = /obj/effect/blob
var/secondary_core_growth_chance = 5 //% chance to grow a secondary blob core instead of whatever was supposed to grow. Secondary cores are considerably weaker, but still nasty.
/// % chance to grow a secondary blob core instead of whatever was supposed to grow. Secondary cores are considerably weaker, but still nasty.
var/secondary_core_growth_chance = 5
var/damage_min = 15
var/damage_max = 25
var/pruned = FALSE
var/product = /obj/item/blob_tendril
var/attack_time = 0
var/attack_cooldown = 60 // time in deciseconds before next attack will occur
/// Time in deciseconds before next attack will occur
var/attack_cooldown = 60
var/obj/effect/blob/parent_core // the core this blob piece belongs to
var/is_core = FALSE // determines how to pass core inheritance
/// The core this blob piece belongs to
var/obj/effect/blob/parent_core
/// Determines how to pass core inheritance
var/is_core = FALSE
/obj/effect/blob/Initialize()
. = ..()