diff --git a/modular_splurt/code/modules/client/loadout/socks.dm b/modular_splurt/code/modules/client/loadout/socks.dm index 74f5962901..2deee41786 100644 --- a/modular_splurt/code/modules/client/loadout/socks.dm +++ b/modular_splurt/code/modules/client/loadout/socks.dm @@ -1,3 +1,7 @@ /datum/gear/socks/thigh/thigh_cow name = "Cow Thigh High Socks" path = /obj/item/clothing/underwear/socks/thigh/thigh_cow + +/datum/gear/socks/thigh/thigh_cow + name = "Fishnet tights" + path = /obj/item/clothing/underwear/socks/thigh/fishnet/white //This one is pretty much greyscale aka easier to recolor diff --git a/modular_splurt/code/modules/clothing/underwear/socks.dm b/modular_splurt/code/modules/clothing/underwear/socks.dm index 29c9a6dc88..8368b59821 100644 --- a/modular_splurt/code/modules/clothing/underwear/socks.dm +++ b/modular_splurt/code/modules/clothing/underwear/socks.dm @@ -1,6 +1,20 @@ /obj/item/clothing/underwear/socks/thigh/thigh_cow name = "cow thigh high socks" + desc = "Moo?" icon_state = "socks_cow" icon = 'modular_splurt/icons/obj/clothing/underwear.dmi' mob_overlay_icon = 'modular_splurt/icons/mob/clothing/underwear.dmi' anthro_mob_worn_overlay = 'modular_splurt/icons/mob/clothing/underwear_digi.dmi' + +/obj/item/clothing/underwear/socks/thigh/fishnet + name = "Fishnet tights" + desc = "The thickest of thighs will make this net break rather easily" + icon_state = "fishnet" + icon = 'modular_splurt/icons/obj/clothing/underwear.dmi' + mob_overlay_icon = 'modular_splurt/icons/mob/clothing/underwear.dmi' + anthro_mob_worn_overlay = 'modular_splurt/icons/mob/clothing/underwear_digi.dmi' + body_parts_covered = FEET|LEGS|GROIN + +/obj/item/clothing/underwear/socks/thigh/fishnet/white + name = "White Fishnet tights" + icon_state = "fishnet_w" diff --git a/modular_splurt/code/modules/mob/dead/new_player/sprite_accesories/hair_head.dm b/modular_splurt/code/modules/mob/dead/new_player/sprite_accesories/hair_head.dm index 9fdb7f7e9a..a25ebdbf27 100644 --- a/modular_splurt/code/modules/mob/dead/new_player/sprite_accesories/hair_head.dm +++ b/modular_splurt/code/modules/mob/dead/new_player/sprite_accesories/hair_head.dm @@ -155,3 +155,8 @@ name = "Straight Long (Very)" icon = 'modular_splurt/icons/mob/hair.dmi' icon_state = "hair_straightfloorlength" + +/datum/sprite_accessory/hair/deathhawk + name = "Deathhawk" + icon = 'modular_splurt/icons/mob/hair.dmi' + icon_state = "hair_deathhawk" diff --git a/modular_splurt/icons/mob/clothing/underwear.dmi b/modular_splurt/icons/mob/clothing/underwear.dmi index 37e106c6d1..f890b8c24b 100644 Binary files a/modular_splurt/icons/mob/clothing/underwear.dmi and b/modular_splurt/icons/mob/clothing/underwear.dmi differ diff --git a/modular_splurt/icons/mob/clothing/underwear_digi.dmi b/modular_splurt/icons/mob/clothing/underwear_digi.dmi index a4d5446ce7..d27c2038c7 100644 Binary files a/modular_splurt/icons/mob/clothing/underwear_digi.dmi and b/modular_splurt/icons/mob/clothing/underwear_digi.dmi differ diff --git a/modular_splurt/icons/mob/hair.dmi b/modular_splurt/icons/mob/hair.dmi index 5b7731a562..c8fd5bbce4 100644 Binary files a/modular_splurt/icons/mob/hair.dmi and b/modular_splurt/icons/mob/hair.dmi differ diff --git a/modular_splurt/icons/obj/clothing/underwear.dmi b/modular_splurt/icons/obj/clothing/underwear.dmi index f7da9c4107..d9de9249ca 100644 Binary files a/modular_splurt/icons/obj/clothing/underwear.dmi and b/modular_splurt/icons/obj/clothing/underwear.dmi differ