diff --git a/code/modules/mob/new_player/sprite_accessories.dm b/code/modules/mob/new_player/sprite_accessories.dm index 0e3b1f7695..0f780b561f 100644 --- a/code/modules/mob/new_player/sprite_accessories.dm +++ b/code/modules/mob/new_player/sprite_accessories.dm @@ -1208,6 +1208,12 @@ icon_state = "bellyhandsfeet_female" body_parts = list(BP_L_FOOT,BP_R_FOOT,BP_L_LEG,BP_R_LEG,BP_L_ARM,BP_R_ARM,BP_L_HAND,BP_R_HAND,BP_GROIN,BP_TORSO) species_allowed = list("Tajara") + + panda_eye_marks + name = "Panda Eye Markings" + icon_state = "eyes-panda" + body_parts = list(BP_HEAD) + species_allowed = list("Human") patches name = "Color Patches" diff --git a/code/modules/vore/appearance/sprite_accessories_vr.dm b/code/modules/vore/appearance/sprite_accessories_vr.dm index 99fd8dca2d..16f3d10e63 100644 --- a/code/modules/vore/appearance/sprite_accessories_vr.dm +++ b/code/modules/vore/appearance/sprite_accessories_vr.dm @@ -53,6 +53,11 @@ desc = "" icon_state = "bear-brown" +/datum/sprite_accessory/ears/bear_panda + name = "bear, panda" + desc = "" + icon_state = "panda" + /datum/sprite_accessory/ears/wolf_grey name = "wolf, grey" desc = "" diff --git a/icons/mob/human_races/markings.dmi b/icons/mob/human_races/markings.dmi index e4e4101b4b..0275e46202 100644 Binary files a/icons/mob/human_races/markings.dmi and b/icons/mob/human_races/markings.dmi differ diff --git a/icons/mob/vore/ears_vr.dmi b/icons/mob/vore/ears_vr.dmi index e259bb0bc1..a4844214c6 100644 Binary files a/icons/mob/vore/ears_vr.dmi and b/icons/mob/vore/ears_vr.dmi differ