diff --git a/code/modules/mob/abstract/new_player/sprite_accessories.dm b/code/modules/mob/abstract/new_player/sprite_accessories.dm index 94ac8496a1c..b9ec98f4cf6 100644 --- a/code/modules/mob/abstract/new_player/sprite_accessories.dm +++ b/code/modules/mob/abstract/new_player/sprite_accessories.dm @@ -479,6 +479,12 @@ Follow by example and make good judgement based on length which list to include length = 3 chatname = "hair drills" +/datum/sprite_accessory/hair/eagle + name = "Eagle" + icon_state = "hair_eagle" + length = 1 + chatname = "short hair" + /datum/sprite_accessory/hair/emo name = "Emo" icon_state = "hair_emo" @@ -565,6 +571,12 @@ Follow by example and make good judgement based on length which list to include icon_state = "hair_fade_none" chatname = "short hair" +/datum/sprite_accessory/hair/falcon + name = "Falcon" + icon_state = "hair_falcon" + length = 3 + chatname = "very long hair" + /datum/sprite_accessory/hair/father name = "Father" icon_state = "hair_father" @@ -702,6 +714,12 @@ Follow by example and make good judgement based on length which list to include icon_state = "hair_hitop" chatname = "hitop" +/datum/sprite_accessory/hair/hummingbird + name = "Hummingbird" + icon_state = "hair_hummingbird" + length = 2 + chatname = "long hair" + /datum/sprite_accessory/hair/jade name = "Jade" icon_state = "hair_jade" @@ -759,6 +777,28 @@ Follow by example and make good judgement based on length which list to include length = 4 chatname = "very long hair" +/datum/sprite_accessory/hair/macaw + name = "Macaw" + icon_state = "hair_macaw" + length = 2 + chatname = "long hair" + +/datum/sprite_accessory/hair/magpie + name = "Magpie, 1" + icon_state = "hair_magpie" + +/datum/sprite_accessory/hair/magpie/two + name = "Magpie, 2" + icon_state = "hair_magpie2" + +/datum/sprite_accessory/hair/magpie/three + name = "Magpie, 3" + icon_state = "hair_magpie3" + +/datum/sprite_accessory/hair/magpie/four + name = "Magpie, 4" + icon_state = "hair_magpie4" + /datum/sprite_accessory/hair/marysue name = "Mary Sue" icon_state = "hair_marysue" diff --git a/html/changelogs/hairport.yml b/html/changelogs/hairport.yml new file mode 100644 index 00000000000..56a72230889 --- /dev/null +++ b/html/changelogs/hairport.yml @@ -0,0 +1,4 @@ +author: Pirouette, AlphaM01 +delete-after: True +changes: + - imageadd: "Ported a few hairstyles; Eagle, Falcon, Hummingbird, Macaw, and four varieties of Magpie." diff --git a/icons/mob/human_face/hair.dmi b/icons/mob/human_face/hair.dmi index 97f135bc04a..5d419889e4c 100644 Binary files a/icons/mob/human_face/hair.dmi and b/icons/mob/human_face/hair.dmi differ