Skip to content

Commit

Permalink
Adds Security Shorts (& One Pair Of Pants) (#1138)
Browse files Browse the repository at this point in the history
* the most powerful pr ever made

* Update modular_nova/master_files/code/modules/clothing/under/jobs/security.dm

Co-authored-by: OrionTheFox <[email protected]>

---------

Co-authored-by: OrionTheFox <[email protected]>
  • Loading branch information
2 people authored and StealsThePRs committed Feb 27, 2024
1 parent 747f07b commit d92ef67
Show file tree
Hide file tree
Showing 6 changed files with 43 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,43 @@
icon_state = "workpants_blue"
body_parts_covered = GROIN|LEGS
can_adjust = FALSE
supports_variations_flags = CLOTHING_DIGITIGRADE_VARIATION
female_sprite_flags = FEMALE_UNIFORM_NO_BREASTS
uses_advanced_reskins = TRUE
unique_reskin = list(
"Blue Variant" = list(
RESKIN_ICON_STATE = "workpants_blue",
RESKIN_WORN_ICON_STATE = "workpants_blue"
),
"White Variant" = list(
RESKIN_ICON_STATE = "workpants_white",
RESKIN_WORN_ICON_STATE = "workpants_white"
),
)

/obj/item/clothing/under/rank/security/peacekeeper/trousers/shorts
name = "security shorts"
desc = "Some Peacekeeper-blue combat shorts. Definitely should pair it with a vest for safety."
icon_state = "workshorts_blue"
uses_advanced_reskins = TRUE
unique_reskin = list(
"Blue Variant, Short" = list(
RESKIN_ICON_STATE = "workshorts_blue",
RESKIN_WORN_ICON_STATE = "workshorts_blue"
),
"Blue Variant, Short Short" = list(
RESKIN_ICON_STATE = "workshorts_blue_short",
RESKIN_WORN_ICON_STATE = "workshorts_blue_short"
),
"White Variant, Short" = list(
RESKIN_ICON_STATE = "workshorts_white",
RESKIN_WORN_ICON_STATE = "workshorts_white"
),
"White Variant, Short Short" = list(
RESKIN_ICON_STATE = "workshorts_white_short",
RESKIN_WORN_ICON_STATE = "workshorts_white_short"
),
)

/*
* HEAD OF SECURITY
Expand Down
Binary file modified modular_nova/master_files/icons/mob/clothing/under/security.dmi
Binary file not shown.
Binary file not shown.
Binary file modified modular_nova/master_files/icons/obj/clothing/under/security.dmi
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,11 @@ GLOBAL_LIST_INIT(loadout_miscunders, generate_loadout_items(/datum/loadout_item/
item_path = /obj/item/clothing/under/rank/security/peacekeeper/trousers
restricted_roles = list(JOB_SECURITY_OFFICER, JOB_WARDEN, JOB_HEAD_OF_SECURITY)

/datum/loadout_item/under/jumpsuit/security_shorts
name = "Security Shorts"
item_path = /obj/item/clothing/under/rank/security/peacekeeper/trousers/shorts
restricted_roles = list(JOB_SECURITY_OFFICER, JOB_WARDEN, JOB_HEAD_OF_SECURITY)

/datum/loadout_item/under/jumpsuit/security_peacekeeper
name = "Security Peacekeeper Uniform"
item_path = /obj/item/clothing/under/rank/security/peacekeeper
Expand Down
2 changes: 2 additions & 0 deletions modular_nova/modules/sec_haul/code/misc/vending.dm
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,8 @@
/obj/item/clothing/under/rank/security/officer/skirt = 10,
/obj/item/clothing/under/rank/security/peacekeeper = 10,
/obj/item/clothing/under/rank/security/nova/utility = 3,
/obj/item/clothing/under/rank/security/peacekeeper/trousers = 10,
/obj/item/clothing/under/rank/security/peacekeeper/trousers/shorts = 10,
/obj/item/clothing/shoes/jackboots/sec = 10,
/obj/item/clothing/head/security_garrison = 10,
/obj/item/clothing/head/security_cap = 10,
Expand Down

0 comments on commit d92ef67

Please sign in to comment.