From 564add66d2e58155654c360413660599d66816d5 Mon Sep 17 00:00:00 2001 From: zaccie Date: Sat, 25 May 2024 12:31:33 +1200 Subject: [PATCH] Changing Biome Text Colour (#1346) On light coloured biomes this change should be similar readability In darker biomes it's has much easier readability + now becomes more consistent colour with the rest of the game text which just looks better imo --- src/battle-scene.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/battle-scene.ts b/src/battle-scene.ts index 8cd42d3c89e..93f02c26143 100644 --- a/src/battle-scene.ts +++ b/src/battle-scene.ts @@ -1249,8 +1249,8 @@ export default class BattleScene extends SceneBase { const isBoss = !(this.currentBattle.waveIndex % 10); const biomeString: string = getBiomeName(this.arena.biomeType); this.biomeWaveText.setText( biomeString + " - " + this.currentBattle.waveIndex.toString()); - this.biomeWaveText.setColor(!isBoss ? "#404040" : "#f89890"); - this.biomeWaveText.setShadowColor(!isBoss ? "#ded6b5" : "#984038"); + this.biomeWaveText.setColor(!isBoss ? "#ffffff" : "#f89890"); + this.biomeWaveText.setShadowColor(!isBoss ? "#636363" : "#984038"); this.biomeWaveText.setVisible(true); }