Replaced all blue font with a custom colour

This commit is contained in:
AnonymousHybi
2019-01-18 15:14:32 +00:00
parent e85c41f86f
commit bff9f560f7
137 changed files with 491 additions and 491 deletions
+3 -3
View File
@@ -32,7 +32,7 @@
/obj/item/ammo_casing/attackby(obj/item/weapon/W as obj, mob/user as mob)
if(istype(W, /obj/item/weapon/screwdriver))
if(!BB)
user << "<font color='blue'>There is no bullet in the casing to inscribe anything into.</font>"
user << "<font color='#6F6FE2'>There is no bullet in the casing to inscribe anything into.</font>"
return
var/tmp_label = ""
@@ -40,10 +40,10 @@
if(length(label_text) > 20)
user << "<font color='red'>The inscription can be at most 20 characters long.</font>"
else if(!label_text)
user << "<font color='blue'>You scratch the inscription off of [initial(BB)].</font>"
user << "<font color='#6F6FE2'>You scratch the inscription off of [initial(BB)].</font>"
BB.name = initial(BB.name)
else
user << "<font color='blue'>You inscribe \"[label_text]\" into \the [initial(BB.name)].</font>"
user << "<font color='#6F6FE2'>You inscribe \"[label_text]\" into \the [initial(BB.name)].</font>"
BB.name = "[initial(BB.name)] (\"[label_text]\")"
/obj/item/ammo_casing/update_icon()
+1 -1
View File
@@ -695,7 +695,7 @@
mouthshoot = 1
M.visible_message("<font color='red'>[user] sticks their gun in their mouth, ready to pull the trigger...</font>")
if(!do_after(user, 40))
M.visible_message("<font color='blue'>[user] decided life was worth living</font>")
M.visible_message("<font color='#6F6FE2'>[user] decided life was worth living</font>")
mouthshoot = 0
return
var/obj/item/projectile/in_chamber = consume_next_projectile()
@@ -20,7 +20,7 @@
/obj/item/weapon/gun/launcher/rocket/examine(mob/user)
if(!..(user, 2))
return
user << "<font color='blue'>[rockets.len] / [max_rockets] rockets.</font>"
user << "<font color='#6F6FE2'>[rockets.len] / [max_rockets] rockets.</font>"
/obj/item/weapon/gun/launcher/rocket/attackby(obj/item/I as obj, mob/user as mob)
if(istype(I, /obj/item/ammo_casing/rocket))
@@ -28,8 +28,8 @@
user.drop_item()
I.loc = src
rockets += I
user << "<font color='blue'>You put the rocket in [src].</font>"
user << "<font color='blue'>[rockets.len] / [max_rockets] rockets.</font>"
user << "<font color='#6F6FE2'>You put the rocket in [src].</font>"
user << "<font color='#6F6FE2'>[rockets.len] / [max_rockets] rockets.</font>"
else
usr << "<font color='red'>[src] cannot hold more rockets.</font>"
@@ -105,25 +105,25 @@
// return
..()
if (beakers.len)
user << "<font color='blue'>[src] contains:</font>"
user << "<font color='#6F6FE2'>[src] contains:</font>"
for(var/obj/item/weapon/reagent_containers/glass/beaker/B in beakers)
if(B.reagents && B.reagents.reagent_list.len)
for(var/datum/reagent/R in B.reagents.reagent_list)
user << "<font color='blue'>[R.volume] units of [R.name]</font>"
user << "<font color='#6F6FE2'>[R.volume] units of [R.name]</font>"
/obj/item/weapon/gun/projectile/dartgun/attackby(obj/item/I as obj, mob/user as mob)
if(istype(I, /obj/item/weapon/reagent_containers/glass))
if(!istype(I, container_type))
user << "<font color='blue'>[I] doesn't seem to fit into [src].</font>"
user << "<font color='#6F6FE2'>[I] doesn't seem to fit into [src].</font>"
return
if(beakers.len >= max_beakers)
user << "<font color='blue'>[src] already has [max_beakers] beakers in it - another one isn't going to fit!</font>"
user << "<font color='#6F6FE2'>[src] already has [max_beakers] beakers in it - another one isn't going to fit!</font>"
return
var/obj/item/weapon/reagent_containers/glass/beaker/B = I
user.drop_item()
B.loc = src
beakers += B
user << "<font color='blue'>You slot [B] into [src].</font>"
user << "<font color='#6F6FE2'>You slot [B] into [src].</font>"
src.updateUsrDialog()
return 1
..()
@@ -164,7 +164,7 @@
else if(istype(target, /mob/living/carbon/))
// for (var/mob/V in viewers(src))
// V.show_message("The radiation beam dissipates harmlessly through [M]", 3)
M.show_message("<font color='blue'>The radiation beam dissipates harmlessly through your body.</font>")
M.show_message("<font color='#6F6FE2'>The radiation beam dissipates harmlessly through your body.</font>")
else
return 1
@@ -197,7 +197,7 @@
if((H.species.flags & IS_PLANT) && (M.nutrition < 500))
M.nutrition += 30
else if (istype(target, /mob/living/carbon/))
M.show_message("<font color='blue'>The radiation beam dissipates harmlessly through your body.</font>")
M.show_message("<font color='#6F6FE2'>The radiation beam dissipates harmlessly through your body.</font>")
else
return 1