mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-07-11 07:58:57 +01:00
23789d4113
This PR is intended to sort out our existing guns into something resembling organization. In addition, ancient decrepit guns are removed, and abstract paths are labeled as such. In addition, all guns are now standardized to refer to their model. Considering the huge number of weapons we have, a `pistol` is not descriptive enough. NOTE: At over 200 files touched, this is being split. Not everything was sorted, but this is already a monster to sort through. The rest can wait.
13 lines
497 B
Plaintext
13 lines
497 B
Plaintext
/obj/item/suppressor
|
|
name = "suppressor"
|
|
desc = "A suppressor"
|
|
icon = 'icons/obj/guns/attachments/suppressor.dmi'
|
|
icon_state = "suppressor_item"
|
|
origin_tech = list(TECH_MATERIAL = 2, TECH_COMBAT = 3)
|
|
w_class = WEIGHT_CLASS_SMALL
|
|
|
|
/obj/item/suppressor/mechanics_hints(mob/user, distance, is_adjacent)
|
|
. += ..()
|
|
. += "Suppressors can be attached to weapons to reduce their sound."
|
|
. += "Click on a weapon adjacent to you or in your hand to attach it and ALT-click the weapon to remove it."
|