Skip to contents

Generate Random sentences of Pokémon using moves

Usage

dex_sentence(
  n,
  gen = 1:9,
  case = c("sentence", "snake", "kebab", "camel", "caps", "custom"),
  ...
)

Arguments

n

An integer. Number of IDs to generate.

gen

vector of integers. The generations of Pokemon to use. Defaults to all generations.

case

Character string. The case style to use. Supported cases are snake, kebab, camel, caps, sentence and custom. If case is set to custom, a delimiter argument must be provided.

...

If case is set to custom, a delimiter argument must be provided.

Value

A character vector of length n containing the generated sentences.

Examples

dex_sentence(3)
#> [1] "Glum scraggy uses meditate acidly"         
#> [2] "Ashamed dachsbun uses lovely kiss strictly"
#> [3] "Growing umbreon uses splash boldly"        
dex_sentence(5)
#> [1] "Giddy cottonee uses karate chop mortally"   
#> [2] "Impish weepinbell uses bide regularly"      
#> [3] "Stormy riolu uses thunder punch really"     
#> [4] "Illustrious araquanid uses bind continually"
#> [5] "Normal pancham uses water gun carefully"