mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 10:43:20 +00:00
[MIRROR] next set of spans (#9247)
Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com> Co-authored-by: Kashargul <KashL@t-online.de>
This commit is contained in:
@@ -547,7 +547,7 @@
|
||||
|
||||
//Chica Head
|
||||
/obj/item/clothing/head/helmet/fluff/freddy/chica
|
||||
desc = span_red("<b>LET'S EAT!</b>")
|
||||
desc = span_red(span_bold("LET'S EAT!"))
|
||||
icon_state = "chicahead"
|
||||
item_state = "chicahead_mob"
|
||||
|
||||
@@ -586,7 +586,7 @@
|
||||
|
||||
//Chica Suit
|
||||
/obj/item/clothing/suit/fluff/freddy/chica
|
||||
desc = span_red("<b>LET'S EAT!</b>")
|
||||
desc = span_red(span_bold("LET'S EAT!"))
|
||||
icon_state = "chicasuit"
|
||||
item_state = "chicasuit_mob"
|
||||
|
||||
@@ -1304,7 +1304,7 @@ Departamental Swimsuits, for general use
|
||||
//For general use maybe
|
||||
/obj/item/clothing/under/batter //I guess we're going OFF limits.
|
||||
name = "Worn baseball outfit"
|
||||
desc = "<b>Purification in progress...</b>"
|
||||
desc = span_bold("Purification in progress...")
|
||||
icon = 'icons/vore/custom_clothes_vr.dmi'
|
||||
icon_override = 'icons/vore/custom_clothes_vr.dmi'
|
||||
icon_state = "batter"
|
||||
@@ -2117,7 +2117,7 @@ Departamental Swimsuits, for general use
|
||||
user.visible_message(span_notice("[user] harmlessly bops [target] with \the [src]."), \
|
||||
span_notice("\The [src] harmlessly bops [target]. The hat seems... unwilling?"))
|
||||
else
|
||||
user.visible_message("<b>\The [src]</b> flops over [user]'s' head for a moment, but they seem alright.", \
|
||||
user.visible_message(span_bold("\The [src]") + " flops over [user]'s' head for a moment, but they seem alright.", \
|
||||
span_notice("\The [src] flops over your head for a moment, but you correct it without issue. There we go!"))
|
||||
|
||||
/obj/item/clothing/head/fluff/nikki/proc/hat_warp_checks(var/mob/living/target, mob/user, proximity_flag)
|
||||
@@ -2189,13 +2189,13 @@ Departamental Swimsuits, for general use
|
||||
translocator.attack_self(user, user)
|
||||
return
|
||||
else
|
||||
to_chat(user, "<span_class='warning'>\The [src] doesn't have a translocator inside it right now.</span>")
|
||||
to_chat(user, span_warning("\The [src] doesn't have a translocator inside it right now."))
|
||||
return
|
||||
|
||||
/obj/item/clothing/head/fluff/nikki/examine(mob/user) // If it has a translocator installed, make it very obvious to viewers that something WEIRD is going on with this hat.
|
||||
. = ..()
|
||||
if (translocator)
|
||||
. += "Weird... <span class='danger'>You can't see the bottom of the hole inside the hat...</span>"
|
||||
. += "Weird... " + span_danger("You can't see the bottom of the hole inside the hat...")
|
||||
|
||||
/obj/item/clothing/head/fluff/nikki/equipped(mob/living/carbon/human/user, slot)
|
||||
. = ..()
|
||||
|
||||
@@ -1298,8 +1298,8 @@
|
||||
if (istype(user))
|
||||
// It's only made for Verie's chassis silly!
|
||||
if (user.ckey != owner)
|
||||
to_chat(user, "<span class='warning'>The brush's teeth are far too rough to even comb your hair. Apparently, \
|
||||
this device was not made for people like you.</span>")
|
||||
to_chat(user, span_warning("The brush's teeth are far too rough to even comb your hair. Apparently, \
|
||||
this device was not made for people like you."))
|
||||
return
|
||||
|
||||
if (!user.hair_accessory_style)
|
||||
@@ -1308,14 +1308,14 @@
|
||||
user.update_hair()
|
||||
user.visible_message("[user] combs her hair. \The [src] leaves behind glowing cyan highlights as it passes through \
|
||||
her black strands.", \
|
||||
"<span class='notice'>You brush your hair. \The [src]'s teeth begin to vibrate and glow as they react to your nanites. \
|
||||
span_notice("You brush your hair. \The [src]'s teeth begin to vibrate and glow as they react to your nanites. \
|
||||
The teeth stimulate the nanites in your hair strands until your hair give off a brilliant, faintly pulsing \
|
||||
cyan glow!</span>")
|
||||
cyan glow!"))
|
||||
|
||||
else
|
||||
user.visible_message("[user] combs her hair. \The [src] brushes away her glowing cyan highlights. Neat!", \
|
||||
"<span class='notice'>You brush your hair. \The [src]'s teeth wipe away the glowing streaks in your hair \
|
||||
like a sponge scrubbing away a stain.</span>")
|
||||
span_notice("You brush your hair. \The [src]'s teeth wipe away the glowing streaks in your hair \
|
||||
like a sponge scrubbing away a stain."))
|
||||
user.hair_accessory_style = null
|
||||
for(var/datum/sprite_accessory/hair_accessory/verie_hair_glow/V in user)
|
||||
to_chat(user, span_warning("found a V to delete!"))
|
||||
@@ -1543,16 +1543,16 @@ End CHOMP Removal*/
|
||||
if(world.time - last_message <= 5 SECONDS)
|
||||
return
|
||||
if(user.a_intent == I_HELP)
|
||||
user.visible_message(span_notice("<b>\The [user]</b> hugs [src]!"),span_notice("You hug [src]!"))
|
||||
user.visible_message(span_notice(span_bold("\The [user]") + " hugs [src]!"),span_notice("You hug [src]!"))
|
||||
icon_state = "pandorba"
|
||||
else if (user.a_intent == I_HURT)
|
||||
user.visible_message(span_warning("<b>\The [user]</b> punches [src]!"),span_warning("You punch [src]!"))
|
||||
user.visible_message(span_warning(span_bold("\The [user]") + " punches [src]!"),span_warning("You punch [src]!"))
|
||||
icon_state = "pandorba_h"
|
||||
else if (user.a_intent == I_GRAB)
|
||||
user.visible_message(span_warning("<b>\The [user]</b> attempts to strangle [src]!"),span_warning("You attempt to strangle [src]!"))
|
||||
user.visible_message(span_warning(span_bold("\The [user]") + " attempts to strangle [src]!"),span_warning("You attempt to strangle [src]!"))
|
||||
icon_state = "pandorba_g"
|
||||
else
|
||||
user.visible_message(span_notice("<b>\The [user]</b> pokes [src]."),span_notice("You poke [src]."))
|
||||
user.visible_message(span_notice(span_bold("\The [user]") + " pokes [src]."),span_notice("You poke [src]."))
|
||||
icon_state = "pandorba_d"
|
||||
playsound(src, 'sound/items/drop/plushie.ogg', 25, 0)
|
||||
visible_message("[src] says, \"[pokephrase]\"")
|
||||
|
||||
Reference in New Issue
Block a user