This repository has been archived on 2025-11-08. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
foundryvtt-reve-de-dragon/module/roll/roll-part-actor.mjs

12 lines
287 B
JavaScript

import { ROLLDIALOG_SECTION, RollPart } from "./roll-part.mjs"
export const PART_ACTOR = "actor"
export class RollPartActor extends RollPart {
get code() { return PART_ACTOR }
get section() { return ROLLDIALOG_SECTION.ACTION }
title(rollData) { return rollData.active.name }
}