Checking it out. May not work. Not a Telegram.

This commit is contained in:
Nikhil Nagarajan 2025-12-10 15:57:46 -05:00
parent 09141053c9
commit e44823b6dd
6 changed files with 64 additions and 1 deletions

View file

@ -489,6 +489,18 @@ export const orderedArmorFeatures = () => {
return Object.values(all).sort((a, b) => game.i18n.localize(a.label).localeCompare(game.i18n.localize(b.label)));
};
export const armorPriorityKeys = {
armor: {label: 'DAGGERHEART.CONFIG.ArmorKeys.armor'},
weapon: {label: 'DAGGERHEART.CONFIG.ArmorKeys.weapon'},
consumable: {label: 'DAGGERHEART.CONFIG.ArmorKeys.consumable'},
loot: {label: 'DAGGERHEART.CONFIG.ArmorKeys.loot'},
features: {label: 'DAGGERHEART.CONFIG.ArmorKeys.features'}
}
export const allArmorKeys = () => {
return {...armorPriorityKeys};
}
export const weaponFeatures = {
barrier: {
label: 'DAGGERHEART.CONFIG.WeaponFeature.barrier.name',