data-raw/hpmp.R

## HP/MP Tier Values
library(tidyverse)
library(usethis)

hpmp <- tibble(
  "LV" = seq(0, 200, 10),
  "T1" = c(3, seq(30, 600, 30)),
  "T2" = 2 * T1,
  "T3" = 3 * T1,
  "T4" = 4 * T1,
  "T5" = 5 * T1,
  "T6" = 6 * T1,
  "T7" = 7 * T1
)

write_csv(hpmp, "data-raw/hpmp.csv")
usethis::use_data(hpmp, overwrite = TRUE)
callowy/flames documentation built on Oct. 23, 2020, 3:48 a.m.