mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-27 07:08:00 +01:00
Aliens and digitigrade legs use claw footprint sprite (#85898)
## About The Pull Request Digitigrade legs use the claw footprint sprite ## Why It's Good For The Game #81588 added support for legs to use alternative footprint sprites and then just didn't add it to anything but monkey legs, even though the sprites already exist. So let's use them ## Changelog 🆑 Melbert qol: Xenos and digi lizards have claw footprints /🆑
This commit is contained in:
@@ -162,3 +162,6 @@ Des: Removes all infected images from the alien.
|
||||
|
||||
/mob/living/carbon/alien/proc/update_alien_speed()
|
||||
add_or_update_variable_movespeed_modifier(/datum/movespeed_modifier/alien_speed, multiplicative_slowdown = alien_speed)
|
||||
|
||||
/mob/living/carbon/alien/get_footprint_sprite()
|
||||
return FOOTPRINT_SPRITE_CLAWS
|
||||
|
||||
@@ -75,6 +75,7 @@
|
||||
icon_greyscale = 'icons/mob/human/species/lizard/bodyparts.dmi'
|
||||
limb_id = BODYPART_ID_DIGITIGRADE
|
||||
bodyshape = BODYSHAPE_HUMANOID | BODYSHAPE_DIGITIGRADE
|
||||
footprint_sprite = FOOTPRINT_SPRITE_CLAWS
|
||||
|
||||
/obj/item/bodypart/leg/left/digitigrade/update_limb(dropping_limb = FALSE, is_creating = FALSE)
|
||||
. = ..()
|
||||
@@ -90,6 +91,7 @@
|
||||
icon_greyscale = 'icons/mob/human/species/lizard/bodyparts.dmi'
|
||||
limb_id = BODYPART_ID_DIGITIGRADE
|
||||
bodyshape = BODYSHAPE_HUMANOID | BODYSHAPE_DIGITIGRADE
|
||||
footprint_sprite = FOOTPRINT_SPRITE_CLAWS
|
||||
|
||||
/obj/item/bodypart/leg/right/digitigrade/update_limb(dropping_limb = FALSE, is_creating = FALSE)
|
||||
. = ..()
|
||||
|
||||
Reference in New Issue
Block a user