Skip to content

Commit

Permalink
Changes Inteq loadouts in order to add headsets to roles missing them (
Browse files Browse the repository at this point in the history
…#3448)

<!-- Write **BELOW** The Headers and **ABOVE** The comments else it may
not be viewable. -->
<!-- You can view Contributing.MD for a detailed description of the pull
request process. -->

## About The Pull Request

This change adds basic bowmans to Enforcer and Artificer loadouts, as
well as basic headsets to Recruit loadouts.

## Why It's Good For The Game

Hearing protection is important out in the Frontier, and both Artificers
and Enforcers tend to be around things that test the limits of their
eardrums. Namely power tools and heavy machinery, or explosives and
gunfire.

## Changelog

:cl:
add: Adds bowmans to Artificer and Enforcer loadouts, and regular
headsets to Recruit loadouts
/:cl:

<!-- Both :cl:'s are required for the changelog to work! You can put
your name to the right of the first :cl: if you want to overwrite your
GitHub username as author ingame. -->
<!-- You can use multiple of the same prefix (they're only used for the
icon ingame) and delete the unneeded ones. Despite some of the tags,
changelogs should generally represent how a player might be affected by
the changes rather than a summary of the PR's contents. -->

---------

Signed-off-by: zimon9 <122945887+zimon9@users.noreply.github.com>
Co-authored-by: FalloutFalcon <86381784+FalloutFalcon@users.noreply.github.com>
  • Loading branch information
zimon9 and FalloutFalcon authored Oct 9, 2024
1 parent 030dc0e commit 6de720e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
4 changes: 4 additions & 0 deletions code/game/objects/items/devices/radio/headset.dm
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,10 @@ GLOBAL_LIST_INIT(channel_tokens, list(
desc = "This is used by Inteq Risk Management Group's mercenaries. Protects ears from flashbangs."
icon_state = "inteq_headset_alt"

/obj/item/radio/headset/inteq/alt/ComponentInitialize()
. = ..()
AddComponent(/datum/component/wearertargeting/earprotection, list(ITEM_SLOT_EARS))

/obj/item/radio/headset/inteq/alt/captain
name = "vanguard bowman headset"
desc = "Used by Inteq Risk Management Group's elite vanguards. Protects ears from flashbangs."
Expand Down
3 changes: 3 additions & 0 deletions code/modules/clothing/outfits/factions/inteq.dm
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
jobtype = /datum/job/assistant
job_icon = "assistant"

ears = /obj/item/radio/headset
r_pocket = /obj/item/radio

///captains
Expand Down Expand Up @@ -135,6 +136,7 @@
jobtype = /datum/job/officer
job_icon = "securityofficer"

ears = /obj/item/radio/headset/alt
head = /obj/item/clothing/head/helmet/inteq
suit = /obj/item/clothing/suit/armor/vest/alt
belt = /obj/item/storage/belt/security/webbing/inteq
Expand Down Expand Up @@ -181,6 +183,7 @@
job_icon = "stationengineer"
jobtype = /datum/job/engineer

ears = /obj/item/radio/headset/alt
uniform = /obj/item/clothing/under/syndicate/inteq/artificer
head = /obj/item/clothing/head/soft/inteq
shoes = /obj/item/clothing/shoes/combat
Expand Down

0 comments on commit 6de720e

Please sign in to comment.