添加阵营

This commit is contained in:
xianyi
2025-08-18 17:56:34 +08:00
parent 092355aa31
commit 4734c47c63
18 changed files with 242 additions and 9 deletions

View File

@@ -14,6 +14,17 @@ namespace TcgEngine
Equipment = 50,
}
public enum CardCamp
{
None = -1, // 无阵营限制
ZiYouRen = 0, // 自由人
YiYongJun = 5, // 义勇军
WangGuoJun = 10, // 王国军
DiGuoJun = 20, // 帝国军
ShouQun = 30, // 兽群
XieMo = 40, // 邪魔
}
/// <summary>
/// Defines all card data
/// </summary>
@@ -30,6 +41,7 @@ namespace TcgEngine
[Header("Stats")]
public CardType type;
public CardCamp camp;
public TeamData team;
public RarityData rarity;
public int mana;