chat box red (#24663)

This commit is contained in:
BiancaWilkson
2024-03-20 21:03:55 +00:00
committed by GitHub
parent fac94d826c
commit 5a12934651
@@ -286,7 +286,7 @@ GLOBAL_LIST_INIT(wabbajack_docile_animals, list(
else
new_mob = new /mob/living/carbon/alien/humanoid/sentinel(M.loc)
new_mob.universal_speak = TRUE
to_chat(M, "<span class='userdanger'>Your consciousness is subsumed by a distant hivemind... you feel murderous hostility towards non-xenomorph life!</span>")
to_chat(M, chat_box_red("<span class='userdanger'>Your consciousness is subsumed by a distant hivemind... you feel murderous hostility towards non-xenomorph life!</span>"))
if("terror")
var/terror_type = pick(
/mob/living/simple_animal/hostile/poison/terror_spider/red,
@@ -294,7 +294,7 @@ GLOBAL_LIST_INIT(wabbajack_docile_animals, list(
/mob/living/simple_animal/hostile/poison/terror_spider/gray,
/mob/living/simple_animal/hostile/poison/terror_spider/black)
new_mob = new terror_type(M.loc)
to_chat(M, "<span class='userdanger'>Your consciousness is subsumed by a distant hivemind... you feel murderous hostility towards all non-terror-spider lifeforms!</span>")
to_chat(M, chat_box_red("<span class='userdanger'>Your consciousness is subsumed by a distant hivemind... you feel murderous hostility towards all non-terror-spider lifeforms!</span>"))
if("animal")
if(prob(50))
var/beast = pick(GLOB.wabbajack_hostile_animals)