diff --git a/code/modules/mob/abstract/new_player/sprite_accessories.dm b/code/modules/mob/abstract/new_player/sprite_accessories.dm index 147428d82b4..0ef14c891dd 100644 --- a/code/modules/mob/abstract/new_player/sprite_accessories.dm +++ b/code/modules/mob/abstract/new_player/sprite_accessories.dm @@ -4313,12 +4313,17 @@ Follow by example and make good judgement based on length which list to include body_parts = list(BP_CHEST) species_allowed = list(/datum/species/human, /datum/species/human/offworlder, /datum/species/diona, /datum/species/diona/coeu, /datum/species/machine/shell, /datum/species/skrell, /datum/species/skrell/axiori, /datum/species/tajaran, /datum/species/tajaran/zhan_khazan, /datum/species/tajaran/m_sai, /datum/species/unathi) - tat_heart - name = "Tattoo (Heart, Chest)" - icon_state = "tat_heart" - body_parts = list(BP_CHEST) + tat_heart_arm + name = "Tattoo (Heart, Left Arm)" + icon_state = "tat_lheart" + body_parts = list(BP_L_ARM) species_allowed = list(/datum/species/human, /datum/species/diona, /datum/species/diona/coeu, /datum/species/machine/shell, /datum/species/tajaran, /datum/species/tajaran/zhan_khazan, /datum/species/tajaran/m_sai, /datum/species/unathi) + right + name = "Tattoo (Heart, Right Arm)" + icon_state = "tat_rheart" + body_parts = list(BP_R_ARM) + tat_heart_back name = "Tattoo (Heart, Lower Back)" icon_state = "tat_heartback" @@ -4560,6 +4565,7 @@ Follow by example and make good judgement based on length which list to include skr_tears name = "Tear Stains" + icon = 'icons/mob/human_races/markings_skrell.dmi' icon_state = "skr_tears" body_parts = list(BP_HEAD) species_allowed = list(/datum/species/skrell,/datum/species/skrell/axiori,/datum/species/zombie/skrell) @@ -4567,6 +4573,7 @@ Follow by example and make good judgement based on length which list to include skr_axiori_eyes name = "Axiori Eyes" + icon = 'icons/mob/human_races/markings_skrell.dmi' icon_state = "skr_axiori_eyes" body_parts = list(BP_HEAD) species_allowed = list(/datum/species/skrell, /datum/species/zombie/skrell,/datum/species/zombie/skrell) @@ -4574,7 +4581,8 @@ Follow by example and make good judgement based on length which list to include skr_arms name = "Skrell Arms" - icon_state = "skrell_arms" + icon = 'icons/mob/human_races/markings_skrell.dmi' + icon_state = "skr_arms" body_parts = list(BP_L_ARM,BP_R_ARM,BP_L_HAND,BP_R_HAND) species_allowed = list(/datum/species/skrell,/datum/species/skrell/axiori,/datum/species/zombie/skrell) @@ -4603,7 +4611,7 @@ Follow by example and make good judgement based on length which list to include name = "Skrell Stomach" icon = 'icons/mob/human_races/markings_skrell.dmi' icon_state = "skr_stomach" - body_parts = list(BP_CHEST) + body_parts = list(BP_CHEST, BP_GROIN) species_allowed = list(/datum/species/skrell,/datum/species/skrell/axiori,/datum/species/zombie/skrell) skr_chin diff --git a/html/changelogs/Markings.yml b/html/changelogs/Markings.yml new file mode 100644 index 00000000000..adb99159cd7 --- /dev/null +++ b/html/changelogs/Markings.yml @@ -0,0 +1,5 @@ +Delete-after: True +author: listerla +changes: + - imageadd: "Added left and right arm heart tattoos. Credit for sprite goes to KasparoVy." + - bugfix: "Fixed Skrell stomach marking, removed nonexistent heart tattoo marking." diff --git a/icons/mob/human_races/markings.dmi b/icons/mob/human_races/markings.dmi index c91051c67a0..fdd9ac14ade 100644 Binary files a/icons/mob/human_races/markings.dmi and b/icons/mob/human_races/markings.dmi differ diff --git a/icons/mob/human_races/markings_skrell.dmi b/icons/mob/human_races/markings_skrell.dmi index 7fa8cbd81af..85836529e9a 100644 Binary files a/icons/mob/human_races/markings_skrell.dmi and b/icons/mob/human_races/markings_skrell.dmi differ