public virtual bool Attack(IMonsterable monster)
        {
            if (!monster.Defend(Strength))
            {
                Score += Strength;
                return(true);
            }

            return(false);
        }