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

Functions for Pokemon names in English

# `location`

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

Returns a location from Pokemon universe

## Examples

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

# `name`

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

Returns a Pokemon name

## Examples

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

---

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