Esempio n. 1
0
        public virtual void battleChoices(DungeonCharacter opponent)
        {
            numTurns = attackSpeed / opponent.getAttackSpeed();

            if (numTurns == 0)
            {
                numTurns++;
            }

            Console.WriteLine("Number of turns this round is: " + numTurns);
        }