Added color ring based on proficiency levels for skills and saves (pf2e and dnd5e)

This commit is contained in:
kyamsil
2022-04-08 20:26:33 +01:00
parent ccacd3e26e
commit 4d320a5f6c
10 changed files with 149 additions and 16 deletions

View File

@@ -318,4 +318,14 @@ export class TokenHelper{
rollItem(item) {
return this.system.rollItem(item);
}
/**
* Ring Colors
*/
getSkillRingColor(token,skill) {
return this.system.getSkillRingColor(token,skill);
}
getSaveRingColor(token,save) {
return this.system.getSaveRingColor(token,save);
}
}