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

Functions for generating team related data

# `creature`

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

Returns a string of the form [state] [creature]

## Examples

    iex> Faker.Team.creature()
    "prophets"
    iex> Faker.Team.creature()
    "cats"
    iex> Faker.Team.creature()
    "enchanters"
    iex> Faker.Team.creature()
    "banshees"

# `name`

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

Returns a random creature name

## Examples

    iex> Faker.Team.name()
    "Hawaii cats"
    iex> Faker.Team.name()
    "Oklahoma banshees"
    iex> Faker.Team.name()
    "Texas elves"
    iex> Faker.Team.name()
    "Iowa fishes"

---

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