Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified icons/map_icons/clothing/head/_head.dmi
Binary file not shown.
4 changes: 4 additions & 0 deletions modular_doppler/loadout_categories/categories/heads.dm
Original file line number Diff line number Diff line change
Expand Up @@ -535,6 +535,10 @@
name = "Flowing Headband"
item_path = /obj/item/clothing/head/flowing_headband

/datum/loadout_item/head/misc/headscarf
name = "Headscarf (Tizirian)"
item_path = /obj/item/clothing/head/lizard_headscarf

/datum/loadout_item/head/misc/bear_pelt
name = "Bear Pelt"
item_path = /obj/item/clothing/head/costume/bearpelt
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -125,3 +125,12 @@
/datum/greyscale_config/colorable_mailcap/worn
name = "Colorable mailcap (Worn)"
icon_file = 'modular_doppler/modular_cosmetics/GAGS/icons/mob/head.dmi'

/datum/greyscale_config/lizard_headscarf
name = "Tizirian headscarf"
icon_file = 'modular_doppler/modular_cosmetics/GAGS/icons/obj/head.dmi'
json_config = 'modular_doppler/modular_cosmetics/GAGS/json_configs/head/headscarf.json'

/datum/greyscale_config/lizard_headscarf/worn
name = "Tizirian headscarf (Worn)"
icon_file = 'modular_doppler/modular_cosmetics/GAGS/icons/mob/head.dmi'
Binary file modified modular_doppler/modular_cosmetics/GAGS/icons/mob/head.dmi
Binary file not shown.
Binary file modified modular_doppler/modular_cosmetics/GAGS/icons/obj/head.dmi
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"headscarf": [
{
"type": "icon_state",
"icon_state": "headscarf",
"blend_mode": "overlay",
"color_ids": [ 1 ]
}
]
}
11 changes: 11 additions & 0 deletions modular_doppler/modular_cosmetics/code/hats/civilian.dm
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,14 @@
icon_state = "janitor_doppler"
worn_icon = 'modular_doppler/modular_cosmetics/icons/mob/head/hats.dmi'
inhand_icon_state = "greyscale_softcap"

/obj/item/clothing/head/lizard_headscarf
name = "headscarf"
desc = "Like a scarf, but worn over the top of your head. The premier of Tizirian fashion sense."
icon = 'icons/map_icons/clothing/head/_head.dmi'
icon_state = "/obj/item/clothing/head/lizard_headscarf"
post_init_icon_state = "headscarf"
greyscale_colors = "#553a2e"
greyscale_config = /datum/greyscale_config/lizard_headscarf
greyscale_config_worn = /datum/greyscale_config/lizard_headscarf/worn
flags_1 = IS_PLAYER_COLORABLE_1
Loading