mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 18:22:39 +00:00
These files have been collapsed into root procs and can be deleted.
This commit is contained in:
@@ -1,21 +0,0 @@
|
|||||||
/mob/living/carbon/slime/say(var/message)
|
|
||||||
if (silent)
|
|
||||||
return
|
|
||||||
else
|
|
||||||
return ..()
|
|
||||||
|
|
||||||
/mob/living/carbon/slime/say_quote(var/text)
|
|
||||||
var/ending = copytext(text, length(text))
|
|
||||||
|
|
||||||
if (ending == "?")
|
|
||||||
return "telepathically asks, \"[text]\"";
|
|
||||||
else if (ending == "!")
|
|
||||||
return "telepathically cries, \"[text]\"";
|
|
||||||
|
|
||||||
return "telepathically chirps, \"[text]\"";
|
|
||||||
|
|
||||||
/mob/living/carbon/slime/say_understands(var/other)
|
|
||||||
if (istype(other, /mob/living/carbon/slime))
|
|
||||||
return 1
|
|
||||||
return ..()
|
|
||||||
|
|
||||||
@@ -1,24 +0,0 @@
|
|||||||
/mob/living/silicon/robot/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/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/say_quote(var/text)
|
|
||||||
var/ending = copytext(text, length(text))
|
|
||||||
|
|
||||||
if (ending == "?")
|
|
||||||
return "queries, \"[text]\"";
|
|
||||||
else if (ending == "!")
|
|
||||||
return "declares, \"[text]\"";
|
|
||||||
|
|
||||||
return "states, \"[text]\"";
|
|
||||||
@@ -1,20 +0,0 @@
|
|||||||
/mob/living/silicon/hivebot/say_understands(var/other)
|
|
||||||
if (istype(other, /mob/living/silicon/ai))
|
|
||||||
return 1
|
|
||||||
if (istype(other, /mob/living/carbon/human))
|
|
||||||
return 1
|
|
||||||
if (istype(other, /mob/living/carbon/human/tajaran))
|
|
||||||
return 1
|
|
||||||
if (istype(other, /mob/living/silicon/robot))
|
|
||||||
return 1
|
|
||||||
return ..()
|
|
||||||
|
|
||||||
/mob/living/silicon/hivebot/say_quote(var/text)
|
|
||||||
var/ending = copytext(text, length(text))
|
|
||||||
|
|
||||||
if (ending == "?")
|
|
||||||
return "queries, \"[text]\"";
|
|
||||||
else if (ending == "!")
|
|
||||||
return "declares, \"[copytext(text, 1, length(text))]\"";
|
|
||||||
|
|
||||||
return "states, \"[text]\"";
|
|
||||||
Reference in New Issue
Block a user