From 3cb0d155ca8dd81ce224160a3095c6bbf01941c6 Mon Sep 17 00:00:00 2001 From: Mees Date: Mon, 21 Oct 2024 20:12:17 +0200 Subject: [PATCH] Ui update for prestige --- src/views/PrestigeShop.vue | 158 +++++++++++++++++++------------------ 1 file changed, 81 insertions(+), 77 deletions(-) diff --git a/src/views/PrestigeShop.vue b/src/views/PrestigeShop.vue index 3a2cca4..1360442 100644 --- a/src/views/PrestigeShop.vue +++ b/src/views/PrestigeShop.vue @@ -11,128 +11,132 @@ />
-

- Prestige -

- -
-

+
+

Prestige Point Calculation

-
    -
  • - Calculated based on amount of ants and time since last prestige. -
  • -
  • - Time since last prestige: {{ timeSinceLastPrestige }} -
  • -
+

+ Calculated based on amount of ants and time since last prestige. +

+

+ Time since last prestige: {{ timeSinceLastPrestige }} +

+
+

+ Prestige Points: {{ formatNumber(prestigeStore.prestigePoints) }} +

+

+ Prestige Times: {{ formatNumber(prestigeStore.timesPrestiged) }} +

+
-
-

- Prestige Points: {{ formatNumber(prestigeStore.prestigePoints) }}
Prestige Times: - {{ formatNumber(prestigeStore.timesPrestiged) }} -

+ +
-

+

You can prestige in {{ waitTime }} seconds

-
+ +
- -
- + +
- -
    +
    -
  • +

    + {{ upgrade.name }} {{ getUpgradeCount(upgrade) }} + (Locked) +

    +

    + Unlocked by: + {{ typeof upgrade.unlockedWhenDescription === 'function' + ? upgrade.unlockedWhenDescription() + : upgrade.unlockedWhenDescription + }} +

    +

    + {{ upgrade.description }} +

    -

    {{ upgrade.name }} {{ getUpgradeCount(upgrade) }} {{ !isUpgradeUnlocked(upgrade) ? '(Locked)' : '' }}

    -

    - Unlocked by: - {{ typeof upgrade.unlockedWhenDescription === 'function' - ? upgrade.unlockedWhenDescription() - : upgrade.unlockedWhenDescription - }} -

    -

    - {{ upgrade.description }} -

    -

    +

    + - -
    + Buy max +
    -
  • -
+
+
@@ -270,5 +274,5 @@ const toggleAll = (value) => {