mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-09 16:14:13 +00:00
26 lines
714 B
Plaintext
26 lines
714 B
Plaintext
/mob/living/silicon/robot/mommi/say_understands(var/other)
|
|
if (istype(other, /mob/living/silicon/ai))
|
|
return 1
|
|
if (istype(other, /mob/living/silicon/decoy))
|
|
return 1
|
|
if (istype(other, /mob/living/silicon/robot))
|
|
return 1
|
|
if (istype(other, /mob/living/carbon/human))
|
|
return 1
|
|
if (istype(other, /mob/living/carbon/brain))
|
|
return 1
|
|
if (istype(other, /mob/living/silicon/pai))
|
|
return 1
|
|
// if (istype(other, /mob/living/silicon/hivebot))
|
|
// return 1
|
|
return ..()
|
|
|
|
/mob/living/silicon/robot/mommi/say_quote(var/text)
|
|
var/ending = copytext(text, length(text))
|
|
|
|
if (ending == "?")
|
|
return "queries, \"[text]\"";
|
|
else if (ending == "!")
|
|
return "declares, \"[text]\"";
|
|
|
|
return "states, \"[text]\""; |