Files
Continentis/Assets/Mods/Basic/Cards/Scripts/General/Status/Stifled.cs
SoulliesOfficial c3b1561375 更新
2026-04-01 12:23:27 -04:00

14 lines
353 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using Continentis.MainGame.Card;
namespace Continentis.Mods.Basic.Cards
{
/// <summary>
/// 扼制消耗1点体力的状态卡牌具有"消耗"和"MustPlayFirst"关键词。
/// 在打出之前,玩家不能打出其它卡牌。打出后被消耗。
/// </summary>
public class Stifled : CardLogicBase
{
}
}