Annual profection
${data.targetDate ? html`For ${data.targetDate}` : nothing}
${data.age}
Age
activates
House ${data.profectedHouse}
${signGlyph ? html`${signGlyph}` : nothing}${data.profectedSign}
Lord of the year
${lordGlyph ? html`${lordGlyph} ` : nothing}${data.lordOfYear}
${
data.lordNatalPosition
? html`natal ${lordNatalGlyph ? html`${lordNatalGlyph} ` : nothing}${data.lordNatalPosition.sign} ยท house ${data.lordNatalPosition.house}`
: nothing
}
${data.interpretation ? html`
${data.interpretation}
` : nothing}
`;
}
}
declare global {
interface HTMLElementTagNameMap {
'roxy-profection-card': RoxyProfectionCard;
}
}