mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-30 02:52:30 +00:00
* Free codebase churn * fixes dviewmob * a commit * Partial revert "Free codebase churn" This reverts commit 9dd41b3860c331637bbc85e694dd32dc59768ad5. * better fix to dviewmob * renames living_mob_list to alive_mob_list, adds mob_living_list and carbon_list * make some use out of the shiny carbon list * make some use out of the shiny new living list * more things, also make the mobs subsystem (Life) use living list * bonus * domo arigato mr. roboto * compile fixes, also made the drone code less dumb * better? * make admin message prettier * honk * fixes blobs * rev fixes * one small thing
12 lines
477 B
Plaintext
12 lines
477 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
|
|
|
|
/datum/round_event/wizard/invincible/start()
|
|
|
|
for(var/mob/living/carbon/human/H in GLOB.alive_mob_list)
|
|
H.reagents.add_reagent("adminordrazine", 40) //100 ticks of absolute invinciblity (barring gibs)
|
|
to_chat(H, "<span class='notice'>You feel invincible, nothing can hurt you!</span>") |