Skip to content

Commit 4541179

Browse files
committed
Cleanup Personal Quark Info
1 parent 6586616 commit 4541179

2 files changed

Lines changed: 9 additions & 12 deletions

File tree

src/Login.ts

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -356,11 +356,12 @@ export async function handleLogin () {
356356

357357
subtabElement.innerHTML = `
358358
${user ? `Hello, ${user}` : 'Hello'}!\n
359-
Your personal Quark bonus is ${format(personalBonus, 2, true)}%, computed by the following:
360-
Donator Bonuses (Multiplicative with other bonuses):
361-
<span style="color: orchid">Transcended Baller</span> [+2%] - ${hasTier1 ? checkMark(2) : exMark}
362-
<span style="color: green">Reincarnated Baller</span> [+3%] - ${hasTier2 ? checkMark(3) : exMark}
363-
<span style="color: orange">ASCENDED Baller</span> [+4%] - ${hasTier3 ? checkMark(4) : exMark}
359+
Your personal Quark bonus is ${format(personalBonus, 2, true)}%, from the following sources:
360+
361+
Subscription Bonuses:
362+
<span style="color: orchid">Transcended Baller (or higher)</span> [+2%] - ${hasTier1 ? checkMark(2) : exMark}
363+
<span style="color: green">Reincarnated Baller (or higher)</span> [+3%] - ${hasTier2 ? checkMark(3) : exMark}
364+
<span style="color: orange">ASCENDED Baller (or higher)</span> [+4%] - ${hasTier3 ? checkMark(4) : exMark}
364365
<span style="color: lightgoldenrodyellow">OMEGA Baller</span> [+5%] - ${hasTier4 ? checkMark(5) : exMark}
365366
<span style="color: #f47fff">Discord Server Booster</span> [+1%] - ${boosted ? checkMark(1) : exMark}
366367
@@ -369,6 +370,7 @@ export async function handleLogin () {
369370
<span>${i18next.t('account.eventBonuses')}:</span>
370371
</div>
371372
<div class="event-bonuses-content" id="eventBonusesContent">
373+
${i18next.t('account.eventBonusMulti')}
372374
<span style="color: #ffcc00">Thanksgiving 2023</span> [+0.2%] - ${
373375
discord && account.member.roles?.includes(THANKSGIVING_2023) ? checkMark(0.2) : exMark
374376
}
@@ -405,12 +407,6 @@ export async function handleLogin () {
405407
<span style="color: lime"> Being <span style="color: lightgoldenrodyellow"> YOURSELF! </span></span> [+1%] - ${
406408
checkMark(1)
407409
}
408-
409-
The current maximum is 16%, by being a Discord server booster and an OMEGA Baller!
410-
411-
More will be incorporated both for general accounts and supporters of the game shortly.
412-
Become a supporter of development via the link below, and get special bonuses,
413-
while also improving the Global Bonus for all to enjoy!
414410
`.trim()
415411

416412
const allPlatforms = ['discord', 'patreon']

translations/en.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7378,7 +7378,8 @@
73787378
"downloadComplete": "Download complete",
73797379
"deletedSave": "\"{{name}}\" was deleted",
73807380
"notDeleted": "Your save wasn't deleted. Check the console for more information.",
7381-
"eventBonuses": "Event Bonuses"
7381+
"eventBonuses": "Event Bonuses",
7382+
"eventBonusMulti": "<<cyan|♔>> Your total Event Bonus is <<gold|multiplicative>> to your total Subscription Bonus."
73827383
},
73837384
"pseudoCoins": {
73847385
"coinCount": "You have <<gold|{{amount}} PseudoCoins>>!",

0 commit comments

Comments
 (0)