mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-12 03:31:07 +01:00
* Small random fixes * Added use of ItemLinkFields * Multiclass levelup fixes * Fixed our onCreate methods unintentionally being run on all clients * Remade apps handling * Added for all class items and subclass * Restored foreignDocumentUuidField * Improved * PR fxies * Fixed tooltip enrichment * . * Reverted silly change
9 lines
253 B
JavaScript
9 lines
253 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);
|
|
}
|
|
}
|