diff --git a/code/modules/client/customizer/customizers/bodypart_feature/hair.dm b/code/modules/client/customizer/customizers/bodypart_feature/hair.dm index 4cf3d7a21f3..3978371d995 100644 --- a/code/modules/client/customizer/customizers/bodypart_feature/hair.dm +++ b/code/modules/client/customizer/customizers/bodypart_feature/hair.dm @@ -334,6 +334,7 @@ /datum/sprite_accessory/hair/head/unkemptcurls, /datum/sprite_accessory/hair/head/viper, /datum/sprite_accessory/hair/head/shrinepriestess, + /datum/sprite_accessory/hair/head/tangled_curls, /datum/sprite_accessory/hair/head/knots, /datum/sprite_accessory/hair/head/sun, /datum/sprite_accessory/hair/head/mediumlocs, @@ -344,7 +345,8 @@ /datum/sprite_accessory/hair/head/dualtwists, /datum/sprite_accessory/hair/head/twistbun, /datum/sprite_accessory/hair/head/longestcurls, - /datum/sprite_accessory/hair/head/sidebraid + /datum/sprite_accessory/hair/head/sidebraid, + /datum/sprite_accessory/hair/head/wild_fluff ) /datum/customizer/bodypart_feature/hair/head/humanoid/triton diff --git a/code/modules/mob/dead/new_player/sprite_accessories/hairs/head_hair.dm b/code/modules/mob/dead/new_player/sprite_accessories/hairs/head_hair.dm index 126ad799932..3a3eeb84299 100644 --- a/code/modules/mob/dead/new_player/sprite_accessories/hairs/head_hair.dm +++ b/code/modules/mob/dead/new_player/sprite_accessories/hairs/head_hair.dm @@ -853,6 +853,18 @@ gender = NEUTER specuse = list(SPEC_ID_ELF) +/datum/sprite_accessory/hair/head/tangled_curls + name = "Tangled Curls" + icon_state = "tangled_curls" + gender = NEUTER + specuse = list(SPEC_ID_HUMEN, SPEC_ID_DWARF, SPEC_ID_ELF, SPEC_ID_AASIMAR, SPEC_ID_TIEFLING, SPEC_ID_HALF_ORC) + +/datum/sprite_accessory/hair/head/wild_fluff + name = "Wild Fluff" + icon_state = "wild_fluff" + gender = NEUTER + specuse = list(SPEC_ID_HUMEN, SPEC_ID_DWARF, SPEC_ID_ELF, SPEC_ID_AASIMAR, SPEC_ID_TIEFLING, SPEC_ID_HALF_ORC) + // Hairs below ported from Azure /datum/sprite_accessory/hair/head/gloomy diff --git a/icons/roguetown/mob/hair.dmi b/icons/roguetown/mob/hair.dmi index c04c92b08b8..eceffaa681c 100644 Binary files a/icons/roguetown/mob/hair.dmi and b/icons/roguetown/mob/hair.dmi differ