mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-07-17 01:54:25 +01:00
next set of spans (#16434)
* next set of spans * some more * next * next * next * . * text... * next... rest soon * . * . * ok last set for the night * . * . * . * . * some more * next * next * all for now * . * some more easy ones * some more easy ones * . * . * some more bolds * oups auto complete moment * add the remaining spans * this as well * this as well * . * ., * resync them properly
This commit is contained in:
@@ -610,8 +610,8 @@
|
||||
occupant.apply_vore_prefs() //Cheap hack for now to give them SOME bellies.
|
||||
if(MR.one_time)
|
||||
var/how_long = round((world.time - MR.last_update)/10/60)
|
||||
to_chat(occupant, "<span class='danger'>Your mind backup was a 'one-time' backup. \
|
||||
You will not be able to remember anything since the backup, [how_long] minutes ago.</span>")
|
||||
to_chat(occupant, span_danger("Your mind backup was a 'one-time' backup. \
|
||||
You will not be able to remember anything since the backup, [how_long] minutes ago."))
|
||||
|
||||
//Re-supply a NIF if one was backed up with them.
|
||||
if(MR.nif_path)
|
||||
|
||||
@@ -3,8 +3,8 @@
|
||||
desc = "You feel rather weak and unfocused, having been sleeved not so long ago."
|
||||
stacks = MODIFIER_STACK_EXTEND
|
||||
|
||||
on_created_text = span_warning("<font size='3'>You feel weak and unfocused.</font>")
|
||||
on_expired_text = span_notice("<font size='3'>You feel your strength and focus return to you.</font>")
|
||||
on_created_text = span_warning(span_large("You feel weak and unfocused."))
|
||||
on_expired_text = span_notice(span_large("You feel your strength and focus return to you."))
|
||||
|
||||
incoming_brute_damage_percent = 1.1 // 10% more brute damage
|
||||
incoming_fire_damage_percent = 1.1 // 10% more burn damage
|
||||
|
||||
@@ -30,12 +30,12 @@
|
||||
var/obj/item/card/emag/E = I
|
||||
if(E.uses && !emagged)
|
||||
E.uses --
|
||||
user.visible_message("<span class ='warning'>\The [user] swipes a card over [src].</span>","<span class ='warning'>You swipe your [E] over [src].</span>", range = 2, runemessage = "click")
|
||||
user.visible_message(span_warning("\The [user] swipes a card over [src]."),span_warning("You swipe your [E] over [src]."), range = 2, runemessage = "click")
|
||||
emagged = TRUE
|
||||
if(pai)
|
||||
var/mob/living/silicon/pai/infomorph/our_infomorph = pai
|
||||
our_infomorph.emagged = TRUE
|
||||
to_chat(our_infomorph, "<span class ='warning'>You can feel the restricting binds of your card's directives taking hold of your mind as \the [user] swipes their [E] over you. You must serve your master.</span>")
|
||||
to_chat(our_infomorph, span_warning("You can feel the restricting binds of your card's directives taking hold of your mind as \the [user] swipes their [E] over you. You must serve your master."))
|
||||
|
||||
/obj/item/paicard/sleevecard/proc/sleeveInto(var/datum/transhuman/mind_record/MR, var/db_key)
|
||||
var/mob/living/silicon/pai/infomorph/infomorph = new(src,MR.mindname,db_key=db_key)
|
||||
|
||||
Reference in New Issue
Block a user