This commit is contained in:
WBHarry 2026-04-04 12:17:55 +02:00
parent f91c140d34
commit a7858db21e
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 FearDie extends DualityDie {
async getDiceSoNiceAppearance(roll) {
const { fear } = await getDiceSoNicePresets(roll, this.denomination, this.denomination);
return fear;
}
}