You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Reminder could be able to tell when wearing armor without proficiency that we have disadvantages.
As per rules:
"If you wear armor that you lack Proficiency with, you have disadvantage on any ability check, saving throw, or Attack roll that involves Strength or Dexterity, and you can’t cast Spells."
my function purposal:
function _armorIsNotProficient() {
if (this.abilityId === "str" || this.abilityId === "dex") {
const item = this.items.find(
(item) =>
item.type === "equipment" &&
item.system?.equipped &&
item.system?.proficient == false
);
debug("equiped item that imposes disadvantage on ability, savings and attacks using str and dex", item?.name);
return item?.name;
}
}
The text was updated successfully, but these errors were encountered:
Reminder could be able to tell when wearing armor without proficiency that we have disadvantages.
As per rules:
"If you wear armor that you lack Proficiency with, you have disadvantage on any ability check, saving throw, or Attack roll that involves Strength or Dexterity, and you can’t cast Spells."
my function purposal:
The text was updated successfully, but these errors were encountered: