R/sample_shadowbolt.R

Defines functions sample_shadowbolt

Documented in sample_shadowbolt

#' Sample Shadow Bolt
#'
#' Use the sample function so simulate the base damage of a shadow bolt.
#' Intended for vectorisation if the simulation.
#'
#' @param n number of samples
#'
sample_shadowbolt <- function(n = 1) {
  sample(482:538, n, replace = TRUE)
}
cphaarmeyer/warlockr documentation built on April 1, 2021, 12:31 a.m.