Skip to content

Commit

Permalink
one star jumpsuit and hat (#6355)
Browse files Browse the repository at this point in the history
we have the coat so i want these also

:cl:
add: os js and hat
/:cl:
  • Loading branch information
lolman360 committed Mar 23, 2024
1 parent ccd749f commit 696f1d5
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 0 deletions.
7 changes: 7 additions & 0 deletions code/modules/clothing/head/misc.dm
Original file line number Diff line number Diff line change
Expand Up @@ -734,3 +734,10 @@
desc = "A simple wedge cap with red accents, highly popular within Tri-Star Compact space."
icon_state = "eulrhat"
body_cover_flags = 0

/obj/item/clothing/head/onestar
name = "one star hat"
desc = "It's a maroon-ish hat with an odd logo.."
icon = 'icons/clothing/head/onestar.dmi'
icon_state = "os_cap"
worn_render_flags = WORN_RENDER_SLOT_ONE_FOR_ALL
7 changes: 7 additions & 0 deletions code/modules/clothing/under/misc.dm
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,10 @@
name = "special ops fatigues"
desc = "These worn fatigues match the pattern known to be used by JSDF Marine Corps special forces."
icon_state = "russobluecamo"

/obj/item/clothing/under/onestar
name = "one star jumpsuit"
desc = "A jumpsuit in One Star colours."
icon = 'icons/clothing/uniform/misc/onestar.dmi'
icon_state = "os_jumpsuit"
worn_render_flags = WORN_RENDER_SLOT_ONE_FOR_ALL
5 changes: 5 additions & 0 deletions code/modules/loadout/loadout_head.dm
Original file line number Diff line number Diff line change
Expand Up @@ -262,6 +262,11 @@
var/obj/item/clothing/head/beret/orion/orion = orion_style
orions[initial(orion.name)] = orion
tweaks += new/datum/loadout_tweak/path(tim_sort(orions, GLOBAL_PROC_REF(cmp_text_asc)))

/datum/loadout_entry/head/onestar
name = "One Star Cap"
path = /obj/item/clothing/head/onestar

/datum/loadout_entry/head/surgery
name = "Surgical Cap Selection"
description = "Choose from a number of rings of different Caps."
Expand Down
4 changes: 4 additions & 0 deletions code/modules/loadout/loadout_uniform.dm
Original file line number Diff line number Diff line change
Expand Up @@ -310,6 +310,10 @@
brandjumpsuit_selection[initial(brandjumpsuit_type.name)] = brandjumpsuit_type
tweaks += new/datum/loadout_tweak/path(tim_sort(brandjumpsuit_selection, GLOBAL_PROC_REF(cmp_text_asc)))

/datum/loadout_entry/uniform/onestar
name = "One Star Jumpsuit"
path = /obj/item/clothing/under/onestar

/datum/loadout_entry/uniform/yogapants
name = "Yoga Pants"
path = /obj/item/clothing/under/pants/yogapants
Expand Down
Binary file added icons/clothing/head/onestar.dmi
Binary file not shown.
Binary file added icons/clothing/uniform/misc/onestar.dmi
Binary file not shown.

0 comments on commit 696f1d5

Please sign in to comment.