{#each chars as [id, char] (id)}
{#if constellation[id]}
- C{Math.max(0, (constellation[id].default + constellation[id].wish + constellation[id].manual) - 1)}
+ C{Math.max(0, constellation[id].default + constellation[id].wish + constellation[id].manual - 1)}
{/if}
@@ -240,6 +397,14 @@
sort('element')} sort={sortBy === 'element'} order={sortOrder} align="center">
{$t('characters.element')}
+ sort('constellation')}
+ sort={sortBy === 'constellation'}
+ order={sortOrder}
+ align="center"
+ >
+ {$t('characters.const')}
+
sort('rarity')} sort={sortBy === 'rarity'} order={sortOrder} align="center">
{$t('characters.rarity')}
@@ -266,6 +431,11 @@
|
+
+ C{constellation[id]
+ ? Math.max(0, constellation[id].default + constellation[id].wish + constellation[id].manual - 1)
+ : 0}
+ |
|
@@ -319,4 +489,5 @@
padding-top: 0.85rem;
padding-bottom: 0.85rem;
}
+