From 64349fa7db5eb41600cbb5cae262675260c0f2dd Mon Sep 17 00:00:00 2001 From: Samman166 <67894653+Samman166@users.noreply.github.com> Date: Sun, 25 Jul 2021 10:08:43 -0230 Subject: [PATCH] Adds hardened versions of thermal and x ray eyes and replaces old ones bought by nuke ops (#16055) * Adds hardened versions of thermal and x ray eyes and replaces old ones bought by nuke ops * Update code/modules/surgery/organs/eyes.dm grammar changes Co-authored-by: S34N <12197162+S34NW@users.noreply.github.com> * gives SOOs hardened X-ray eyes * Grammar fix Co-authored-by: S34N <12197162+S34NW@users.noreply.github.com> Co-authored-by: S34N <12197162+S34NW@users.noreply.github.com> --- code/game/jobs/job/central.dm | 2 +- code/modules/surgery/organs/autosurgeon.dm | 4 ++-- code/modules/surgery/organs/eyes.dm | 12 ++++++++++++ 3 files changed, 15 insertions(+), 3 deletions(-) diff --git a/code/game/jobs/job/central.dm b/code/game/jobs/job/central.dm index c25dfdd256f..e4ce321082e 100644 --- a/code/game/jobs/job/central.dm +++ b/code/game/jobs/job/central.dm @@ -93,7 +93,7 @@ /obj/item/implant/dust ) cybernetic_implants = list( - /obj/item/organ/internal/eyes/cybernetic/xray, + /obj/item/organ/internal/eyes/cybernetic/xray/hardened, /obj/item/organ/internal/cyberimp/brain/anti_stun/hardened, /obj/item/organ/internal/cyberimp/chest/nutriment/plus, /obj/item/organ/internal/cyberimp/arm/combat/centcom diff --git a/code/modules/surgery/organs/autosurgeon.dm b/code/modules/surgery/organs/autosurgeon.dm index 652bf7058a2..96e94fdf815 100644 --- a/code/modules/surgery/organs/autosurgeon.dm +++ b/code/modules/surgery/organs/autosurgeon.dm @@ -89,10 +89,10 @@ starting_organ = /obj/item/organ/internal/cyberimp/arm/gun/laser /obj/item/autosurgeon/organ/syndicate/thermal_eyes - starting_organ = /obj/item/organ/internal/eyes/cybernetic/thermals + starting_organ = /obj/item/organ/internal/eyes/cybernetic/thermals/hardened /obj/item/autosurgeon/organ/syndicate/xray_eyes - starting_organ = /obj/item/organ/internal/eyes/cybernetic/xray + starting_organ = /obj/item/organ/internal/eyes/cybernetic/xray/hardened /obj/item/autosurgeon/organ/syndicate/anti_stun starting_organ = /obj/item/organ/internal/cyberimp/brain/anti_stun/hardened diff --git a/code/modules/surgery/organs/eyes.dm b/code/modules/surgery/organs/eyes.dm index b5df8f90479..8e09b37e66b 100644 --- a/code/modules/surgery/organs/eyes.dm +++ b/code/modules/surgery/organs/eyes.dm @@ -137,6 +137,12 @@ vision_flags = SEE_MOBS | SEE_OBJS | SEE_TURFS origin_tech = "materials=4;programming=4;biotech=7;magnets=4" +/obj/item/organ/internal/eyes/cybernetic/xray/hardened + name = "hardened X-ray eyes" + desc = "These cybernetic eyes will give you X-ray vision. Blinking is futile. This pair has been hardened for special operations personnel." + emp_proof = TRUE + origin_tech = "materials=6;programming=5;biotech=7;magnets=6;syndicate=3" + /obj/item/organ/internal/eyes/cybernetic/thermals name = "thermal eyes" desc = "These cybernetic eye implants will give you thermal vision. Vertical slit pupil included." @@ -147,6 +153,12 @@ see_in_dark = 8 origin_tech = "materials=5;programming=4;biotech=4;magnets=4;syndicate=1" +/obj/item/organ/internal/eyes/cybernetic/thermals/hardened + name = "hardened thermal eyes" + desc = "These cybernetic eye implants will give you thermal vision. Vertical slit pupil included. This pair has been hardened for special operations personnel." + emp_proof = TRUE + origin_tech = "materials=6;programming=5;biotech=6;magnets=6;syndicate=3" + /obj/item/organ/internal/eyes/cybernetic/flashlight name = "flashlight eyes" desc = "It's two flashlights rigged together with some wire. Why would you put these in someone's head?"