Add support up for Tri-Boost Re:EVOLVE, HIGH-VOLTAGE, FUZZ-UP

Add support up for Tri-Boost Re:EVOLVE, HIGH-VOLTAGE, FUZZ-UP
This commit is contained in:
James Liu
2025-12-04 22:56:42 +08:00
parent 502886ea93
commit 0ad96458b6
16 changed files with 32277 additions and 111 deletions
@@ -6,6 +6,7 @@ export interface CommonMusicDataField {
is_hot: KITEM<"bool">;
data_ver: KITEM<"s32">;
diff: KARRAY<"u16">;
seq_release_state: KITEM<"s32">;
}
export interface CommonMusicData {
+2 -2
View File
@@ -34,8 +34,8 @@ export function getDefaultExtra(game: 'gf' | 'dm', version: string, id: number)
reward_status: Array(50).fill(0),
}
result.playstyle[1] = 1 // Note scroll speed (should default to 1.0x)
result.playstyle[36] = 20 // Unknown
result.playstyle[48] = 20 // Unknown
result.playstyle[36] = 20 // Target Timing Adjustment
result.playstyle[48] = 20 // Note Display Adjustment
return result
}
@@ -0,0 +1,8 @@
export interface PlayerStickerResponse {
id: KITEM<'s32'>,
pos_x: KITEM<'float'> ,
pos_y: KITEM<'float'>,
scale_x: KITEM<'float'> ,
scale_y: KITEM<'float'>,
rotate: KITEM<'float'>
}
@@ -0,0 +1,5 @@
export interface SecretMusicResponse {
musicid: KITEM<'s32'>;
seq: KITEM<'u16'>;
kind: KITEM<'s32'>;
}