Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions modular_doppler/modular_cosmetics/code/face/designs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -163,3 +163,15 @@
RND_CATEGORY_EQUIPMENT + RND_SUBCATEGORY_EQUIPMENT_SCIENCE + RND_SUBCATEGORY_EQUIPMENT_MEDICAL,
)
departmental_flags = DEPARTMENT_BITFLAG_SCIENCE | DEPARTMENT_BITFLAG_MEDICAL

/datum/design/security_hud_glasses
name = "Security HUD Glasses"
desc = "A heads-up display that scans the humans in view and provides accurate data about their ID status. Now in fashionable glasses form!"
id = "security_hud_glasses"
build_type = PROTOLATHE | AWAY_LATHE
materials = list(/datum/material/iron =SMALL_MATERIAL_AMOUNT*5, /datum/material/glass =SMALL_MATERIAL_AMOUNT*5)
build_path = /obj/item/clothing/glasses/hud/security/secglasses
category = list(
RND_CATEGORY_EQUIPMENT + RND_SUBCATEGORY_EQUIPMENT_SECURITY
)
departmental_flags = DEPARTMENT_BITFLAG_SECURITY
7 changes: 7 additions & 0 deletions modular_doppler/modular_cosmetics/code/face/glasses.dm
Original file line number Diff line number Diff line change
Expand Up @@ -440,6 +440,13 @@
supported_bodyshapes = null
bodyshape_icon_files = null

// Looks like thermals, acts like SEC hud.
/obj/item/clothing/glasses/hud/security/secglasses
name = "security HUD glasses"
desc = "A heads-up display that scans the humanoids in view and provides accurate data about their ID status and security records. Now in a fashionable pair of glasses!"
icon_state = "thermal"


// Security Aviators
/obj/item/clothing/glasses/hud/ar/aviator/security
name = "security HUD aviators"
Expand Down
1 change: 1 addition & 0 deletions modular_doppler/research/techweb/all_nodes.dm
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,6 @@
"diagnostic_hud_projector",
"meson_hud_projector",
"science_hud_projector",
"security_hud_glasses",
)
return ..()
Loading