[MIRROR] remove static chat colour tags (#7635)

Co-authored-by: Heroman3003 <31296024+Heroman3003@users.noreply.github.com>
Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
Co-authored-by: Guti <32563288+TheCaramelion@users.noreply.github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: CHOMPStation2 <chompsation2@gmail.com>
Co-authored-by: Raeschen <rycoop29@gmail.com>
Co-authored-by: Changelogs <action@github.com>
Co-authored-by: Aroliacue <96730930+Aroliacue@users.noreply.github.com>
Co-authored-by: Eli <fracshun@gmail.com>
Co-authored-by: tacoguy7765093 <karokaromaro@gmail.com>
Co-authored-by: Nadyr <41974248+Darlantanis@users.noreply.github.com>
Co-authored-by: TheGreatKitsune <88862343+TheGreatKitsune@users.noreply.github.com>
Co-authored-by: Missile597 <150307788+Missile597@users.noreply.github.com>
This commit is contained in:
CHOMPStation2
2024-01-29 16:45:19 -07:00
committed by GitHub
parent ad0bb36d2c
commit aab270c74f
263 changed files with 2862 additions and 2147 deletions

View File

@@ -27,7 +27,7 @@ var/list/dreams = list(
spawn(0)
for(var/i = rand(1,4),i > 0, i--)
to_chat(src, "<font color='blue'><i>... [pick(dreams)] ...</i></font>")
to_chat(src, span_blue("<i>... [pick(dreams)] ...</i>"))
sleep(rand(40,70))
if(paralysis <= 0)
dreaming = 0

View File

@@ -244,8 +244,8 @@ Gunshots/explosions/opening doors/less rare audio (done)
/obj/effect/fake_attacker/attackby(var/obj/item/weapon/P as obj, mob/user as mob)
step_away(src,my_target,2)
for(var/mob/M in oviewers(world.view,my_target))
to_chat(M, "<font color='red'><B>[my_target] flails around wildly.</B></font>")
my_target.show_message("<font color='red'><B>[src] has been attacked by [my_target] </B></font>", 1) //Lazy.
to_chat(M, span_red("<B>[my_target] flails around wildly.</B>"))
my_target.show_message(span_red("<B>[src] has been attacked by [my_target] </B>"), 1) //Lazy.
src.health -= P.force
@@ -257,7 +257,7 @@ Gunshots/explosions/opening doors/less rare audio (done)
step_away(src,my_target,2)
if(prob(30))
for(var/mob/O in oviewers(world.view , my_target))
to_chat(O, "<font color='red'><B>[my_target] stumbles around.</B></font>")
to_chat(O, span_red("<B>[my_target] stumbles around.</B>"))
/obj/effect/fake_attacker/New()
..()
@@ -304,7 +304,7 @@ Gunshots/explosions/opening doors/less rare audio (done)
if(prob(15))
if(weapon_name)
my_target << sound(pick('sound/weapons/genhit1.ogg', 'sound/weapons/genhit2.ogg', 'sound/weapons/genhit3.ogg'))
my_target.show_message("<font color='red'><B>[my_target] has been attacked with [weapon_name] by [src.name] </B></font>", 1)
my_target.show_message(span_red("<B>[my_target] has been attacked with [weapon_name] by [src.name]!</B>"), 1)
my_target.halloss += 8
if(prob(20)) my_target.eye_blurry += 3
if(prob(33))
@@ -312,7 +312,7 @@ Gunshots/explosions/opening doors/less rare audio (done)
fake_blood(my_target)
else
my_target << sound(pick('sound/weapons/punch1.ogg','sound/weapons/punch2.ogg','sound/weapons/punch3.ogg','sound/weapons/punch4.ogg'))
my_target.show_message("<font color='red'><B>[src.name] has punched [my_target]!</B></font>", 1)
my_target.show_message(span_red("<B>[src.name] has punched [my_target]!</B>"), 1)
my_target.halloss += 4
if(prob(33))
if(!locate(/obj/effect/overlay) in my_target.loc)