Spiderbot Emotes (#14063)

This commit is contained in:
Benedict
2022-05-25 21:55:27 +02:00
committed by GitHub
parent 0760aa75a1
commit 6307e0df2f
3 changed files with 30 additions and 0 deletions
+13
View File
@@ -180,6 +180,19 @@
/decl/emote/audible/synth/deny,
)
/mob/living/simple_animal/spiderbot
default_emotes = list(
/decl/emote/visible/twitch,
/decl/emote/visible/twitch_v,
/decl/emote/visible/look,
/decl/emote/visible/stare,
/decl/emote/audible/synth,
/decl/emote/audible/synth/ping,
/decl/emote/audible/synth/buzz,
/decl/emote/audible/synth/confirm,
/decl/emote/audible/synth/deny,
)
/mob/living/carbon/slime
default_emotes = list(
/decl/emote/audible/moan,
@@ -63,6 +63,9 @@
/mob/living/simple_animal/spiderbot/can_name(var/mob/living/M)
return FALSE
/mob/living/simple_animal/spiderbot/isSynthetic()
return TRUE
/mob/living/simple_animal/spiderbot/attackby(var/obj/item/O as obj, var/mob/user as mob)
if(istype(O, /obj/item/device/mmi))
+14
View File
@@ -0,0 +1,14 @@
# Your name.
author: Ben10083
# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again.
delete-after: True
# Any changes you've made. See valid prefix list above.
# INDENT WITH TWO SPACES. NOT TABS. SPACES.
# SCREW THIS UP AND IT WON'T WORK.
# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries.
# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog.
changes:
- soundadd: "Spiderbots now have emotes."
- refactor: "Spiderbots now are defined as synthetic in code."