示例#1
0
        public void Assess()
        {
            if (effectTarget.Deck.cards.Count > 0 || effectTarget.Graveyard.Cards.Count > 0)
            {
                May(() => {
                    StartCoroutine(AssessCoroutine());

                    if (effectTarget.IsLocalPlayer)
                    {
                        effectTarget.StartChoosingCard(ChoosingCard.Assess);
                    }
                });
            }
        }