* Update ShowHealthBarsComponent.cs * mana split now can destroy mana trace * delete aura examine * Add aura confusion status effect and concealment reagent Introduces the Confused Aura status effect, which causes entities to leave randomized magical aura imprints. Adds the CP14HideMagicAuraStatusEffectComponent, new localization strings, alert, and reagent (Aura concealment solution) that applies the effect. Updates magic vision logic to support the new effect, and adds related icons and prototype definitions. * vampire market * easy vampire clothing craft * obscure magic trace
12 lines
262 B
C#
12 lines
262 B
C#
using Robust.Shared.GameStates;
|
|
|
|
namespace Content.Shared._CP14.MagicVision;
|
|
|
|
/// <summary>
|
|
/// Allows to see magic vision trace entities
|
|
/// </summary>
|
|
[RegisterComponent, NetworkedComponent]
|
|
public sealed partial class CP14MagicVisionComponent : Component
|
|
{
|
|
}
|