diff --git a/code/modules/client/preference_setup/loadout/loadout_head.dm b/code/modules/client/preference_setup/loadout/loadout_head.dm index af58f7b077e..58ed1a4d423 100644 --- a/code/modules/client/preference_setup/loadout/loadout_head.dm +++ b/code/modules/client/preference_setup/loadout/loadout_head.dm @@ -208,3 +208,7 @@ display_name = "IAC Beret" path = /obj/item/clothing/head/soft/iacberet allowed_roles = list("Chief Medical Officer", "Medical Doctor", "Chemist", "Paramedic", "Medical Resident") + +/datum/gear/head/tcflberet + display_name = "Tau Ceti Foreign Legion dress beret" + path = /obj/item/clothing/head/legion_beret \ No newline at end of file diff --git a/code/modules/clothing/head/misc.dm b/code/modules/clothing/head/misc.dm index 3d4e3fe2aa9..be11677ab8d 100644 --- a/code/modules/clothing/head/misc.dm +++ b/code/modules/clothing/head/misc.dm @@ -270,6 +270,11 @@ flags_inv = BLOCKHAIR siemens_coefficient = 2.0 +/obj/item/clothing/head/legion_beret + name = "TCFL dress beret" + desc = "A pale blue dress beret with a rubber insignia of a torch, surrounded by red stars and the letters \"TCFL\". A common good luck charm among former legionaires." + icon_state = "legion_beret" + /obj/item/clothing/head/chicken name = "chicken suit head" desc = "Bkaw!" diff --git a/html/changelogs/VTCobaltblood - strudelberet.yml b/html/changelogs/VTCobaltblood - strudelberet.yml new file mode 100644 index 00000000000..b0a2fa72d09 --- /dev/null +++ b/html/changelogs/VTCobaltblood - strudelberet.yml @@ -0,0 +1,41 @@ +################################ +# Example Changelog File +# +# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb. +# +# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.) +# When it is, any changes listed below will disappear. +# +# Valid Prefixes: +# bugfix +# wip (For works in progress) +# tweak +# soundadd +# sounddel +# rscadd (general adding of nice things) +# rscdel (general deleting of nice things) +# imageadd +# imagedel +# maptweak +# spellcheck (typo fixes) +# experiment +# balance +# admin +# backend +# security +# refactor +################################# + +# Your name. +author: VTCobaltblood + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries. +# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog. +changes: + - rscadd: "Added a TCFL beret to the loadout." \ No newline at end of file diff --git a/icons/mob/head.dmi b/icons/mob/head.dmi index 69cf5e3828c..d886f1c1d2a 100644 Binary files a/icons/mob/head.dmi and b/icons/mob/head.dmi differ diff --git a/icons/obj/clothing/hats.dmi b/icons/obj/clothing/hats.dmi index 09317cbdf99..1c425ff2a98 100644 Binary files a/icons/obj/clothing/hats.dmi and b/icons/obj/clothing/hats.dmi differ