${
vargottama && vargottama.length > 0
? html`
${this.t('Vargottama')}:
${vargottama.map(
(planet) =>
html`
${planetGlyph(planet) ?? ''} ${planet}
`,
)}
`
: nothing
}
`;
}
}
declare global {
interface HTMLElementTagNameMap {
'roxy-divisional-chart': RoxyDivisionalChart;
}
}