Custom Achievements let you define your own badges that fire based on rules. Each rule is a small set of conditions on either a single event, the end-of-encounter stats, or the running career stats. Rules share the same tiers as the built-in achievements (bronze, silver, gold, platinum).

{{#each rules}}
{{#if (eq this.trigger.type "event")}} {{else}} {{/if}}

Conditions (all must match)

{{#each this.trigger.conditions}}
{{/each}}

Rewards (granted when the rule fires)

{{#each this.rewards}}
{{#if (eq this.type "item")}} {{else}} {{/if}}
{{/each}}
{{/each}}