mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-23 08:31:57 +00:00
Re-uses the too_many_active_drones() proc as originally intended. Makes the private_valid_special_roles list global, no need to let each individual player initialize the list.
20 lines
812 B
Plaintext
20 lines
812 B
Plaintext
// The following procs are used to grab players for mobs produced by a seed (mostly for dionaea).
|
|
/datum/seed/proc/handle_living_product(var/mob/living/host)
|
|
|
|
if(!host || !istype(host)) return
|
|
|
|
var/datum/ghosttrap/plant/P = get_ghost_trap("living plant")
|
|
P.request_player(host, "Someone is harvesting \a [display_name].")
|
|
|
|
spawn(75)
|
|
if(!host.ckey && !host.client)
|
|
host.death() // This seems redundant, but a lot of mobs don't
|
|
host.stat = DEAD // handle death() properly. Better safe than etc.
|
|
host.visible_message("<span class='danger'>[host] is malformed and unable to survive. It expires pitifully, leaving behind some seeds.</span>")
|
|
|
|
var/total_yield = rand(1,3)
|
|
for(var/j = 0;j<=total_yield;j++)
|
|
var/obj/item/seeds/S = new(get_turf(host))
|
|
S.seed_type = name
|
|
S.update_seed()
|