mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-12 19:51:08 +01:00
* style items and action chat messages * enhance death move chat message and fix border bottom from title actions * fix padding bottom * Added basic chat-message.hbs * . * style remaing chat messages * style action messages * remove console log * add colapsable descriptions in chat messages * inital style for message rolls * fix deal damage button style * add new partchments * Roll Chat message new design template * j * l * p * y * fix _getTags type error and add a alias label for non base messages * Fix damage & healing roll * Fix conflict * Deleting old templates * Good for now * fix labels in duality rolls messages and style experience and effects messages --------- Co-authored-by: WBHarry <williambjrklund@gmail.com> Co-authored-by: Dapoolp <elcatnet@gmail.com>
74 lines
2.4 KiB
JavaScript
74 lines
2.4 KiB
JavaScript
import { itemAbleRollParse } from './utils.mjs';
|
|
|
|
export default class RegisterHandlebarsHelpers {
|
|
static registerHelpers() {
|
|
Handlebars.registerHelper({
|
|
add: this.add,
|
|
includes: this.includes,
|
|
times: this.times,
|
|
damageFormula: this.damageFormula,
|
|
formulaValue: this.formulaValue,
|
|
damageSymbols: this.damageSymbols,
|
|
rollParsed: this.rollParsed,
|
|
hasProperty: foundry.utils.hasProperty,
|
|
setVar: this.setVar,
|
|
empty: this.empty
|
|
});
|
|
}
|
|
static add(a, b) {
|
|
const aNum = Number.parseInt(a);
|
|
const bNum = Number.parseInt(b);
|
|
return (Number.isNaN(aNum) ? 0 : aNum) + (Number.isNaN(bNum) ? 0 : bNum);
|
|
}
|
|
|
|
static includes(list, item) {
|
|
return list.includes(item);
|
|
}
|
|
|
|
static times(nr, block) {
|
|
var accum = '';
|
|
for (var i = 0; i < nr; ++i) accum += block.fn(i);
|
|
return accum;
|
|
}
|
|
|
|
static damageFormula(attack, actor) {
|
|
const traitTotal = actor.system.traits?.[attack.roll.trait]?.value;
|
|
const instances = [
|
|
attack.damage.parts.map(x => Roll.replaceFormulaData(x.value.getFormula(), actor)).join(' + '),
|
|
traitTotal
|
|
].filter(x => x);
|
|
|
|
return instances.join(traitTotal > 0 ? ' + ' : ' - ');
|
|
}
|
|
|
|
static formulaValue(formula, item) {
|
|
if (isNaN(formula)) {
|
|
const data = item.getRollData.bind(item)(),
|
|
roll = new Roll(Roll.replaceFormulaData(formula, data)).evaluateSync();
|
|
formula = roll.total;
|
|
}
|
|
return formula;
|
|
}
|
|
|
|
static damageSymbols(damageParts) {
|
|
const symbols = [...new Set(damageParts.reduce((a, c) => a.concat([...c.type]), []))].map(
|
|
p => CONFIG.DH.GENERAL.damageTypes[p].icon
|
|
);
|
|
return new Handlebars.SafeString(Array.from(symbols).map(symbol => `<i class="fa-solid ${symbol}"></i>`));
|
|
}
|
|
|
|
static rollParsed(value, actor, item, numerical) {
|
|
const isNumerical = typeof numerical === 'boolean' ? numerical : false;
|
|
const result = itemAbleRollParse(value, actor.getRollData(), item);
|
|
return isNumerical ? (!result ? 0 : Number(result)) : result;
|
|
}
|
|
|
|
static setVar(name, value, context) {
|
|
this[name] = value;
|
|
}
|
|
|
|
static empty(object) {
|
|
if(!(typeof object === 'object')) return true;
|
|
return Object.keys(object).length === 0;
|
|
}
|
|
}
|