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