diff --git a/src/routes/wish/_counter.svelte b/src/routes/wish/_counter.svelte index c0518800..8d9801b8 100644 --- a/src/routes/wish/_counter.svelte +++ b/src/routes/wish/_counter.svelte @@ -16,6 +16,8 @@ import dayjs from 'dayjs'; import { weaponList } from '../../data/weaponList'; + let numberFormat = Intl.NumberFormat(); + export let id = ''; export let name = ''; export let legendaryPity = 90; @@ -249,7 +251,13 @@ isEdit ? 'bg-item flex-col py-2' : 'bg-background flex-row items-center justify-center mb-2 p-4' } rounded-xl flex`} > - Lifetime Pulls + + Lifetime Pulls
+ + primogem + {numberFormat.format(total * 160)} + +
{#if isEdit} {:else}{total}{/if} diff --git a/src/routes/wish/_summary.svelte b/src/routes/wish/_summary.svelte index c1705e4a..6c6860c5 100644 --- a/src/routes/wish/_summary.svelte +++ b/src/routes/wish/_summary.svelte @@ -1,13 +1,13 @@