mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-28 10:01:58 +00:00
* Event menu rewrite * Update topic.dm * Update _event.dm * Update event_chaos_system.dm Co-authored-by: Profakos <profakos@gmail.com> Co-authored-by: Zonespace <41448081+Zonespace27@users.noreply.github.com> Co-authored-by: Gandalf <9026500+Gandalf2k15@users.noreply.github.com>
14 lines
557 B
Plaintext
14 lines
557 B
Plaintext
/datum/round_event_control/wizard/invincible //Boolet Proof
|
|
name = "Invincibility"
|
|
weight = 3
|
|
typepath = /datum/round_event/wizard/invincible
|
|
max_occurrences = 5
|
|
earliest_start = 0 MINUTES
|
|
description = "Everyone is invincible for a short time ticks."
|
|
|
|
/datum/round_event/wizard/invincible/start()
|
|
|
|
for(var/mob/living/carbon/human/H in GLOB.alive_mob_list)
|
|
H.reagents.add_reagent(/datum/reagent/medicine/adminordrazine, 40) //100 ticks of absolute invinciblity (barring gibs)
|
|
to_chat(H, span_notice("You feel invincible, nothing can hurt you!"))
|