Skip to content

Commit

Permalink
USS Sulaco
Browse files Browse the repository at this point in the history
  • Loading branch information
Dumbgunner committed Oct 8, 2024
1 parent c3c2b7e commit 3831f1a
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 0 deletions.
5 changes: 5 additions & 0 deletions code/modules/client/preferences_gear.dm
Original file line number Diff line number Diff line change
Expand Up @@ -291,6 +291,11 @@ GLOBAL_LIST_EMPTY(gear_datums_by_name)
display_name = "USCM cap"
path = /obj/item/clothing/head/cmcap

/datum/gear/headwear/uscm/cap/sulaco
display_name = "USS Sulaco cap"
path = /obj/item/clothing/head/sulacocap
cost = 0

/datum/gear/headwear/uscm/cap/flap
display_name = "USCM flapcap"
path = /obj/item/clothing/head/cmcap/flap
Expand Down
14 changes: 14 additions & 0 deletions code/modules/clothing/head/head.dm
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,20 @@
WEAR_HEAD = 'icons/mob/humans/onmob/head_1.dmi'
)

/obj/item/clothing/head/sulacocap
name = "uss sulaco cap"
desc = "A casual cap able to be purchased and worn by Marines stationed on the USS Sulaco. While it only protects from the sun, it's much more comfortable than a helmet."
icon_state = "sulacocap"
icon = 'icons/obj/items/clothing/cm_hats.dmi'
var/helmet_overlays[]
var/flipped_cap = FALSE
var/list/flipping_message = list(
"flipped" = "You spin the hat backwards! You look like a tool.",
"unflipped" = "You spin the hat back forwards. That's better."
)
var/base_cap_icon
var/flags_marine_hat = HAT_GARB_OVERLAY|HAT_CAN_FLIP

/obj/item/clothing/head/cmcap
name = "patrol cap"
desc = "A casual cap issued as part of the non-combat uniform. While it only protects from the sun, it's much more comfortable than a helmet."
Expand Down
Binary file modified icons/mob/humans/onmob/head_1.dmi
Binary file not shown.

0 comments on commit 3831f1a

Please sign in to comment.