mirror of
https://gitlab.com/lecarore/breakout71.git
synced 2025-04-20 04:05: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
|
||||
|
||||
- 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
|
||||
|
||||
|
|
|
@ -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
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.
|
||||
const VERSION = "29071903";
|
||||
const VERSION = "29072514";
|
||||
|
||||
// The name of the cache
|
||||
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) {
|
||||
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";
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue