Skip to content

Commit

Permalink
Researchers now spawn with reagent scanner goggles instead of medhuds (
Browse files Browse the repository at this point in the history
…#4211)

# About the pull request

see title, this also adds prescription reagent goggles just in case a
researcher spawns with bad eyesight

# Explain why it's good for the game

a little QoL for researchers, saves them the time of needing to grab
reagent scanner goggles from their vendor if they want to do botany or
want to check the chemicals of something without putting it in a
machine.

# Testing Photographs and Procedure
<details>
<summary>Screenshots & Videos</summary>

Put screenshots and videos here with an empty line between the
screenshots and the `<details>` tags.

</details>


# Changelog



:cl: Private Tristan
qol: Researchers now spawn with reagent scanner goggles.
/:cl:
  • Loading branch information
private-tristan authored Aug 31, 2023
1 parent 40ea899 commit 6c42869
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions code/modules/clothing/glasses/glasses.dm
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,11 @@
req_skill_level = SKILL_RESEARCH_TRAINED
clothing_traits = list(TRAIT_REAGENT_SCANNER)

/obj/item/clothing/glasses/science/prescription
name = "prescription reagent scanner HUD goggles"
desc = "These goggles are probably of use to someone who isn't holding a rifle and actively seeking to lower their combat life expectancy. Contains prescription lenses."
prescription = TRUE

/obj/item/clothing/glasses/science/get_examine_text(mob/user)
. = ..()
. += SPAN_INFO("While wearing them, you can examine items to see their reagent contents.")
Expand Down
4 changes: 2 additions & 2 deletions code/modules/gear_presets/uscm_medical.dm
Original file line number Diff line number Diff line change
Expand Up @@ -173,9 +173,9 @@
new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/laceup(new_human), WEAR_FEET)

if(new_human.disabilities & NEARSIGHTED)
new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/hud/health/prescription(new_human), WEAR_EYES)
new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/science/prescription(new_human), WEAR_EYES)
else
new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/hud/health(new_human), WEAR_EYES)
new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/science(new_human), WEAR_EYES)

new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/labcoat/researcher(new_human), WEAR_JACKET)
new_human.equip_to_slot_or_del(new /obj/item/paper/research_notes/bad(new_human), WEAR_IN_JACKET)
Expand Down

0 comments on commit 6c42869

Please sign in to comment.