|
|
@@ -2239,10 +2239,12 @@ public class CardSource : MonoBehaviour
|
|
|
#endregion
|
|
|
|
|
|
#region Set DP - Must be used in conjunction with when removed field
|
|
|
+
|
|
|
public void SetDP(int value)
|
|
|
{
|
|
|
BaseDP = value;
|
|
|
}
|
|
|
+
|
|
|
#endregion
|
|
|
|
|
|
#region whether this card is token
|
|
|
@@ -3623,6 +3625,18 @@ public class CardSource : MonoBehaviour
|
|
|
}
|
|
|
|
|
|
#endregion
|
|
|
+
|
|
|
+ #region whether this card has "Bagra Army" trait
|
|
|
+
|
|
|
+ public bool HasBagraArmyTraits
|
|
|
+ {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ return EqualsTraits("Bagra Army");
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ #endregion
|
|
|
}
|
|
|
|
|
|
public class JogressCondition
|