Esempio n. 1
0
        public void Receive(BlockerJoinedCombatEvent message)
        {
            if (message.Blocker.Card != Card)
            {
                return;
            }

            if (Card.Controller.IsHuman)
            {
                return;
            }

            Marker = message.Attacker.Card.Id;
        }
Esempio n. 2
0
 public void Receive(BlockerJoinedCombatEvent message)
 {
     _blockers.Add(message.Blocker.Card);
 }
Esempio n. 3
0
 public Parameters(BlockerJoinedCombatEvent e)
 {
     _e = e;
 }