This commit is contained in:
WBHarry 2026-04-04 13:01:24 +02:00 committed by GitHub
parent 331f1ebf75
commit 7057504a9e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 46 additions and 16 deletions

View file

@ -0,0 +1,9 @@
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;
}
}