mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-26 14:39:58 +01:00
Returns Security Skirts (Somewhat) (#22739)
* initial * Update modular_skyrat/modules/goofsec/code/sec_clothing_overrides.dm Co-authored-by: GoldenAlpharex <58045821+GoldenAlpharex@users.noreply.github.com> --------- Co-authored-by: Snakebittenn <12636964+Snakebittenn@users.noreply.github.com> Co-authored-by: GoldenAlpharex <58045821+GoldenAlpharex@users.noreply.github.com>
This commit is contained in:
committed by
nevimer
co-authored by
GoldenAlpharex
Snakebittenn
parent
e5657bf6a0
commit
5fef198bd3
@@ -343,6 +343,6 @@
|
||||
new /obj/item/clothing/suit/armor/vest(src)
|
||||
new /obj/item/clothing/head/helmet/sec(src)
|
||||
new /obj/item/clothing/under/rank/security/officer(src)
|
||||
//new /obj/item/clothing/under/rank/security/officer/skirt(src) SKYRAT EDIT REMOVAL
|
||||
new /obj/item/clothing/under/rank/security/officer/skirt(src)
|
||||
new /obj/item/clothing/glasses/hud/security/sunglasses(src)
|
||||
new /obj/item/flashlight/seclite(src)
|
||||
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 69 KiB After Width: | Height: | Size: 71 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 74 KiB After Width: | Height: | Size: 76 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 18 KiB |
@@ -548,6 +548,15 @@
|
||||
/obj/item/clothing/under/rank/security/officer/formal
|
||||
unique_reskin = null // prevents you from losing the unique sprite
|
||||
|
||||
/obj/item/clothing/under/rank/security/officer/skirt
|
||||
name = "security battle dress"
|
||||
desc = "An asymmetrical, unisex uniform with the legs replaced by a utility skirt."
|
||||
worn_icon_state = "security_skirt"
|
||||
icon_state = "security_skirt"
|
||||
uses_advanced_reskins = FALSE
|
||||
unique_reskin = null
|
||||
alt_covers_chest = FALSE
|
||||
|
||||
//Warden
|
||||
/obj/item/clothing/under/rank/security/warden
|
||||
icon = 'modular_skyrat/master_files/icons/obj/clothing/under/security.dmi'
|
||||
@@ -606,21 +615,16 @@
|
||||
//
|
||||
// This code overrides security's jumpskirt preference, as we're not going to be giving them jumpskirts
|
||||
//
|
||||
/datum/outfit/job/security/pre_equip(mob/living/carbon/human/affected_mob)
|
||||
if(affected_mob.jumpsuit_style == PREF_SKIRT)
|
||||
to_chat(affected_mob, span_alertwarning("Lopland Peacekeeper uniforms don't include a skirt variant! You've been equipped with a jumpsuit instead."))
|
||||
affected_mob.jumpsuit_style = PREF_SUIT
|
||||
. = ..()
|
||||
|
||||
/datum/outfit/job/hos/pre_equip(mob/living/carbon/human/affected_mob)
|
||||
if(affected_mob.jumpsuit_style == PREF_SKIRT)
|
||||
to_chat(affected_mob, span_alertwarning("Lopland Peacekeeper uniforms don't include a skirt variant! You've been equipped with a jumpsuit instead."))
|
||||
to_chat(affected_mob, span_alertwarning("Lopland Head of Security uniforms don't include a skirt variant! You've been equipped with a jumpsuit instead."))
|
||||
affected_mob.jumpsuit_style = PREF_SUIT
|
||||
. = ..()
|
||||
|
||||
/datum/outfit/job/warden/pre_equip(mob/living/carbon/human/affected_mob)
|
||||
if(affected_mob.jumpsuit_style == PREF_SKIRT)
|
||||
to_chat(affected_mob, span_alertwarning("Lopland Peacekeeper uniforms don't include a skirt variant! You've been equipped with a jumpsuit instead."))
|
||||
to_chat(affected_mob, span_alertwarning("Lopland Warden uniforms don't include a skirt variant! You've been equipped with a jumpsuit instead."))
|
||||
affected_mob.jumpsuit_style = PREF_SUIT
|
||||
. = ..()
|
||||
|
||||
|
||||
@@ -45,6 +45,7 @@
|
||||
/obj/item/storage/backpack/satchel/sec = 5,
|
||||
/obj/item/storage/backpack/duffelbag/sec = 5,
|
||||
/obj/item/clothing/under/rank/security/officer = 10,
|
||||
/obj/item/clothing/under/rank/security/officer/skirt = 10,
|
||||
/obj/item/clothing/under/rank/security/peacekeeper/tactical = 4,
|
||||
/obj/item/clothing/under/rank/security/peacekeeper/sol/cadet = 3,
|
||||
/obj/item/clothing/under/rank/security/peacekeeper/sol = 3,
|
||||
|
||||
Reference in New Issue
Block a user