if (this.selectedGeneration === "all" && this.selectedType === "all" && this.searchTerm === "") return this.pokemons; if (this.selectedGeneration === "all" && this.selectedType === "all") return this.pokemons.filter((pokemon) => pokemon.Name.toLowerCase().includes(this.searchTerm)); if (this.selectedGeneration === "all") return this.pokemons.filter((pokemon) =>pokemon.Tipoc.includes(this.selectedType) && pokemon.Name.toLowerCase().includes(this.searchTerm)); if (this.selectedType === "all") return this.pokemons.filter((pokemon) => pokemon.Geracaoc === parseInt(this.selectedGeneration) && pokemon.Name.toLowerCase().includes(this.searchTerm)); return this.pokemons.filter((pokemon) => pokemon.Geracaoc === parseInt(this.selectedGeneration) && pokemon.Tipoc.includes(this.selectedType) && pokemon.Name.toLowerCase().includes(this.searchTerm));