feat: fiche PNJ (profil + niveaux) et passage du véhicule en acteur
Release Creation / build (release) Failing after 1m17s

This commit is contained in:
2026-08-04 20:34:20 +02:00
parent ea3322e843
commit cf905cdcfb
36 changed files with 1288 additions and 707 deletions
+23 -9
View File
@@ -359,6 +359,28 @@ export class VermineExchange {
ui.notifications.warn(game.i18n.localize('VERMINE.error_creature_no_defense'))
return
}
const defense = {
exchangeId: exchange.id,
type,
actorId: actor.id,
actorUuid: actor.uuid,
actorName: actor.name,
difficulty: exchange.difficulty,
parryLevel: type === 'parade' ? this.#parryLevel(actor) : null
}
// PNJ : pas de caractéristiques/compétences — la défense utilise la valeur
// d'Action (Expérience), difficulté verrouillée.
if (actor.type === 'npc') {
const { default: NpcRollDialog } = await import('./dialogs/npcRollDialog.mjs')
const dialog = await NpcRollDialog.create({
actor,
rolltype: 'action',
locks: { difficulty: exchange.difficulty },
defense
})
if (dialog) dialog.render(true)
return
}
const { default: RollDialog } = await import('./dialogs/rollDialog.mjs')
const locks = this.#defenseLocks(actor, exchange, type)
const dialog = await RollDialog.create({
@@ -366,15 +388,7 @@ export class VermineExchange {
rolltype: 'skill',
label: locks.skill,
locks,
defense: {
exchangeId: exchange.id,
type,
actorId: actor.id,
actorUuid: actor.uuid,
actorName: actor.name,
difficulty: exchange.difficulty,
parryLevel: type === 'parade' ? this.#parryLevel(actor) : null
}
defense
})
if (dialog) dialog.render(true)
}