mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-04-21 23:13:39 +02:00
Merge 7af3f07a26 into fa04c9920f
This commit is contained in:
commit
be6c10395a
14 changed files with 260 additions and 16 deletions
|
|
@ -682,6 +682,9 @@
|
||||||
"title": "{actor} Level Up",
|
"title": "{actor} Level Up",
|
||||||
"viewModeTitle": "{actor} Level Up (View Mode)"
|
"viewModeTitle": "{actor} Level Up (View Mode)"
|
||||||
},
|
},
|
||||||
|
"LevelupOptionsDialog": {
|
||||||
|
"title": "Levelup Options: {name}"
|
||||||
|
},
|
||||||
"MulticlassChoice": {
|
"MulticlassChoice": {
|
||||||
"title": "Multiclassing - {actor}",
|
"title": "Multiclassing - {actor}",
|
||||||
"explanation": "You are adding {class} as your multiclass",
|
"explanation": "You are adding {class} as your multiclass",
|
||||||
|
|
@ -1263,6 +1266,10 @@
|
||||||
"diceValue": "Dice Value",
|
"diceValue": "Dice Value",
|
||||||
"die": "Die"
|
"die": "Die"
|
||||||
},
|
},
|
||||||
|
"LevelupData": {
|
||||||
|
"checkboxSelections": "Checkboxes",
|
||||||
|
"minCost": "Cost Per Checkbox"
|
||||||
|
},
|
||||||
"Range": {
|
"Range": {
|
||||||
"self": {
|
"self": {
|
||||||
"name": "Self",
|
"name": "Self",
|
||||||
|
|
@ -3257,6 +3264,7 @@
|
||||||
"rightClickExtend": "Right-Click to extend",
|
"rightClickExtend": "Right-Click to extend",
|
||||||
"companionPartnerLevelBlock": "The companion needs an assigned partner to level up.",
|
"companionPartnerLevelBlock": "The companion needs an assigned partner to level up.",
|
||||||
"configureAttribution": "Configure Attribution",
|
"configureAttribution": "Configure Attribution",
|
||||||
|
"configureLevelupOptions": "Configure Levelup Options",
|
||||||
"deleteItem": "Delete Item",
|
"deleteItem": "Delete Item",
|
||||||
"immune": "Immune",
|
"immune": "Immune",
|
||||||
"middleClick": "[Middle Click] Keep tooltip view",
|
"middleClick": "[Middle Click] Keep tooltip view",
|
||||||
|
|
|
||||||
|
|
@ -17,3 +17,4 @@ export { default as TagTeamDialog } from './tagTeamDialog.mjs';
|
||||||
export { default as GroupRollDialog } from './groupRollDialog.mjs';
|
export { default as GroupRollDialog } from './groupRollDialog.mjs';
|
||||||
export { default as RiskItAllDialog } from './riskItAllDialog.mjs';
|
export { default as RiskItAllDialog } from './riskItAllDialog.mjs';
|
||||||
export { default as CompendiumBrowserSettingsDialog } from './CompendiumBrowserSettings.mjs';
|
export { default as CompendiumBrowserSettingsDialog } from './CompendiumBrowserSettings.mjs';
|
||||||
|
export { default as LevelupOptionsDialog } from './levelupOptionsDialog.mjs';
|
||||||
92
module/applications/dialogs/levelupOptionsDialog.mjs
Normal file
92
module/applications/dialogs/levelupOptionsDialog.mjs
Normal file
|
|
@ -0,0 +1,92 @@
|
||||||
|
import { LevelOptionType } from "../../data/levelTier.mjs";
|
||||||
|
|
||||||
|
const { HandlebarsApplicationMixin, ApplicationV2 } = foundry.applications.api;
|
||||||
|
|
||||||
|
export default class LevelupOptionsDialog extends HandlebarsApplicationMixin(ApplicationV2) {
|
||||||
|
constructor(item) {
|
||||||
|
super({});
|
||||||
|
|
||||||
|
this.item = item;
|
||||||
|
this.selectedOption = null;
|
||||||
|
}
|
||||||
|
|
||||||
|
get title() {
|
||||||
|
return game.i18n.format('DAGGERHEART.APPLICATIONS.LevelupOptionsDialog.title', { name: this.item.name });
|
||||||
|
}
|
||||||
|
|
||||||
|
static DEFAULT_OPTIONS = {
|
||||||
|
tag: 'form',
|
||||||
|
classes: ['daggerheart', 'dh-style', 'dialog', 'views', 'levelup-options-dialog'],
|
||||||
|
position: { width: 480, height: 'auto' },
|
||||||
|
window: { icon: 'fa-solid fa-angles-up fa-fw' },
|
||||||
|
actions: {
|
||||||
|
addTierOption: LevelupOptionsDialog.#addTierOption,
|
||||||
|
removeTierOption: LevelupOptionsDialog.#removeTierOption,
|
||||||
|
},
|
||||||
|
form: { handler: this.updateData, submitOnChange: true, closeOnSubmit: false }
|
||||||
|
};
|
||||||
|
|
||||||
|
static PARTS = {
|
||||||
|
header: { template: 'systems/daggerheart/templates/dialogs/levelupOptionsDialog/header.hbs' },
|
||||||
|
tabs: { template: 'systems/daggerheart/templates/sheets/global/tabs/tab-navigation.hbs' },
|
||||||
|
tiers: { template: 'systems/daggerheart/templates/dialogs/levelupOptionsDialog/tiers.hbs' },
|
||||||
|
};
|
||||||
|
|
||||||
|
/** @inheritdoc */
|
||||||
|
static TABS = {
|
||||||
|
primary: {
|
||||||
|
tabs: [
|
||||||
|
{ id: 'tier2', label: 'DAGGERHEART.GENERAL.Tiers.2', tier: 2 },
|
||||||
|
{ id: 'tier3', label: 'DAGGERHEART.GENERAL.Tiers.3', tier: 3 },
|
||||||
|
{ id: 'tier4', label: 'DAGGERHEART.GENERAL.Tiers.4', tier: 4 }
|
||||||
|
],
|
||||||
|
initial: 'tier2',
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
_attachPartListeners(partId, htmlElement, options) {
|
||||||
|
super._attachPartListeners(partId, htmlElement, options);
|
||||||
|
|
||||||
|
for(const element of htmlElement.querySelectorAll('.option-type-select'))
|
||||||
|
element.addEventListener('change', this.updateSelectedOption.bind(this));
|
||||||
|
}
|
||||||
|
|
||||||
|
async _prepareContext(_options) {
|
||||||
|
const context = await super._prepareContext(_options);
|
||||||
|
context.item = this.item;
|
||||||
|
context.fields = this.item.system.schema.fields.levelupOptionTiers.element.element.fields;
|
||||||
|
context.optionTypes = LevelOptionType;
|
||||||
|
context.selectedOption = this.selectedOption;
|
||||||
|
|
||||||
|
return context;
|
||||||
|
}
|
||||||
|
|
||||||
|
static async updateData(_event, _element, formData) {
|
||||||
|
const data = foundry.utils.expandObject(formData.object);
|
||||||
|
|
||||||
|
this.render();
|
||||||
|
}
|
||||||
|
|
||||||
|
updateSelectedOption(event) {
|
||||||
|
this.selectedOption = event.target.value;
|
||||||
|
this.render();
|
||||||
|
}
|
||||||
|
|
||||||
|
static async #addTierOption(_event, button) {
|
||||||
|
const { tier } = button.dataset;
|
||||||
|
await this.item.update({ [`system.levelupOptionTiers.${tier}.${foundry.utils.randomID()}`]: {
|
||||||
|
label: LevelOptionType[this.selectedOption].label,
|
||||||
|
type: this.selectedOption
|
||||||
|
}});
|
||||||
|
|
||||||
|
this.selectedOption = null;
|
||||||
|
this.render();
|
||||||
|
}
|
||||||
|
|
||||||
|
static async #removeTierOption(_event, button) {
|
||||||
|
const { tier, key } = button.dataset;
|
||||||
|
|
||||||
|
await this.item.update({ [`system.levelupOptionTiers.${tier}.${key}`]: _del });
|
||||||
|
this.render();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -6,9 +6,7 @@ export default class DhCharacterLevelUp extends LevelUpBase {
|
||||||
constructor(actor) {
|
constructor(actor) {
|
||||||
super(actor);
|
super(actor);
|
||||||
|
|
||||||
this.levelTiers = this.addBonusChoices(
|
this.levelTiers = this.addBonusChoices(actor.system.levelupTiers);
|
||||||
game.settings.get(CONFIG.DH.id, CONFIG.DH.SETTINGS.gameSettings.LevelTiers)
|
|
||||||
);
|
|
||||||
const playerLevelupData = actor.system.levelData;
|
const playerLevelupData = actor.system.levelData;
|
||||||
this.levelup = new DhLevelup(DhLevelup.initializeData(this.levelTiers, playerLevelupData));
|
this.levelup = new DhLevelup(DhLevelup.initializeData(this.levelTiers, playerLevelupData));
|
||||||
}
|
}
|
||||||
|
|
@ -366,7 +364,7 @@ export default class DhCharacterLevelUp extends LevelUpBase {
|
||||||
advancement.experience?.flatMap(x => x.data.map(data => ({ name: data, modifier: x.value }))) ??
|
advancement.experience?.flatMap(x => x.data.map(data => ({ name: data, modifier: x.value }))) ??
|
||||||
[],
|
[],
|
||||||
multiclass: advancement.multiclass,
|
multiclass: advancement.multiclass,
|
||||||
subclass: advancement.subclass
|
subclass: advancement.subclass,
|
||||||
};
|
};
|
||||||
|
|
||||||
context.advancements.statistics.proficiency.shown =
|
context.advancements.statistics.proficiency.shown =
|
||||||
|
|
|
||||||
|
|
@ -99,7 +99,8 @@ export default function DHApplicationMixin(Base) {
|
||||||
toggleExtended: DHSheetV2.#toggleExtended,
|
toggleExtended: DHSheetV2.#toggleExtended,
|
||||||
addNewItem: DHSheetV2.#addNewItem,
|
addNewItem: DHSheetV2.#addNewItem,
|
||||||
browseItem: DHSheetV2.#browseItem,
|
browseItem: DHSheetV2.#browseItem,
|
||||||
editAttribution: DHSheetV2.#editAttribution
|
editAttribution: DHSheetV2.#editAttribution,
|
||||||
|
configureLevelUpOptions: DHSheetV2.#configureLevelUpOptions,
|
||||||
},
|
},
|
||||||
contextMenus: [
|
contextMenus: [
|
||||||
{
|
{
|
||||||
|
|
@ -119,6 +120,16 @@ export default function DHApplicationMixin(Base) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
window: {
|
||||||
|
controls: [
|
||||||
|
{
|
||||||
|
icon: 'fa-solid fa-angles-up fa-fw',
|
||||||
|
label: 'DAGGERHEART.UI.Tooltip.configureLevelupOptions',
|
||||||
|
action: 'configureLevelUpOptions',
|
||||||
|
visible: DHSheetV2.#hasLevelUpOptions,
|
||||||
|
}
|
||||||
|
],
|
||||||
|
},
|
||||||
dragDrop: [{ dragSelector: '.inventory-item[data-type="effect"]', dropSelector: null }],
|
dragDrop: [{ dragSelector: '.inventory-item[data-type="effect"]', dropSelector: null }],
|
||||||
tagifyConfigs: []
|
tagifyConfigs: []
|
||||||
};
|
};
|
||||||
|
|
@ -142,6 +153,10 @@ export default function DHApplicationMixin(Base) {
|
||||||
return frame;
|
return frame;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static #hasLevelUpOptions() {
|
||||||
|
return this.document.system.metadata.hasLevelUpOptions;
|
||||||
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Refresh the custom parts of the application frame
|
* Refresh the custom parts of the application frame
|
||||||
*/
|
*/
|
||||||
|
|
@ -708,6 +723,10 @@ export default function DHApplicationMixin(Base) {
|
||||||
new game.system.api.applications.dialogs.AttributionDialog(this.document).render({ force: true });
|
new game.system.api.applications.dialogs.AttributionDialog(this.document).render({ force: true });
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static async #configureLevelUpOptions() {
|
||||||
|
new game.system.api.applications.dialogs.LevelupOptionsDialog(this.document).render({ force: true });
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an embedded document.
|
* Create an embedded document.
|
||||||
* @type {ApplicationClickAction}
|
* @type {ApplicationClickAction}
|
||||||
|
|
|
||||||
|
|
@ -303,6 +303,12 @@ export default class DhCharacter extends DhCreature {
|
||||||
initial: null,
|
initial: null,
|
||||||
label: 'DAGGERHEART.ACTORS.Character.defaultDisadvantageDice'
|
label: 'DAGGERHEART.ACTORS.Character.defaultDisadvantageDice'
|
||||||
}),
|
}),
|
||||||
|
}),
|
||||||
|
comboDieIndex: new fields.NumberField({
|
||||||
|
integer: true,
|
||||||
|
min: 0,
|
||||||
|
max: 5,
|
||||||
|
initial: 0,
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
};
|
};
|
||||||
|
|
@ -447,6 +453,19 @@ export default class DhCharacter extends DhCreature {
|
||||||
return attack;
|
return attack;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
get levelupTiers() {
|
||||||
|
const tierData = game.settings.get(CONFIG.DH.id, CONFIG.DH.SETTINGS.gameSettings.LevelTiers);
|
||||||
|
for (const tierKey of Object.keys(this.class?.value?.system.levelupOptionTiers ?? {})) {
|
||||||
|
const tier = this.class.value.system.levelupOptionTiers[tierKey];
|
||||||
|
for (const optionKey of Object.keys(tier)) {
|
||||||
|
const option = tier[optionKey];
|
||||||
|
tierData.tiers[tierKey].options[optionKey] = option;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return tierData;
|
||||||
|
}
|
||||||
|
|
||||||
/* All items are valid on characters */
|
/* All items are valid on characters */
|
||||||
isItemValid() {
|
isItemValid() {
|
||||||
return true;
|
return true;
|
||||||
|
|
@ -745,6 +764,9 @@ export default class DhCharacter extends DhCreature {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
break;
|
break;
|
||||||
|
case 'comboStrikes':
|
||||||
|
this.rules.comboDieIndex += 1;
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -3,6 +3,7 @@ import ForeignDocumentUUIDField from '../fields/foreignDocumentUUIDField.mjs';
|
||||||
import ForeignDocumentUUIDArrayField from '../fields/foreignDocumentUUIDArrayField.mjs';
|
import ForeignDocumentUUIDArrayField from '../fields/foreignDocumentUUIDArrayField.mjs';
|
||||||
import ItemLinkFields from '../fields/itemLinkFields.mjs';
|
import ItemLinkFields from '../fields/itemLinkFields.mjs';
|
||||||
import { addLinkedItemsDiff, getFeaturesHTMLData, updateLinkedItemApps } from '../../helpers/utils.mjs';
|
import { addLinkedItemsDiff, getFeaturesHTMLData, updateLinkedItemApps } from '../../helpers/utils.mjs';
|
||||||
|
import { DhLevelOption } from '../levelTier.mjs';
|
||||||
|
|
||||||
export default class DHClass extends BaseDataItem {
|
export default class DHClass extends BaseDataItem {
|
||||||
/** @inheritDoc */
|
/** @inheritDoc */
|
||||||
|
|
@ -10,7 +11,8 @@ export default class DHClass extends BaseDataItem {
|
||||||
return foundry.utils.mergeObject(super.metadata, {
|
return foundry.utils.mergeObject(super.metadata, {
|
||||||
label: 'TYPES.Item.class',
|
label: 'TYPES.Item.class',
|
||||||
type: 'class',
|
type: 'class',
|
||||||
hasDescription: true
|
hasDescription: true,
|
||||||
|
hasLevelUpOptions: true,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -51,7 +53,10 @@ export default class DHClass extends BaseDataItem {
|
||||||
}),
|
}),
|
||||||
backgroundQuestions: new fields.ArrayField(new fields.StringField(), { initial: ['', '', ''] }),
|
backgroundQuestions: new fields.ArrayField(new fields.StringField(), { initial: ['', '', ''] }),
|
||||||
connections: new fields.ArrayField(new fields.StringField(), { initial: ['', '', ''] }),
|
connections: new fields.ArrayField(new fields.StringField(), { initial: ['', '', ''] }),
|
||||||
isMulticlass: new fields.BooleanField({ initial: false })
|
isMulticlass: new fields.BooleanField({ initial: false }),
|
||||||
|
levelupOptionTiers: new fields.TypedObjectField(new fields.TypedObjectField(new fields.EmbeddedDataField(DhLevelOption)), {
|
||||||
|
initial: { 2: {}, 3: {}, 4: {} }
|
||||||
|
}),
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -43,17 +43,40 @@ class DhLevelTier extends foundry.abstract.DataModel {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
class DhLevelOption extends foundry.abstract.DataModel {
|
export class DhLevelOption extends foundry.abstract.DataModel {
|
||||||
static defineSchema() {
|
static defineSchema() {
|
||||||
const fields = foundry.data.fields;
|
const fields = foundry.data.fields;
|
||||||
|
|
||||||
return {
|
return {
|
||||||
label: new fields.StringField({ required: true }),
|
label: new fields.StringField({
|
||||||
checkboxSelections: new fields.NumberField({ required: true, integer: true, initial: 1 }),
|
required: true,
|
||||||
minCost: new fields.NumberField({ required: true, integer: true, initial: 1 }),
|
label: 'DAGGERHEART.GENERAL.label'
|
||||||
type: new fields.StringField({ required: true, choices: LevelOptionType }),
|
}),
|
||||||
value: new fields.NumberField({ integer: true }),
|
checkboxSelections: new fields.NumberField({
|
||||||
amount: new fields.NumberField({ integer: true })
|
required: true,
|
||||||
|
integer: true,
|
||||||
|
initial: 1,
|
||||||
|
label: 'DAGGERHEART.CONFIG.LevelupData.checkboxSelections'
|
||||||
|
}),
|
||||||
|
minCost: new fields.NumberField({
|
||||||
|
required: true,
|
||||||
|
integer: true,
|
||||||
|
initial: 1,
|
||||||
|
label: 'DAGGERHEART.CONFIG.LevelupData.minCost'
|
||||||
|
}),
|
||||||
|
type: new fields.StringField({
|
||||||
|
required: true,
|
||||||
|
choices: LevelOptionType,
|
||||||
|
label: 'DAGGERHEART.GENERAL.type'
|
||||||
|
}),
|
||||||
|
value: new fields.NumberField({
|
||||||
|
integer: true,
|
||||||
|
label: 'DAGGERHEART.GENERAL.value'
|
||||||
|
}),
|
||||||
|
amount: new fields.NumberField({
|
||||||
|
integer: true,
|
||||||
|
label: 'DAGGERHEART.GENERAL.amount'
|
||||||
|
})
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -113,6 +136,13 @@ export const CompanionLevelOptionType = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export const ClassLevelOptionTypes = {
|
||||||
|
comboStrikes: {
|
||||||
|
id: 'comboStrikes',
|
||||||
|
label: 'Increase your Combo Die size',
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
export const LevelOptionType = {
|
export const LevelOptionType = {
|
||||||
trait: {
|
trait: {
|
||||||
id: 'trait',
|
id: 'trait',
|
||||||
|
|
@ -162,6 +192,7 @@ export const LevelOptionType = {
|
||||||
id: 'multiclass',
|
id: 'multiclass',
|
||||||
label: 'Multiclass'
|
label: 'Multiclass'
|
||||||
},
|
},
|
||||||
|
...ClassLevelOptionTypes,
|
||||||
...CompanionLevelOptionType
|
...CompanionLevelOptionType
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -51,6 +51,7 @@ export const preloadHandlebarsTemplates = async function () {
|
||||||
'systems/daggerheart/templates/ui/itemBrowser/itemContainer.hbs',
|
'systems/daggerheart/templates/ui/itemBrowser/itemContainer.hbs',
|
||||||
'systems/daggerheart/templates/scene/dh-config.hbs',
|
'systems/daggerheart/templates/scene/dh-config.hbs',
|
||||||
'systems/daggerheart/templates/settings/appearance-settings/diceSoNiceTab.hbs',
|
'systems/daggerheart/templates/settings/appearance-settings/diceSoNiceTab.hbs',
|
||||||
'systems/daggerheart/templates/sheets/activeEffect/typeChanges/armorChange.hbs'
|
'systems/daggerheart/templates/sheets/activeEffect/typeChanges/armorChange.hbs',
|
||||||
|
'systems/daggerheart/templates/dialogs/levelupOptionsDialog/parts/tier.hbs'
|
||||||
]);
|
]);
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -51,3 +51,4 @@
|
||||||
@import './character-reset/sheet.less';
|
@import './character-reset/sheet.less';
|
||||||
|
|
||||||
@import './compendiumBrowserPackDialog/sheet.less';
|
@import './compendiumBrowserPackDialog/sheet.less';
|
||||||
|
@import './levelup-options-dialog/sheet.less';
|
||||||
32
styles/less/dialog/levelup-options-dialog/sheet.less
Normal file
32
styles/less/dialog/levelup-options-dialog/sheet.less
Normal file
|
|
@ -0,0 +1,32 @@
|
||||||
|
.daggerheart.dh-style.dialog.levelup-options-dialog {
|
||||||
|
.dialog-title {
|
||||||
|
font-size: var(--font-size-32);
|
||||||
|
color: light-dark(@dark-blue, @golden);
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tier-tools {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 8px;
|
||||||
|
margin-bottom: 8px;
|
||||||
|
|
||||||
|
button {
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.tier-container {
|
||||||
|
padding: 0 4px;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 8px;
|
||||||
|
|
||||||
|
.tier-title {
|
||||||
|
font-size: var(--font-size-18);
|
||||||
|
color: light-dark(@dark-blue, @golden);
|
||||||
|
margin-left: auto;
|
||||||
|
margin-right: auto;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
3
templates/dialogs/levelupOptionsDialog/header.hbs
Normal file
3
templates/dialogs/levelupOptionsDialog/header.hbs
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
<div>
|
||||||
|
<div class="dialog-title">{{localize "Tiers"}}</div>
|
||||||
|
</div>
|
||||||
26
templates/dialogs/levelupOptionsDialog/parts/tier.hbs
Normal file
26
templates/dialogs/levelupOptionsDialog/parts/tier.hbs
Normal file
|
|
@ -0,0 +1,26 @@
|
||||||
|
<section class="tab scrollable {{tab.cssClass}} {{tab.id}}" data-group="{{tab.group}}" data-tab="{{tab.id}}">
|
||||||
|
<div class="tier-tools">
|
||||||
|
<select class="option-type-select">
|
||||||
|
{{selectOptions optionTypes selected=selectedOption blank=""}}
|
||||||
|
</select>
|
||||||
|
<button data-action="addTierOption" data-tier="{{tab.tier}}" {{#unless selectedOption}}disabled{{/unless}}>{{localize "Add Levelup Option"}}</button>
|
||||||
|
</div>
|
||||||
|
{{#with (lookup item.system.levelupOptionTiers tab.tier)}}
|
||||||
|
{{#unless (empty this)}}
|
||||||
|
{{#each this as |option key|}}
|
||||||
|
<fieldset>
|
||||||
|
<legend><a data-action="removeTierOption" data-tier="{{../../tab.tier}}" data-key="{{key}}"><i class="fa-solid fa-trash"></i></a></legend>
|
||||||
|
|
||||||
|
<div class="tier-container">
|
||||||
|
{{formGroup @root.fields.label value=option.label name=(concat "system.levelOptionTiers." ../../tab.tier "." key ".label") localize=true }}
|
||||||
|
{{formGroup @root.fields.type value=option.type name=(concat "system.levelOptionTiers." ../../tab.tier "." key ".type") localize=true }}
|
||||||
|
<div class="two-columns even">
|
||||||
|
{{formGroup @root.fields.checkboxSelections value=option.checkboxSelections name=(concat "system.levelOptionTiers." ../../tab.tier "." key ".checkboxSelections") localize=true }}
|
||||||
|
{{formGroup @root.fields.minCost value=option.minCost name=(concat "system.levelOptionTiers." ../../tab.tier "." key ".minCost") localize=true }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</fieldset>
|
||||||
|
{{/each}}
|
||||||
|
{{/unless}}
|
||||||
|
{{/with}}
|
||||||
|
</section>
|
||||||
5
templates/dialogs/levelupOptionsDialog/tiers.hbs
Normal file
5
templates/dialogs/levelupOptionsDialog/tiers.hbs
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
<div>
|
||||||
|
{{> "systems/daggerheart/templates/dialogs/levelupOptionsDialog/parts/tier.hbs" tab=tabs.tier2}}
|
||||||
|
{{> "systems/daggerheart/templates/dialogs/levelupOptionsDialog/parts/tier.hbs" tab=tabs.tier3}}
|
||||||
|
{{> "systems/daggerheart/templates/dialogs/levelupOptionsDialog/parts/tier.hbs" tab=tabs.tier4}}
|
||||||
|
<div>
|
||||||
Loading…
Add table
Add a link
Reference in a new issue