Beispiel #1
0
    public void EndFight()
    {
        foreach (PlayerBase player in TurnHandler.PlayerParty)
        {
            if (player.Health == 0)
            {
                player.Health = 1;
            }

            player.State = BuffState.Nothing;
        }

        Deactivate();

        TurnHandler.StopAllCoroutines();
    }