mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-12 03:31:07 +01:00
17 lines
No EOL
507 B
JavaScript
17 lines
No EOL
507 B
JavaScript
import { pseudoDocuments } from "../data/_module.mjs";
|
|
import { pseudoDocumentSheet } from "../applications/_module.mjs";
|
|
|
|
//CONFIG.daggerheart.pseudoDocuments
|
|
export default {
|
|
sheetClass: pseudoDocumentSheet.PseudoDocumentSheet,
|
|
feature: {
|
|
label: "DAGGERHEART.Feature.Label",
|
|
documentClass: pseudoDocuments.feature.BaseFeatureData,
|
|
types: {
|
|
weapon: {
|
|
label: "DAGGERHEART.Feature.Weapon.Label",
|
|
documentClass: pseudoDocuments.feature.WeaponFeature,
|
|
}
|
|
}
|
|
}
|
|
}; |