Skip to content

Commit

Permalink
Tweaked creature_list example to reduce odds of getting flagged for…
Browse files Browse the repository at this point in the history
… spelling errors by CRAN (because of weird fantasy words)
  • Loading branch information
njlyon0 committed Apr 26, 2024
1 parent 879e9cc commit e7f79cd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions vignettes/dndr_02_creatures.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ If you want to identify creatures defined by official D&D source books, the `cre
See the help file for `monster_list` for the full list of supported query criteria.

```{r creature_list}
# Find all tiny construct creatures
robot_df <- dndR::creature_list(size = "tiny", type = "construct")
# Find all small creatures with 'goblin' in their name
gobbo_df <- dndR::creature_list(name = "goblin", size = "small")
# Check the structure of that output
str(robot_df)
str(gobbo_df)
```

### Creature Descriptions
Expand All @@ -42,7 +42,7 @@ If you need to access the specific description of a particular creature (or crea
# Get the information for a hunter shark
shark_df <- dndR::creature_text(name = "hunter shark")
# Check that our
# Check that out
head(shark_df, n = 7)
```

Expand Down

0 comments on commit e7f79cd

Please sign in to comment.