mirror of
https://github.com/CHOMPstation/CHOMPstation.git
synced 2026-08-29 23:16:21 +01:00
Replaced all blue font with a custom colour
This commit is contained in:
@@ -474,41 +474,41 @@
|
||||
if(ishuman(C.loc)) //In a /mob/living/carbon/human
|
||||
var/mob/living/carbon/human/H = C.loc
|
||||
if(H.shoes == C) //Being worn
|
||||
to_chat(src,"<font color='blue'> You start to climb around the larger creature's feet and ankles!</font>")
|
||||
to_chat(src,"<font color='#6F6FE2'> You start to climb around the larger creature's feet and ankles!</font>")
|
||||
to_chat(H,"<font color='red'>Something is trying to climb out of your [C]!</font>")
|
||||
var/original_loc = H.loc
|
||||
for(var/escape_time = 100,escape_time > 0,escape_time--)
|
||||
if(H.loc != original_loc)
|
||||
to_chat(src,"<font color='red'>You're pinned back underfoot!</font>")
|
||||
to_chat(H,"<font color='blue'>You pin the escapee back underfoot!</font>")
|
||||
to_chat(H,"<font color='#6F6FE2'>You pin the escapee back underfoot!</font>")
|
||||
return
|
||||
if(src.loc != C)
|
||||
return
|
||||
sleep(1)
|
||||
|
||||
to_chat(src,"<font color='blue'>You manage to escape \the [C]!</font>")
|
||||
to_chat(src,"<font color='#6F6FE2'>You manage to escape \the [C]!</font>")
|
||||
to_chat(H,"<font color='red'>Somone has climbed out of your [C]!</font>")
|
||||
forceMove(H.loc)
|
||||
|
||||
else //Being held by a human
|
||||
to_chat(src,"<font color='blue'>You start to climb out of \the [C]!</font>")
|
||||
to_chat(src,"<font color='#6F6FE2'>You start to climb out of \the [C]!</font>")
|
||||
to_chat(H,"<font color='red'>Something is trying to climb out of your [C]!</font>")
|
||||
for(var/escape_time = 60,escape_time > 0,escape_time--)
|
||||
if(H.shoes == C)
|
||||
to_chat(src,"<font color='red'>You're pinned underfoot!</font>")
|
||||
to_chat(H,"<font color='blue'>You pin the escapee underfoot!</font>")
|
||||
to_chat(H,"<font color='#6F6FE2'>You pin the escapee underfoot!</font>")
|
||||
return
|
||||
if(src.loc != C)
|
||||
return
|
||||
sleep(1)
|
||||
to_chat(src,"<font color='blue'>You manage to escape \the [C]!</font>")
|
||||
to_chat(src,"<font color='#6F6FE2'>You manage to escape \the [C]!</font>")
|
||||
to_chat(H,"<font color='red'>Somone has climbed out of your [C]!</font>")
|
||||
forceMove(H.loc)
|
||||
|
||||
to_chat(src,"<font color='blue'>You start to climb out of \the [C]!</font>")
|
||||
to_chat(src,"<font color='#6F6FE2'>You start to climb out of \the [C]!</font>")
|
||||
sleep(50)
|
||||
if(loc == C)
|
||||
to_chat(src,"<font color='blue'>You climb out of \the [C]!</font>")
|
||||
to_chat(src,"<font color='#6F6FE2'>You climb out of \the [C]!</font>")
|
||||
forceMove(C.loc)
|
||||
return
|
||||
|
||||
|
||||
@@ -74,7 +74,7 @@
|
||||
if(ishuman(target))
|
||||
var/mob/living/carbon/human/H = M
|
||||
H.resize(set_size)
|
||||
H.show_message("<font color='blue'> The beam fires into your body, changing your size!</font>")
|
||||
H.show_message("<font color='#6F6FE2'> The beam fires into your body, changing your size!</font>")
|
||||
H.updateicon()
|
||||
else if (istype(target, /mob/living/))
|
||||
var/mob/living/H = M
|
||||
|
||||
Reference in New Issue
Block a user