|
|
@@ -2229,10 +2229,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
|
|
|
@@ -3613,6 +3615,18 @@ public class CardSource : MonoBehaviour
|
|
|
}
|
|
|
|
|
|
#endregion
|
|
|
+
|
|
|
+ #region whether this card has "Galaxy" trait
|
|
|
+
|
|
|
+ public bool HasGalaxyTraits
|
|
|
+ {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ return EqualsTraits("Galaxy");
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ #endregion
|
|
|
}
|
|
|
|
|
|
public class JogressCondition
|