diff --git a/code/modules/mob/new_player/sprite_accessories_vr.dm b/code/modules/mob/new_player/sprite_accessories_vr.dm index 17a264956b..be2a2e3f13 100644 --- a/code/modules/mob/new_player/sprite_accessories_vr.dm +++ b/code/modules/mob/new_player/sprite_accessories_vr.dm @@ -976,3 +976,9 @@ icon_state = "heterochromia" body_parts = list(BP_HEAD) species_allowed = list(SPECIES_HUMAN, SPECIES_UNATHI, SPECIES_TAJ, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_ZORREN_FLAT, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_XENOCHIMERA, SPECIES_XENOHYBRID, SPECIES_VASILISSAN, SPECIES_RAPALA, SPECIES_PROTEAN, SPECIES_ALRAUNE) //This lets all races use the default hairstyles. + + grointojaw + name = "Groin to mouth marking" + icon_state = "grointojaw" + color_blend_mode = ICON_MULTIPLY + body_parts = list(BP_TORSO, BP_HEAD, BP_GROIN) \ No newline at end of file diff --git a/code/modules/vore/appearance/sprite_accessories_vr.dm b/code/modules/vore/appearance/sprite_accessories_vr.dm index 54657ddc31..008bcc466e 100644 --- a/code/modules/vore/appearance/sprite_accessories_vr.dm +++ b/code/modules/vore/appearance/sprite_accessories_vr.dm @@ -305,6 +305,13 @@ color_blend_mode = ICON_MULTIPLY extra_overlay = "paintfront" +/datum/sprite_accessory/ears/alien_slug + name = "Alien slug ears" + desc = "The ears of a slug from space" + icon_state = "alien_slug" + do_colouration = 1 + color_blend_mode = ICON_MULTIPLY + // Special snowflake ears go below here. /datum/sprite_accessory/ears/molenar_kitsune @@ -933,7 +940,7 @@ do_colouration = 1 color_blend_mode = ICON_MULTIPLY extra_overlay = "snaketail_stripes" - + /datum/sprite_accessory/tail/vulpan_alt name = "vulpkanin alt style, colorable" desc = "" @@ -1170,4 +1177,12 @@ desc = "" icon_state = "zenghu_taj" +/datum/sprite_accessory/tail/alien_slug + name = "Alien slug tail" + desc = "The tail of a slug from space" + icon_state = "alien_slug" + do_colouration = 1 + color_blend_mode = ICON_MULTIPLY + extra_overlay = "alien_slug_markings" + //Taurs moved to a separate file due to extra code around them \ No newline at end of file diff --git a/icons/mob/human_races/markings_vr.dmi b/icons/mob/human_races/markings_vr.dmi index cf989419e0..eea7292c36 100644 Binary files a/icons/mob/human_races/markings_vr.dmi and b/icons/mob/human_races/markings_vr.dmi differ diff --git a/icons/mob/vore/ears_vr.dmi b/icons/mob/vore/ears_vr.dmi index bc0c68131a..c4afbd11f6 100644 Binary files a/icons/mob/vore/ears_vr.dmi and b/icons/mob/vore/ears_vr.dmi differ diff --git a/icons/mob/vore/tails_vr.dmi b/icons/mob/vore/tails_vr.dmi index a161873ae8..6eaa70cd9b 100644 Binary files a/icons/mob/vore/tails_vr.dmi and b/icons/mob/vore/tails_vr.dmi differ