mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-04-21 15:03:37 +02:00
* Basic rework to the roll data in messages * . * Fixed advantage/disadvantage * . * . * Fixed TagTeamDialog * Reuse getter in faces setter * Simplify fate roll type css class * Add more caution to the dualityRoll fromData function * Apply suggestion from @CarlosFdez * Compute modifiers using deterministic terms (#1758) --------- Co-authored-by: Carlos Fernandez <cfern1990@gmail.com> Co-authored-by: Carlos Fernandez <CarlosFdez@users.noreply.github.com>
9 lines
228 B
JavaScript
9 lines
228 B
JavaScript
import DualityDie from './dualityDie.mjs';
|
|
import AdvantageDie from './advantageDie.mjs';
|
|
import DisadvantageDie from './disadvantageDie.mjs';
|
|
|
|
export const diceTypes = {
|
|
DualityDie,
|
|
AdvantageDie,
|
|
DisadvantageDie
|
|
};
|