diff --git a/code/modules/client/preference_setup/general/03_body.dm b/code/modules/client/preference_setup/general/03_body.dm index fb8fde6fe94..91799512c81 100644 --- a/code/modules/client/preference_setup/general/03_body.dm +++ b/code/modules/client/preference_setup/general/03_body.dm @@ -501,7 +501,6 @@ var/global/list/valid_bloodtypes = list("A+", "A-", "B+", "B-", "AB+", "AB-", "O else if(href_list["marking_style"]) var/list/usable_markings = pref.body_markings ^ body_marking_styles_list var/datum/species/species = global.all_species[pref.species] - //var/btype = species.get_bodytype() for(var/M in usable_markings) var/datum/sprite_accessory/S = usable_markings[M] if(!S.species_allowed.len) diff --git a/code/modules/mob/abstract/new_player/sprite_accessories.dm b/code/modules/mob/abstract/new_player/sprite_accessories.dm index 1f6e8742fa1..456b0c99537 100644 --- a/code/modules/mob/abstract/new_player/sprite_accessories.dm +++ b/code/modules/mob/abstract/new_player/sprite_accessories.dm @@ -2842,6 +2842,7 @@ Follow by example and make good judgement based on length which list to include una_paw_socks name = "Socks Coloration (Unathi)" + icon = 'icons/mob/human_races/markings_unathi.dmi' icon_state = "una_pawsocks" 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) species_allowed = list(/datum/species/unathi,/datum/species/zombie/unathi) @@ -2922,37 +2923,37 @@ Follow by example and make good judgement based on length which list to include name = "Face Color" icon_state = "una_face" body_parts = list(BP_HEAD) - species_allowed = list(/datum/species/unathi,/datum/species/zombie/unathi) + icon = 'icons/mob/human_races/markings_unathi.dmi' + species_allowed = list(/datum/species/unathi, /datum/species/zombie/unathi) - una_facelow - name = "Face Color Low" - icon_state = "una_facelow" - body_parts = list(BP_HEAD) - species_allowed = list(/datum/species/unathi,/datum/species/zombie/unathi) + paint + name = "Face Paint" + icon_state = "una_facepaint" - una_scutes - name = "Scutes" - icon_state = "una_scutes" - body_parts = list(BP_CHEST) - species_allowed = list(/datum/species/unathi,/datum/species/zombie/unathi) + una_facelow + name = "Face Color Low" + icon_state = "una_facelow" + body_parts = list(BP_HEAD) - una_maswaist - name = "Masculine Waist (For Females)" - icon_state = "una_maswaist" - body_parts = list(BP_CHEST) - species_allowed = list(/datum/species/unathi,/datum/species/zombie/unathi) + una_scutes + name = "Scutes" + icon_state = "una_scutes" + body_parts = list(BP_CHEST) - una_clawshand - name = "Claws (Hands)" - icon_state = "una_claws" - body_parts = list(BP_L_HAND,BP_R_HAND) - species_allowed = list(/datum/species/unathi,/datum/species/zombie/unathi) + una_maswaist + name = "Masculine Waist (For Females)" + icon_state = "una_maswaist" + body_parts = list(BP_CHEST) - una_clawsfoot - name = "Claws (Feet)" - icon_state = "una_claws" - body_parts = list(BP_L_FOOT,BP_R_FOOT) - species_allowed = list(/datum/species/unathi,/datum/species/zombie/unathi) + una_clawshand + name = "Claws (Hands)" + icon_state = "una_claws" + body_parts = list(BP_L_HAND,BP_R_HAND) + + una_clawsfoot + name = "Claws (Feet)" + icon_state = "una_claws" + body_parts = list(BP_L_FOOT,BP_R_FOOT) spelunker name = "Spelunker" diff --git a/html/changelogs/geeves-unathi_paint.yml b/html/changelogs/geeves-unathi_paint.yml new file mode 100644 index 00000000000..30ec898fb9d --- /dev/null +++ b/html/changelogs/geeves-unathi_paint.yml @@ -0,0 +1,6 @@ +author: Geeves + +delete-after: True + +changes: + - rscadd: "Added face paint for unathi, a singular stripe across the eyes." \ No newline at end of file diff --git a/icons/mob/human_races/markings.dmi b/icons/mob/human_races/markings.dmi index 63b87ecf32f..a8daf8f013d 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_unathi.dmi b/icons/mob/human_races/markings_unathi.dmi new file mode 100644 index 00000000000..1f7f0bbc4e9 Binary files /dev/null and b/icons/mob/human_races/markings_unathi.dmi differ diff --git a/icons/mob/human_races/unathi/unathi_preview.dmi b/icons/mob/human_races/unathi/unathi_preview.dmi index 872b5eee717..454602cc708 100644 Binary files a/icons/mob/human_races/unathi/unathi_preview.dmi and b/icons/mob/human_races/unathi/unathi_preview.dmi differ