public override bool Equals(object obj)
        {
            if (obj is CustomBattleCharacter other)
            {
                return(_wrappedCharacter.Equals(other._wrappedCharacter));
            }

            return(false);
        }