mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-04-21 23:13:39 +02:00
9 lines
333 B
JavaScript
9 lines
333 B
JavaScript
import { getDiceSoNicePresets } from '../../config/generalConfig.mjs';
|
|
import DualityDie from './dualityDie.mjs';
|
|
|
|
export default class HopeDie extends DualityDie {
|
|
async getDiceSoNiceAppearance(roll) {
|
|
const { hope } = await getDiceSoNicePresets(roll, this.denomination, this.denomination);
|
|
return hope;
|
|
}
|
|
}
|