Files
wwdpublic/Content.Shared/Traits/Assorted/Components/NormalVisionComponent.cs
VMSolidus 5d3648305a Trichromat Modification Trait (#505)
# Description

This PR brings back a previous briefly existing feature, that of the
NormalVisionComponent, which now exists as a single point positive trait
that can be taken only by Harpies and Vulpkanin(A list to later be
expanded if we ever get new species that have modified vision types).
This trait is called "Trichromat Modification", and it simply removes
any species based vision modifications an entity may have, such as
Ultraviolet Vision.

🆑
- add: Trichromat Modification has been added as a new positive trait.
It can be taken by Harpies and Vulpkanin to buy off their unique vision
negative traits.

Signed-off-by: VMSolidus <evilexecutive@gmail.com>
2024-07-06 00:49:31 +01:00

13 lines
288 B
C#

using Robust.Shared.GameStates;
namespace Content.Shared.Traits.Assorted.Components;
/// <summary>
/// This is used for removing species specific vision traits
/// </summary>
[RegisterComponent, NetworkedComponent]
public sealed partial class NormalVisionComponent : Component
{
}