Fenêtres Roll V2

Maintenant disponibles pour:
- méditation
- tâches
- soins
This commit is contained in:
2025-10-05 02:24:34 +02:00
parent 47c4478303
commit fa6769fcd7
28 changed files with 359 additions and 102 deletions

View File

@@ -18,7 +18,6 @@ export class RollType {
isAllowed(rollData) { return rollData.type.allowed == undefined || rollData.type.allowed.includes(this.code) }
visible(rollData) { return true }
title(rollData) { return this.code }
isSelected(rollData) { return rollData.type.current == this.code }
@@ -52,7 +51,7 @@ export class RollType {
this.setRollDataType(rollData)
}
getResult(rollData) {
return undefined
}
callbacks(rollOptions) { return [] }
getResult(rollData) { return undefined }
}