mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-12 03:31:07 +01:00
* Removed action fields on Adversary/Environment in favor of using Feature Items * Added drag/drop for features onto adversary/environment settings * Added Drag of features from Adversary/Environment settings to anywhere in Foundry * Updated all item types except Class/Subclass * Added for Class/Subclass * Items now copy over their features to Character * Corrected back to actions for right items * Fixed adversary/environment features display * PR Fixes
27 lines
1.8 KiB
JavaScript
27 lines
1.8 KiB
JavaScript
export const preloadHandlebarsTemplates = async function () {
|
|
return foundry.applications.handlebars.loadTemplates([
|
|
'systems/daggerheart/templates/sheets/global/tabs/tab-navigation.hbs',
|
|
'systems/daggerheart/templates/sheets/global/partials/inventory-item.hbs',
|
|
'systems/daggerheart/templates/sheets/global/partials/action-item.hbs',
|
|
'systems/daggerheart/templates/sheets/global/partials/domain-card-item.hbs',
|
|
'systems/daggerheart/templates/sheets/global/partials/inventory-fieldset-items.hbs',
|
|
'systems/daggerheart/templates/components/card-preview.hbs',
|
|
'systems/daggerheart/templates/levelup/parts/selectable-card-preview.hbs',
|
|
'systems/daggerheart/templates/sheets/global/partials/feature-section-item.hbs',
|
|
'systems/daggerheart/templates/ui/combatTracker/combatTrackerSection.hbs',
|
|
'systems/daggerheart/templates/actionTypes/damage.hbs',
|
|
'systems/daggerheart/templates/actionTypes/healing.hbs',
|
|
'systems/daggerheart/templates/actionTypes/resource.hbs',
|
|
'systems/daggerheart/templates/actionTypes/uuid.hbs',
|
|
'systems/daggerheart/templates/actionTypes/uses.hbs',
|
|
'systems/daggerheart/templates/actionTypes/roll.hbs',
|
|
'systems/daggerheart/templates/actionTypes/save.hbs',
|
|
'systems/daggerheart/templates/actionTypes/cost.hbs',
|
|
'systems/daggerheart/templates/actionTypes/range-target.hbs',
|
|
'systems/daggerheart/templates/actionTypes/effect.hbs',
|
|
'systems/daggerheart/templates/actionTypes/beastform.hbs',
|
|
'systems/daggerheart/templates/settings/components/settings-item-line.hbs',
|
|
'systems/daggerheart/templates/ui/chat/parts/damage-chat.hbs',
|
|
'systems/daggerheart/templates/ui/chat/parts/target-chat.hbs'
|
|
]);
|
|
};
|