This commit is contained in:
TheGiddyLimit
2024-02-19 22:18:48 +00:00
parent 661a119c6d
commit b323d4123e
157 changed files with 43972 additions and 697 deletions

View File

@@ -809,6 +809,12 @@ class SkillTag {
static _fnTag (strMod) {
return strMod.replace(/\b(Acrobatics|Animal Handling|Arcana|Athletics|Deception|History|Insight|Intimidation|Investigation|Medicine|Nature|Perception|Performance|Persuasion|Religion|Sleight of Hand|Stealth|Survival)\b/g, (...m) => `{@skill ${m[1]}}`);
}
static tryRunProps (ent, {props} = {}) {
props
.filter(prop => ent[prop])
.forEach(prop => this.tryRun(ent[prop]));
}
}
class ActionTag {