This commit is contained in:
Renan LE CARO 2025-06-09 21:10:41 +02:00
parent 643f50fa77
commit 18b08c85c6
8 changed files with 53 additions and 16 deletions

View file

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

File diff suppressed because one or more lines are too long

21
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 = "29141056";
const VERSION = "29158270";
// The name of the cache
const CACHE_NAME = `breakout-71-${VERSION}`;

View file

@ -1057,8 +1057,8 @@
},
{
"name": "China",
"size": 6,
"bricks": "______RRyRRRRyRyRRRRyRRRRRRRRR______",
"size": 10,
"bricks": "__________rrrrrrrrrrrrrryrrrrrrryrryrrrrryyyryrrrrrryrryrrrrrrrryrrrrrrrrrrrrrrr____________________",
"credit": ""
},
{
@ -1596,10 +1596,23 @@
"credit": "A little bit bigger than the Zen icon, by Obigre"
},
{
"color": "#000000",
"name": "Rainbow Spiral",
"size": 21,
"bricks": "_____________________B_ttttvvvvrrrryyyyGGGy_G_________________Gy_G_GGttttvvvvrrrry_ty_G_G_____________y_ty_G_G_yyyyGGGGttt_y_tr_y_y_r_________t_y_tr_y_y_r_ttvvvvr_v_G_vr_y_y_r_t_____r_v_G_vr_y_y_r_t_rrr_r_v_G_vv_r_r_v_G_B_r_r_v_G_vv_r_r_v_G___y_y_r_t_rv_r_r_v_GGyyy_y_r_t_rv_r_r_v_______y_r_t_rt_v_v_ttttGGGGy_r_t_rt_v_v___________y_v_yt_v_vvttttGGGGyyy_v_yt_v_______________v_yG_ttttGGGGyyyyrrrrv_yG___________________GGGyyyyrrrrvvvvttttGGG",
"name": "Rainbow Spiral",
"credit": "By Noodlemire"
},
{
"color": "#115988",
"size": 11,
"bricks": "__gg___gg___gg_____gg_gg_ggggg_ggggggglgggggggglllllggg__lllglgll__lellllllel_eellllllle___lllllll____llellgg____llleell_",
"name": "GNU",
"credit": "https://www.gnu.org/ by obigre"
},
{
"color": "#000000",
"size": 21,
"bricks": "WWWWWWWWWWWWWWWWWWWWWW___________________WW___________________WW__WWWWWWWWWWWWWWWWWWW__WWWWWWWWWWWWWWWWWWW___________________WW___________________WWWWWWWWWWWWWWWWWWW__WWWWWWWWWWWWWWWWWWW__WW___________________WW___________________WW__WWWWWWWWWWWWWWWWWWW__WWWWWWWWWWWWWWWWWWW___________________WW___________________WWWWWWWWWWWWWWWWWWW__WWWWWWWWWWWWWWWWWWW__WW___________________WW___________________WW__WWWWWWWWWWWWWWWWWWW__WWWWWWWWWWWWWWWWWW",
"name": "Pipe",
"credit": "By Topenvy"
}
]

View file

@ -849,5 +849,15 @@
"required": ["bigger_explosions", "trickledown", "transparency"],
"forbidden": ["left_is_lava", "pierce_color", "sticky_coins"],
"minScore": 16000
},
"GNU": {
"required": ["extra_life", "superhot", "trickledown"],
"forbidden": ["etherealcoins", "transparency", "left_is_lava"],
"minScore": 16100
},
"Pipe": {
"required": ["fountain_toss", "happy_family", "puck_repulse_ball"],
"forbidden": ["ball_repulse_ball", "trickledown", "hot_start"],
"minScore": 16200
}
}

View file

@ -1 +1 @@
"29141056"
"29158270"

View file

@ -133,6 +133,13 @@ export function levelCodeToRawLevel(code: string) {
name,
credit,
};
console.warn("Invalid level", {
code,
name,
credit,
bricks,
size,
});
}
export function comboKeepingRate(level: number) {