mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-04-22 23:43:37 +02:00
* Initial * . * Improvements * . * Renamed 'Main Charater' to 'Leader' * Localization fixes * . * Fixed roll sound coming when canceling a roll. Fixed the leader PART not being disabled when the player isn't the leader
12 lines
350 B
JavaScript
12 lines
350 B
JavaScript
import DHAbilityUse from './abilityUse.mjs';
|
|
import DHActorRoll from './actorRoll.mjs';
|
|
import DHSystemMessage from './systemMessage.mjs';
|
|
|
|
export const config = {
|
|
abilityUse: DHAbilityUse,
|
|
adversaryRoll: DHActorRoll,
|
|
damageRoll: DHActorRoll,
|
|
dualityRoll: DHActorRoll,
|
|
fateRoll: DHActorRoll,
|
|
systemMessage: DHSystemMessage
|
|
};
|