From 3ba951c6efb08669f9b6f95b66322e7557d53ee5 Mon Sep 17 00:00:00 2001 From: Killian <49700375+VarkaSelyn@users.noreply.github.com> Date: Mon, 22 Feb 2021 07:03:39 +0000 Subject: [PATCH 1/3] Update ert.dm --- code/modules/clothing/spacesuits/void/ert.dm | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/code/modules/clothing/spacesuits/void/ert.dm b/code/modules/clothing/spacesuits/void/ert.dm index b9fe70383d..e15bf8e689 100644 --- a/code/modules/clothing/spacesuits/void/ert.dm +++ b/code/modules/clothing/spacesuits/void/ert.dm @@ -130,24 +130,31 @@ armor = list(melee = 60, bullet = 50, laser = 30,energy = 15, bomb = 30, bio = 100, rad = 100) siemens_coefficient = 0.5 icon = 'icons/obj/clothing/hats_vr.dmi' + enables_planes = list(VIS_CH_ID,VIS_CH_HEALTH_VR,VIS_AUGMENTED) + flash_protection = FLASH_PROTECTION_MODERATE + plane_slots = list(slot_head) /obj/item/clothing/head/helmet/space/void/responseteam/command name = "Mark VII-C Emergency Response Team Commander Helmet" + enables_planes = list(VIS_CH_ID,VIS_CH_HEALTH_VR,VIS_CH_STATUS_R,VIS_CH_BACKUP,VIS_CH_WANTED) /obj/item/clothing/head/helmet/space/void/responseteam/medical name = "Mark VII-M Emergency Medical Response Helmet" icon_state = "erthelmet_m" item_state = "erthelmet_m" + enables_planes = list(VIS_CH_ID,VIS_CH_HEALTH_VR,VIS_CH_STATUS_R,VIS_CH_BACKUP,VIS_AUGMENTED) /obj/item/clothing/head/helmet/space/void/responseteam/engineer name = "Mark VII-E Emergency Engineering Response Helmet" icon_state = "erthelmet_e" item_state = "erthelmet_e" + flash_protection = FLASH_PROTECTION_MAJOR /obj/item/clothing/head/helmet/space/void/responseteam/security name = "Mark VII-S Emergency Security Response Helmet" icon_state = "erthelmet_s" item_state = "erthelmet_s" + enables_planes = list(VIS_CH_ID,VIS_CH_HEALTH_VR,VIS_CH_WANTED,VIS_AUGMENTED,VIS_CLOAKED) /obj/item/clothing/head/helmet/space/void/responseteam/janitor name = "Mark VII-J Emergency Cleanup Response Helmet" From c3e7a3112bbbf7249701d53f9f674310cbd59324 Mon Sep 17 00:00:00 2001 From: Killian <49700375+VarkaSelyn@users.noreply.github.com> Date: Mon, 22 Feb 2021 07:06:37 +0000 Subject: [PATCH 2/3] Update ert.dm --- code/modules/clothing/spacesuits/void/ert.dm | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/code/modules/clothing/spacesuits/void/ert.dm b/code/modules/clothing/spacesuits/void/ert.dm index e15bf8e689..023bec9388 100644 --- a/code/modules/clothing/spacesuits/void/ert.dm +++ b/code/modules/clothing/spacesuits/void/ert.dm @@ -131,12 +131,11 @@ siemens_coefficient = 0.5 icon = 'icons/obj/clothing/hats_vr.dmi' enables_planes = list(VIS_CH_ID,VIS_CH_HEALTH_VR,VIS_AUGMENTED) - flash_protection = FLASH_PROTECTION_MODERATE plane_slots = list(slot_head) /obj/item/clothing/head/helmet/space/void/responseteam/command name = "Mark VII-C Emergency Response Team Commander Helmet" - enables_planes = list(VIS_CH_ID,VIS_CH_HEALTH_VR,VIS_CH_STATUS_R,VIS_CH_BACKUP,VIS_CH_WANTED) + enables_planes = list(VIS_CH_ID,VIS_CH_HEALTH_VR,VIS_CH_STATUS_R,VIS_CH_BACKUP,VIS_CH_WANTED,VIS_AUGMENTED) /obj/item/clothing/head/helmet/space/void/responseteam/medical name = "Mark VII-M Emergency Medical Response Helmet" @@ -148,13 +147,12 @@ name = "Mark VII-E Emergency Engineering Response Helmet" icon_state = "erthelmet_e" item_state = "erthelmet_e" - flash_protection = FLASH_PROTECTION_MAJOR /obj/item/clothing/head/helmet/space/void/responseteam/security name = "Mark VII-S Emergency Security Response Helmet" icon_state = "erthelmet_s" item_state = "erthelmet_s" - enables_planes = list(VIS_CH_ID,VIS_CH_HEALTH_VR,VIS_CH_WANTED,VIS_AUGMENTED,VIS_CLOAKED) + enables_planes = list(VIS_CH_ID,VIS_CH_HEALTH_VR,VIS_CH_WANTED,VIS_AUGMENTED) /obj/item/clothing/head/helmet/space/void/responseteam/janitor name = "Mark VII-J Emergency Cleanup Response Helmet" From b550f0399c0227314ea4d2e1f77c0bb0718934d5 Mon Sep 17 00:00:00 2001 From: Killian <49700375+VarkaSelyn@users.noreply.github.com> Date: Wed, 24 Feb 2021 22:59:46 +0000 Subject: [PATCH 3/3] enverbulate! --- code/modules/clothing/spacesuits/void/ert.dm | 22 ++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/code/modules/clothing/spacesuits/void/ert.dm b/code/modules/clothing/spacesuits/void/ert.dm index 023bec9388..4825e96ddf 100644 --- a/code/modules/clothing/spacesuits/void/ert.dm +++ b/code/modules/clothing/spacesuits/void/ert.dm @@ -131,7 +131,29 @@ siemens_coefficient = 0.5 icon = 'icons/obj/clothing/hats_vr.dmi' enables_planes = list(VIS_CH_ID,VIS_CH_HEALTH_VR,VIS_AUGMENTED) + var/away_planes = null plane_slots = list(slot_head) + var/hud_active = 1 + var/activation_sound = 'sound/items/nif_click.ogg' + +/obj/item/clothing/head/helmet/space/void/responseteam/verb/toggle() + set category = "Object" + set name = "Toggle Mark 7 Suit HUD" + set src in usr + + if(usr.canmove && !usr.stat && !usr.restrained()) + if(src.hud_active) + away_planes = enables_planes + enables_planes = null + to_chat(usr, "You disable the inbuilt heads-up display.") + hud_active = 0 + else + enables_planes = away_planes + away_planes = null + to_chat(usr, "You enable the inbuilt heads-up display.") + hud_active = 1 + usr << activation_sound + usr.recalculate_vis() /obj/item/clothing/head/helmet/space/void/responseteam/command name = "Mark VII-C Emergency Response Team Commander Helmet"