Build 29072514

This commit is contained in:
Renan LE CARO 2025-04-11 07:55:06 +02:00
parent 96aae001b4
commit ccb99ce17d
7 changed files with 21 additions and 10 deletions

View file

@ -33,11 +33,17 @@ Some upgrades currently are not really useful
## Done
- display colored coins when there's hypnosis or rainbow enabled
## 29071903
- new perk : hypnosis
- new perk : rainbow
- new perk : bricks attract coins
- super hot level rework
- zen level added bombs
- Extra choice: wrong text for french "2 more choices"
- metamorphosis : when coins are spent, display them hollowed out
- super hot : starting level rework
- zen : added bombs to starting level
## 29071527

View file

@ -29,8 +29,8 @@ android {
applicationId = "me.lecaro.breakout"
minSdk = 21
targetSdk = 34
versionCode = 29071903
versionName = "29071903"
versionCode = 29072514
versionName = "29072514"
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables {
useSupportLibrary = true

File diff suppressed because one or more lines are too long

4
dist/index.html vendored

File diff suppressed because one or more lines are too long

View file

@ -1,5 +1,5 @@
// The version of the cache.
const VERSION = "29071903";
const VERSION = "29072514";
// The name of the cache
const CACHE_NAME = `breakout-71-${VERSION}`;

View file

@ -1 +1 @@
"29071903"
"29072514"

View file

@ -1108,7 +1108,12 @@ export function getDashOffset(gameState: GameState) {
}
function getCoinRenderColor(gameState: GameState, coin: Coin) {
if (gameState.perks.metamorphosis || isOptionOn("colorful_coins"))
if (
gameState.perks.metamorphosis ||
isOptionOn("colorful_coins") ||
gameState.perks.hypnosis ||
gameState.perks.rainbow
)
return coin.color;
return "#ffd300";
}