mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2026-08-25 21:56:42 +01:00
Replace all modular HTML spans with defines spans
In total: - Adds span defines for `reallybig hypnophrase`, `big warning`, `header` - Fixes a missing apostrophe for hypno stare - Makes a special exception for cuddling.dm, which uses an irregular span - Puts the spans file back
This commit is contained in:
@@ -16,7 +16,7 @@
|
||||
/obj/item/armyknife/attack_self(mob/user)
|
||||
playsound(get_turf(user),'sound/weapons/batonextend.ogg',50,1)
|
||||
var/obj/item/armyknife/ak_screw = new /obj/item/armyknife/screw(drop_location())
|
||||
to_chat(user, "<span class='notice'>You unfold the screwdriver.</span>")
|
||||
to_chat(user, span_notice("You unfold the screwdriver."))
|
||||
qdel(src)
|
||||
user.put_in_active_hand(ak_screw)
|
||||
|
||||
@@ -42,7 +42,7 @@
|
||||
/obj/item/armyknife/screw/attack_self(mob/user)
|
||||
playsound(get_turf(user),'sound/weapons/batonextend.ogg',50,1)
|
||||
var/obj/item/armyknife/ak_cut = new /obj/item/armyknife/cutter(drop_location())
|
||||
to_chat(user, "<span class='notice'>You fold the screwdriver and unfold the wirecutters.</span>")
|
||||
to_chat(user, span_notice("You fold the screwdriver and unfold the wirecutters."))
|
||||
qdel(src)
|
||||
user.put_in_active_hand(ak_cut)
|
||||
|
||||
@@ -70,7 +70,7 @@
|
||||
/obj/item/armyknife/cutter/attack_self(mob/user)
|
||||
playsound(get_turf(user), 'sound/weapons/batonextend.ogg', 50, 1)
|
||||
var/obj/item/armyknife/ak_knife = new /obj/item/armyknife/blade(drop_location())
|
||||
to_chat(user, "<span class='notice'>You fold the wirecutters and unfold the knife.</span>")
|
||||
to_chat(user, span_notice("You fold the wirecutters and unfold the knife."))
|
||||
qdel(src)
|
||||
user.put_in_active_hand(ak_knife)
|
||||
|
||||
@@ -94,7 +94,7 @@
|
||||
/obj/item/armyknife/blade/attack_self(mob/user)
|
||||
playsound(get_turf(user), 'sound/weapons/batonextend.ogg', 50, 1)
|
||||
var/obj/item/armyknife/ak_fold = new /obj/item/armyknife(drop_location())
|
||||
to_chat(user, "<span class='notice'>You fold the knife.</span>")
|
||||
to_chat(user, span_notice("You fold the knife."))
|
||||
qdel(src)
|
||||
user.put_in_active_hand(ak_fold)
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
|
||||
/obj/item/melee/baseball_bat/AltClick(mob/living/carbon/human/user as mob)
|
||||
hole = hole == CUM_TARGET_VAGINA ? CUM_TARGET_ANUS : CUM_TARGET_VAGINA
|
||||
to_chat(user, "<span class='notice'>Now targetting \the [hole].</span>")
|
||||
to_chat(user, span_notice("Now targetting \the [hole]."))
|
||||
|
||||
/obj/item/melee/baseball_bat/attack(mob/living/target, mob/living/user)
|
||||
if (BODY_ZONE_PRECISE_GROIN && user.a_intent != INTENT_HARM) //ROUGH PRISON HUMILATION YAY
|
||||
@@ -22,7 +22,7 @@
|
||||
message = (user == target) ? pick("fucks [possessive_verb] own ass with \the [src]","shoves \the [src] into [possessive_verb] ass", "jams \the [src] into [possessive_verb] ass") : pick("fucks [target]'s asshole with \the [src]", "jams \the [src] into [target]'s ass")
|
||||
lust_amt = NORMAL_LUST
|
||||
if(message)
|
||||
user.visible_message("<span class='lewd'>[user] [message].</span>")
|
||||
user.visible_message(span_lewd("[user] [message]."))
|
||||
target.handle_post_sex(lust_amt, null, user)
|
||||
playsound(loc, pick('modular_sand/sound/interactions/bang4.ogg',
|
||||
'modular_sand/sound/interactions/bang5.ogg',
|
||||
@@ -33,7 +33,7 @@
|
||||
return
|
||||
var/atom/throw_target = get_edge_target_turf(target, user.dir)
|
||||
if(homerun_ready)
|
||||
user.visible_message("<span class='userdanger'>It's a home run!</span>")
|
||||
user.visible_message(span_userdanger("It's a home run!"))
|
||||
target.throw_at(throw_target, rand(8,10), 14, user)
|
||||
target.ex_act(EXPLODE_HEAVY)
|
||||
playsound(get_turf(src), 'sound/weapons/homerun.ogg', 100, TRUE)
|
||||
|
||||
Reference in New Issue
Block a user