From e07815a60596645cd39a24826c30c09951d822d9 Mon Sep 17 00:00:00 2001
From: Made Baruna
+ {$t('wish.tally.character')}
+ {$t('wish.tally.summoned')}
+
+ {numberFormat.format(featuredValues[0].percentage)}% {$t('wish.tally.fromFiveStar')}
+
+ {$t('wish.tally.weapon')}
+ {$t('wish.tally.summoned')}
+
+ {numberFormat.format(featuredValues[1].percentage)}% {$t('wish.tally.fromFiveStar')}
+
+ {type === 'character' ? characters[feat].name : weaponList[feat].name}
+ {$t('wish.tally.summoned')}
+
+ {#if id >= 300011 && id < 400000 && i === 0}
+ {numberFormat.format(
+ ((featuredValues[i].total - featuredValues[i].guaranteed) /
+ (data.total.legendary - featuredValues[i].guaranteed)) *
+ 100,
+ )}%
+ {$t('wish.tally.wonFiftyFifty')}
+ {:else if id > 300011 && id < 400000 && i === 1}
+ {numberFormat.format(promotedRarePercentage)}%
+ {$t('wish.tally.fromFourStarFeatured')}
+ {:else}
+ {numberFormat.format(featuredValues[i].percentage)}% {$t(
+ type === 'character' && i === 1 ? 'wish.tally.fromFourStar' : 'wish.tally.fromFiveStar',
+ )}
+ {/if}
+
+ {numberFormat.format(legendary.percentage)}%
+
+ Total {numberFormat.format(legendary.total)}
+ {numberFormatSecondary.format(rare.percentage)}%
+
+ Total {numberFormat.format(rare.total)}
+ {$t('wish.tally.update')}
+ {updateTime}
+
+
+ {:else}
+
+
+
+ {featuredValues[0].total}
+
+
+
+
+
+
+ {featuredValues[1].total}
+
+
+
+
+ {#each featured as feat, i}
+
+ {/if}
+
+
+ {/each}
+
+ {featuredValues[i].total}
+
+
+
+
+
+
+
+ {#each legendaryList as item}
+ {$t('wish.tally.name')}
+ {$t('wish.tally.total')}
+
+
+ {/each}
+
+ {item.type === 'character' ? characters[item.name].name : weaponList[item.name].name}
+
+ {item.count}
+
+
+
+
+ {#each legendaryStep as label, i}
+ 5★ {$t('wish.tally.pity')}
+ {$t('wish.tally.total')}
+ Chance%
+
+
+ {/each}
+
+ {#if Array.isArray(label)}
+ {label[0]} - {label[1]}
+ {:else}
+ {label}
+ {/if}
+
+
+ {numberFormat.format(legendaryPity[i].total)}
+
+
+ {numberFormat.format(legendaryPity[i].percentage * 100)}
+
+
+
+
+
+ {#each rarePity as pity, i}
+ 4★ {$t('wish.tally.pity')}
+ {$t('wish.tally.total')}
+ %
+
+
+ {/each}
+
+ {i + 1}
+
+
+ {numberFormat.format(pity.total)}
+
+
+ {numberFormat.format(pity.percentage * 100)}
+
+