diff --git a/src/routes/characters/[id].svelte b/src/routes/characters/[id].svelte index bf682f0b..05d7a249 100644 --- a/src/routes/characters/[id].svelte +++ b/src/routes/characters/[id].svelte @@ -443,6 +443,25 @@

{@html weapons[weapon.id].skill.description}

+
+
+

ATK

+

{Math.round(weapons[weapon.id].atk[96])}

+
+ {#if weapons[weapon.id].secondary.stats} +
+

+ {$t(`weapon.${weapons[weapon.id].secondary.name}`)} +

+

+ {Math.round( + weapons[weapon.id].secondary.stats[96] * + (weapons[weapon.id].secondary.name === 'em' ? 1 : 100), + )}{weapons[weapon.id].secondary.name === 'em' ? '' : '%'} +

+
+ {/if} +