Skip to content

Commit

Permalink
gucci lens
Browse files Browse the repository at this point in the history
adds peacemaker glasses in the vending machines
adds reskins (choice between peacemaker and armadyne glasses) for the peacemaker glasses
  • Loading branch information
JlereHda3oHbl1984 committed Mar 21, 2024
1 parent 9dbc5f4 commit 8dfcb21
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tff_modular/modules/redsec/code/vending.dm
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,8 @@
/obj/item/clothing/head/beret/sec/navyofficer = 5,
/obj/item/clothing/glasses/hud/security/sunglasses = 3,
/obj/item/clothing/glasses/hud/security/sunglasses/redsec = 3,
/obj/item/clothing/glasses/hud/security/sunglasses/peacekeeper = 3,
/obj/item/clothing/glasses/hud/security/sunglasses/peacekeeper/armadyne = 3,
/obj/item/storage/box/holobadge = 1,
)
light_color = "#abadcc"
Expand Down
18 changes: 18 additions & 0 deletions tff_modular/modules/redsec_reskins/code/redsec.dm
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,24 @@
),
)

/obj/item/clothing/glasses/hud/security/sunglasses/peacekeeper/Initialize(mapload)
. = ..()
uses_advanced_reskins = TRUE
unique_reskin = list(
"Armadyne Hud Glasses" = list(
RESKIN_ICON = 'modular_nova/master_files/icons/obj/clothing/glasses.dmi',
RESKIN_ICON_STATE = "armadyne_glasses",
RESKIN_WORN_ICON = 'modular_nova/master_files/icons/mob/clothing/eyes.dmi',
RESKIN_WORN_ICON_STATE = "armadyne_glasses"
),
"Peacekeeper Hud Glasses" = list(
RESKIN_ICON = 'modular_nova/master_files/icons/obj/clothing/glasses.dmi',
RESKIN_ICON_STATE = "peacekeeperglasses",
RESKIN_WORN_ICON = 'modular_nova/master_files/icons/mob/clothing/eyes.dmi',
RESKIN_WORN_ICON_STATE = "peacekeeperglasses"
),
)

//Вещи Security Officer
/obj/item/clothing/head/security_cap/Initialize(mapload)
. = ..()
Expand Down

0 comments on commit 8dfcb21

Please sign in to comment.