48 lines
998 B
JavaScript
48 lines
998 B
JavaScript
import { PowerEffect } from './basePowers.js';
|
||
|
||
export class InquisitorJudgementEffect extends PowerEffect {
|
||
get name() {
|
||
return 'Judgement';
|
||
}
|
||
|
||
get duration() {
|
||
return 0;
|
||
}
|
||
|
||
get icon() {
|
||
return 'icons/skills/social/trading-justice-scale-yellow.webp';
|
||
}
|
||
|
||
get isTargeted() {
|
||
return true;
|
||
}
|
||
|
||
get oneTarget() {
|
||
return true;
|
||
}
|
||
|
||
get modifiers() {
|
||
return [];
|
||
}
|
||
|
||
get effectName() {
|
||
return `${this.source.name}'s Judgement`;
|
||
}
|
||
|
||
get isRaisable() {
|
||
return false;
|
||
}
|
||
|
||
get description() {
|
||
return `${super.description}
|
||
<p>
|
||
Once per encounter as a free action, the inquisitor can pronounce judgment
|
||
on an enemy to gain five Judgment Tokens. A single token may be spent to
|
||
add +2 to a Trait or damage roll she makes against the judged, or −2 to one
|
||
of the foe's Trait or damage rolls. Judgment Tokens may be spent after the
|
||
roll, and remain in effect if the original total is rerolled.
|
||
</p>
|
||
`;
|
||
}
|
||
}
|