mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-11 19:25:21 +01:00
* Action Refactor Part #1 * Fixed Weapon/Armor features. Fixed Feature actions * f * Action Refactor Part #2 * Fixes * Remove ActionsField from Companion * Fixes * Localization fix * BaseDataItem hasActions false --------- Co-authored-by: WBHarry <williambjrklund@gmail.com>
9 lines
No EOL
252 B
JavaScript
9 lines
No EOL
252 B
JavaScript
import { DHDamageData } from "./damageField.mjs";
|
|
|
|
const fields = foundry.data.fields;
|
|
|
|
export default class HealingField extends fields.EmbeddedDataField {
|
|
constructor(options, context = {}) {
|
|
super(DHDamageData, options, context);
|
|
}
|
|
} |