mirror of
https://gitlab.com/lecarore/breakout71.git
synced 2025-04-20 12:15:06 -04:00
Build 29072514
This commit is contained in:
parent
96aae001b4
commit
ccb99ce17d
7 changed files with 21 additions and 10 deletions
10
Readme.md
10
Readme.md
|
@ -33,11 +33,17 @@ Some upgrades currently are not really useful
|
||||||
|
|
||||||
## Done
|
## Done
|
||||||
|
|
||||||
|
- display colored coins when there's hypnosis or rainbow enabled
|
||||||
|
|
||||||
|
## 29071903
|
||||||
|
|
||||||
- new perk : hypnosis
|
- new perk : hypnosis
|
||||||
- new perk : rainbow
|
- new perk : rainbow
|
||||||
- new perk : bricks attract coins
|
- new perk : bricks attract coins
|
||||||
- super hot level rework
|
- Extra choice: wrong text for french "2 more choices"
|
||||||
- zen level added bombs
|
- metamorphosis : when coins are spent, display them hollowed out
|
||||||
|
- super hot : starting level rework
|
||||||
|
- zen : added bombs to starting level
|
||||||
|
|
||||||
## 29071527
|
## 29071527
|
||||||
|
|
||||||
|
|
|
@ -29,8 +29,8 @@ android {
|
||||||
applicationId = "me.lecaro.breakout"
|
applicationId = "me.lecaro.breakout"
|
||||||
minSdk = 21
|
minSdk = 21
|
||||||
targetSdk = 34
|
targetSdk = 34
|
||||||
versionCode = 29071903
|
versionCode = 29072514
|
||||||
versionName = "29071903"
|
versionName = "29072514"
|
||||||
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
||||||
vectorDrawables {
|
vectorDrawables {
|
||||||
useSupportLibrary = true
|
useSupportLibrary = true
|
||||||
|
|
File diff suppressed because one or more lines are too long
4
dist/index.html
vendored
4
dist/index.html
vendored
File diff suppressed because one or more lines are too long
|
@ -1,5 +1,5 @@
|
||||||
// The version of the cache.
|
// The version of the cache.
|
||||||
const VERSION = "29071903";
|
const VERSION = "29072514";
|
||||||
|
|
||||||
// The name of the cache
|
// The name of the cache
|
||||||
const CACHE_NAME = `breakout-71-${VERSION}`;
|
const CACHE_NAME = `breakout-71-${VERSION}`;
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
"29071903"
|
"29072514"
|
||||||
|
|
|
@ -1108,7 +1108,12 @@ export function getDashOffset(gameState: GameState) {
|
||||||
}
|
}
|
||||||
|
|
||||||
function getCoinRenderColor(gameState: GameState, coin: Coin) {
|
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 coin.color;
|
||||||
return "#ffd300";
|
return "#ffd300";
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue