mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-19 14:12:55 +00:00
* Basic blob mobs * Update blackmesa.dmm * Modular update --------- Co-authored-by: Jacquerel <hnevard@gmail.com> Co-authored-by: Giz <13398309+vinylspiders@users.noreply.github.com>
14 lines
476 B
Plaintext
14 lines
476 B
Plaintext
/datum/round_event_control/wizard/blobies //avast!
|
|
name = "Zombie Outbreak"
|
|
weight = 3
|
|
typepath = /datum/round_event/wizard/blobies
|
|
max_occurrences = 3
|
|
description = "Spawns a blob spore on every corpse."
|
|
min_wizard_trigger_potency = 3
|
|
max_wizard_trigger_potency = 7
|
|
|
|
/datum/round_event/wizard/blobies/start()
|
|
|
|
for(var/mob/living/carbon/human/H in GLOB.dead_mob_list)
|
|
new /mob/living/basic/blob_minion/spore/minion(H.loc) // Creates zombies which ghosts can control
|