mirror of
https://github.com/wega-team/ss14-wega.git
synced 2026-02-14 19:30:01 +01:00
* refmbcult * fixrule * minich * yeee * linter * somefixes * cultext&gamb * linterfix * fixtarot
17 lines
465 B
C#
17 lines
465 B
C#
using Robust.Shared.Audio;
|
|
using Robust.Shared.GameStates;
|
|
|
|
namespace Content.Shared.Card.Tarot.Components;
|
|
|
|
[RegisterComponent, NetworkedComponent]
|
|
public sealed partial class CardTarotComponent : Component
|
|
{
|
|
[DataField(required: true)]
|
|
public CardTarot Card = CardTarot.NotEnchanted;
|
|
|
|
[DataField]
|
|
public CardTarotType CardType = CardTarotType.Normal;
|
|
|
|
public SoundSpecifier UseSound = new SoundPathSpecifier("/Audio/Effects/lightburn.ogg");
|
|
}
|