.dungeon/module/documents/Actor/Mob.mjs
2024-02-10 01:03:49 -07:00

11 lines
161 B
JavaScript

/** @this {Actor} */
function getRollData() {
const data = {
initiative: this.system.initiative ?? 0,
};
return data;
};
export default {
getRollData,
};