|
|
@@ -2755,9 +2755,9 @@ public class CardSource : MonoBehaviour
|
|
|
{
|
|
|
if (CardTraits.Contains("Hero"))
|
|
|
{
|
|
|
- return true
|
|
|
+ return true;
|
|
|
}
|
|
|
- return float
|
|
|
+ return false;
|
|
|
}
|
|
|
}
|
|
|
|
|
|
@@ -2830,6 +2830,23 @@ public class CardSource : MonoBehaviour
|
|
|
}
|
|
|
|
|
|
#endregion
|
|
|
+
|
|
|
+ #region whether this card has "Appmon" trait
|
|
|
+
|
|
|
+ public bool HasAppmonTraits
|
|
|
+ {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ if (CardTraits.Find(x => x.Equals("Appmon")) != null)
|
|
|
+ {
|
|
|
+ return true;
|
|
|
+ }
|
|
|
+
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ #endregion
|
|
|
}
|
|
|
|
|
|
public class JogressCondition
|