Change percentage to 50:50 on wish tally
parent
984d6dfd1d
commit
a61fa8ac10
|
@ -257,6 +257,7 @@
|
|||
"subtitle": "Global average pity from paimon.moe users submission",
|
||||
"update": "Updated",
|
||||
"summoned": "Summoned",
|
||||
"wonFiftyFifty": "won 50:50",
|
||||
"fromFiveStar": "from all 5★",
|
||||
"fromFourStar": "from all 4★",
|
||||
"show": "Show",
|
||||
|
|
|
@ -257,6 +257,7 @@
|
|||
"subtitle": "Rata-rata pity dari kiriman pengguna paimon.moe",
|
||||
"update": "Diupdate",
|
||||
"summoned": "Pulang",
|
||||
"wonFiftyFifty": "menang 50:50",
|
||||
"fromFiveStar": "dari semua 5★",
|
||||
"fromFourStar": "dari semua 4★",
|
||||
"show": "Tampilkan",
|
||||
|
|
|
@ -134,6 +134,7 @@
|
|||
if (item) {
|
||||
featuredValues[i] = {
|
||||
total: item.count,
|
||||
guaranteed: item.guaranteed,
|
||||
percentage:
|
||||
(item.count /
|
||||
(type === 'character' && id !== 200001 && i === 1 ? data.total.rare : data.total.legendary)) *
|
||||
|
@ -309,9 +310,18 @@
|
|||
<span class="text-gray-400">{$t('wish.tally.summoned')}</span>
|
||||
</p>
|
||||
<p class="text-gray-400">
|
||||
{numberFormat.format(featuredValues[i].percentage)}% {$t(
|
||||
type === 'character' && i === 1 ? 'wish.tally.fromFourStar' : 'wish.tally.fromFiveStar',
|
||||
)}
|
||||
{#if id === 300011 && i === 0}
|
||||
{numberFormat.format(
|
||||
((featuredValues[i].total - featuredValues[i].guaranteed) /
|
||||
(data.total.legendary - featuredValues[i].guaranteed)) *
|
||||
100,
|
||||
)}%
|
||||
{$t('wish.tally.wonFiftyFifty')}
|
||||
{:else}
|
||||
{numberFormat.format(featuredValues[i].percentage)}% {$t(
|
||||
type === 'character' && i === 1 ? 'wish.tally.fromFourStar' : 'wish.tally.fromFiveStar',
|
||||
)}
|
||||
{/if}
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
|
|
Loading…
Reference in New Issue