using System.Collections; using System.Collections.Generic; using System; using System.Linq; using UnityEngine; public partial class CardEffectCommons { #region Can trigger [When Digivolving] effect public static bool CanTriggerWhenDigivolving(Hashtable hashtable, CardSource card, Func rootCondition = null) { return CanTriggerOnEnterField(hashtable, card, true, rootCondition); } #endregion #region Can trigger "When permanent digivolves" effect public static bool CanTriggerWhenPermanentDigivolving( Hashtable hashtable, Func permanentCondition, Func rootCondition = null) { return CanTriggerOnPermanentEnterField(hashtable, permanentCondition, true, rootCondition); } #endregion }