Example #1
0
    //Removes the call to this card's skills when the card leaves the field.
    public override void DeactivateFieldSkills()
    {
        BattleSupportEvent.RemoveListener(RedGreenBond);

        RemoveFromFieldEvent.Invoke(this);
    }
Example #2
0
 //Adds calls to this card's skills when the card enteres the field.
 public override void ActivateFieldSkills()
 {
     BattleSupportEvent.AddListener(RedGreenBond);
 }