Character options in this section can be used with the GM's consent.
library(sfrpg) df_origin = get_df_origin()
Shifters have the ability to partially change their shape, gaining animal traits. Agile Shifters often take the form of wolves, panthers or other beasts that favor speed and cunning over brute force.
df_class_build = get_class_build(df_origin, 'Shifter', 'Agile') df_class_build$htm_stat %>% cat()
df_class_build$htm_feature %>% cat()
df_class_build$htm_power %>% cat()
Shifters have the ability to partially change their shape, gaining animal traits. Brute Shifters often take the form of bears, boars or other beasts that favor brute force over speed and cunning.
df_class_build = get_class_build(df_origin, 'Shifter', 'Brute') df_class_build$htm_stat %>% cat()
df_class_build$htm_feature %>% cat()
df_class_build$htm_power %>% cat()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.