Files
ss14-wega/Content.Shared/_Wega/CardTarot/CardTarotComponent.cs
Zekins 99bc2edc32 МбКульт & Gambling^3 (#279)
* refmbcult

* fixrule

* minich

* yeee

* linter

* somefixes

* cultext&gamb

* linterfix

* fixtarot
2025-12-31 18:55:15 +03:00

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");
}