From 5f16b7bc9985954805d6857649eec4828d21caaf Mon Sep 17 00:00:00 2001
From: SpectralFlame <4493131+cyip92@users.noreply.github.com>
Date: Mon, 13 Mar 2023 08:18:07 -0500
Subject: [PATCH] More text and styling improvements
---
public/stylesheets/styles.css | 23 ----
.../antimatter-dimensions/TickspeedRow.vue | 8 +-
src/components/tabs/celestial-v/VTab.vue | 2 +
.../tabs/statistics/StatisticsTab.vue | 118 ++++++++++++------
src/core/celestials/pelle/pelle.js | 4 +-
src/core/reality.js | 2 +-
src/core/secret-formula/celestials/v.js | 5 +-
src/core/secret-formula/news.js | 4 +-
src/game.js | 8 +-
9 files changed, 99 insertions(+), 75 deletions(-)
diff --git a/public/stylesheets/styles.css b/public/stylesheets/styles.css
index 4cc5760a4..b01a750e2 100644
--- a/public/stylesheets/styles.css
+++ b/public/stylesheets/styles.css
@@ -2883,29 +2883,6 @@ br {
.t-s10 .c-stats-tab {
color: #e0e0e0;
}
-
-.c-stats-tab-general {
- font-size: 2rem;
- font-weight: bold;
- color: var(--color-text);
-}
-
-.c-stats-tab-subheader {
- height: 15rem;
-}
-
-.c-stats-tab-infinity {
- color: var(--color-infinity);
-}
-
-.c-stats-tab-eternity {
- color: var(--color-eternity);
-}
-
-.c-stats-tab-reality {
- color: var(--color-reality);
-}
-
/* #endregion c-stats-tab */
/* #region Past Prestige Runs */
diff --git a/src/components/tabs/antimatter-dimensions/TickspeedRow.vue b/src/components/tabs/antimatter-dimensions/TickspeedRow.vue
index c06551170..a1fdd132b 100644
--- a/src/components/tabs/antimatter-dimensions/TickspeedRow.vue
+++ b/src/components/tabs/antimatter-dimensions/TickspeedRow.vue
@@ -16,6 +16,7 @@ export default {
continuumValue: 0,
hasTutorial: false,
hasRealityButton: false,
+ isEC9: false,
};
},
computed: {
@@ -49,8 +50,8 @@ export default {
this.hasRealityButton = PlayerProgress.realityUnlocked() || TimeStudy.reality.isBought;
this.purchasedTickspeed = player.totalTickBought;
this.freeTickspeed = FreeTickspeed.amount;
- const isEC9Running = EternityChallenge(9).isRunning;
- this.isVisible = Tickspeed.isUnlocked || isEC9Running;
+ this.isEC9 = EternityChallenge(9).isRunning;
+ this.isVisible = Tickspeed.isUnlocked || this.isEC9;
if (!this.isVisible) return;
this.mult.copyFrom(Tickspeed.multiplier);
this.cost.copyFrom(Tickspeed.cost);
@@ -86,6 +87,9 @@ export default {
Tickspeed Continuum: {{ continuumString }}
+
+ Tickspeed Unpurchasable (EC 9)
+
Tickspeed Cost: {{ format(cost) }}
diff --git a/src/components/tabs/celestial-v/VTab.vue b/src/components/tabs/celestial-v/VTab.vue
index 93a07dfcf..5af11ca2f 100644
--- a/src/components/tabs/celestial-v/VTab.vue
+++ b/src/components/tabs/celestial-v/VTab.vue
@@ -194,6 +194,8 @@ export default {
Cursed Glyphs can be created in the Effarig tab.
+ Cursed Glyphs count as {{ formatInt(-3) }} Glyphs for the purposes of all requirements related to Glyph count.
+
The Black Hole can now be used to slow down time if they are both permanent.
Each Hard V-Achievement counts as two V-Achievements and will award {{ formatInt(2) }} Space Theorems
diff --git a/src/components/tabs/statistics/StatisticsTab.vue b/src/components/tabs/statistics/StatisticsTab.vue
index 9619916a9..de3db0da2 100644
--- a/src/components/tabs/statistics/StatisticsTab.vue
+++ b/src/components/tabs/statistics/StatisticsTab.vue
@@ -148,6 +148,13 @@ export default {
this.matterScale = MatterScale.estimate(Currency.antimatter.value);
this.lastMatterTime = Date.now();
}
+ },
+ realityClassObject() {
+ return {
+ "c-stats-tab-title": true,
+ "c-stats-tab-reality": !this.isDoomed,
+ "c-stats-tab-doomed": this.isDoomed,
+ };
}
},
};
@@ -159,40 +166,39 @@ export default {