# `Faker.Pokemon`
[🔗](https://github.com/artkay/fakerer/blob/v1.0.0/lib/faker/pokemon.ex#L1)

Function for generating Pokemon

# `location`

```elixir
@spec location() :: String.t()
```

Returns a random Pokemon location

## Examples

    iex> Faker.Pokemon.location()
    "Vaniville Town"
    iex> Faker.Pokemon.location()
    "Slateport City"
    iex> Faker.Pokemon.location()
    "Shalour City"
    iex> Faker.Pokemon.location()
    "Solaceon Town"

# `name`

```elixir
@spec name() :: String.t()
```

Returns a random Pokemon name

## Examples

    iex> Faker.Pokemon.name()
    "Fraxure"
    iex> Faker.Pokemon.name()
    "Shellos"
    iex> Faker.Pokemon.name()
    "Ambipom"
    iex> Faker.Pokemon.name()
    "Forretress"

---

*Consult [api-reference.md](api-reference.md) for complete listing*
