Adds Digital Headpats (#31347)

This commit is contained in:
PollardTheDragon
2026-01-04 05:34:08 -05:00
committed by GitHub
parent 5f880d7555
commit fb39657ec4
4 changed files with 15 additions and 1 deletions
+1
View File
@@ -108,6 +108,7 @@
#define SPAN_REVENNOTICE(str) ("<span class='revennotice'>" + str + "</span>")
#define SPAN_REVENWARNING(str) ("<span class='revenwarning'>" + str + "</span>")
#define SPAN_ROBOT(str) ("<span class='robot'>" + str + "</span>")
#define SPAN_ROBOTEMOTE(str) ("<span class='robotemote'>" + str + "</span>")
#define SPAN_ROSE(str) ("<span class='rose'>" + str + "</span>")
#define SPAN_SANS(str) ("<span class='sans'>" + str + "</span>")
#define SPAN_SCIRADIO(str) ("<span class='sciradio'>" + str + "</span>")
@@ -33,6 +33,11 @@
adjustBruteLoss(damage)
return
/mob/living/silicon/robot/attack_ai(mob/user)
if(user.a_intent == INTENT_HELP)
to_chat(src, SPAN_ROBOTEMOTE("[user] gives you a digital headpat."))
to_chat(user, SPAN_ROBOTEMOTE("You give [src] a digital headpat."))
/mob/living/silicon/robot/attack_hand(mob/living/carbon/human/user)
add_fingerprint(user)
@@ -92,6 +92,14 @@ h2.alert {
font-weight: bold;
}
.robotemote {
font-family: 'OCR-A', monospace;
font-size: 1.15em;
font-weight: bold;
font-style: italic;
color: #6685f5;
}
.hidden {
display: none;
visibility: hidden;
File diff suppressed because one or more lines are too long