mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-04-21 23:13:39 +02:00
Fixes (#1774)
This commit is contained in:
parent
331f1ebf75
commit
7057504a9e
6 changed files with 46 additions and 16 deletions
9
module/dice/die/fearDie.mjs
Normal file
9
module/dice/die/fearDie.mjs
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
import { getDiceSoNicePresets } from '../../config/generalConfig.mjs';
|
||||
import DualityDie from './dualityDie.mjs';
|
||||
|
||||
export default class FearDie extends DualityDie {
|
||||
async getDiceSoNiceAppearance(roll) {
|
||||
const { fear } = await getDiceSoNicePresets(roll, this.denomination, this.denomination);
|
||||
return fear;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue