Files
fvtt-hamalron/module/applications/_module.mjs
T
uberwald 8a27211ff5 feat: actions complexes avec suivi de résistance
- Nouvelle fenêtre Actions complexes (GM-only)
- Création d'actions avec nom, symbole, résistance (nb de succès requis)
- Barre de progression + compteurs succès/échecs
- Boutons Réussite/Échec pour suivre l'avancement
- Notification et message chat quand l'objectif est atteint
- Persistance dans un setting world-scope
- Bouton dans les contrôles de scène (icône tasks)
- Accessible via game.system.api.openActionComplexe()

Conforme aux règles p.157 : actions nécessitant 2-5 victoires
2026-07-10 20:30:20 +02:00

18 lines
1.3 KiB
JavaScript

export { default as HamalronArmeSheet } from "./sheets/arme-sheet.mjs"
export { default as HamalronArmureSheet } from "./sheets/armure-sheet.mjs"
export { default as HamalronCompetenceSheet } from "./sheets/competence-sheet.mjs"
export { default as HamalronEquipementSheet } from "./sheets/equipement-sheet.mjs"
export { default as HamalronFactionSheet } from "./sheets/faction-sheet.mjs"
export { default as HamalronLangueSheet } from "./sheets/langue-sheet.mjs"
export { default as HamalronPeupleSheet } from "./sheets/peuple-sheet.mjs"
export { default as HamalronRegionSheet } from "./sheets/region-sheet.mjs"
export { default as HamalronPersonnageSheet } from "./sheets/personnage-sheet.mjs"
export { default as HamalronEnemySheet } from "./sheets/enemy-sheet.mjs"
export { default as HamalronSortilegeSheet } from "./sheets/sortilege-sheet.mjs"
export { default as HamalronTarotSheet } from "./sheets/tarot-sheet.mjs"
export { default as HamalronItemSheet } from "./sheets/base-item-sheet.mjs"
export { default as HamalronActorSheet } from "./sheets/base-actor-sheet.mjs"
export { default as HamalronTarotDeckManager } from "./tarot-deck-manager.mjs"
export { default as HamalronSortilegeCasting } from "./sortilege-casting.mjs"
export { default as HamalronActionComplexe } from "./action-complexe.mjs"