UPDATE: New data 4.1.5
All checks were successful
Gitea Auto Deploy / Deploy-Container (push) Successful in 48s

This commit is contained in:
2026-03-17 17:48:58 +07:00
parent 80441ce96b
commit 4317cae318
11 changed files with 2 additions and 34 deletions

Binary file not shown.

Binary file not shown.

View File

@@ -1,10 +1,10 @@
[ [
{ {
"version": "4.0.6", "version": "4.1.5",
"date": "17/03/2026", "date": "17/03/2026",
"type": "update", "type": "update",
"items": [ "items": [
"New monster data" "New data for 4.1.5"
] ]
}, },
{ {

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -5,7 +5,6 @@ export interface ASGroupDetail {
ID: number; ID: number;
ChallengeGroupType: string; ChallengeGroupType: string;
Name: Record<string, string>; Name: Record<string, string>;
Image: ASGroupImage;
BeginTime: string; BeginTime: string;
EndTime: string; EndTime: string;
BuffList1: ASBuff[]; BuffList1: ASBuff[];
@@ -13,13 +12,6 @@ export interface ASGroupDetail {
Level: ASLevel[]; Level: ASLevel[];
} }
export interface ASGroupImage {
BackGroundPath: string;
TabPicPath: string;
TabPicSelectPath: string;
ThemePicPath: string;
}
export interface ASBuff { export interface ASBuff {
ID: number; ID: number;
Param: number[]; Param: number[];

View File

@@ -4,19 +4,11 @@ export interface MOCGroupDetail {
ID: number; ID: number;
ChallengeGroupType: string; ChallengeGroupType: string;
Name: Record<string, string>; Name: Record<string, string>;
Image: MoCImage;
BeginTime: string; BeginTime: string;
EndTime: string; EndTime: string;
Level: MoCLevel[]; Level: MoCLevel[];
} }
export interface MoCImage {
BackGroundPath: string;
TabPicPath: string;
TabPicSelectPath: string;
ThemePicPath: string;
}
export interface MoCLevel { export interface MoCLevel {
Floor: number; Floor: number;
ID: number; ID: number;

View File

@@ -4,19 +4,11 @@ export interface PeakGroupDetail {
ID: number; ID: number;
ChallengeGroupType: string; ChallengeGroupType: string;
Name: Record<string, string>; Name: Record<string, string>;
Image: PeakGroupImage;
PreLevel: PeakMazeConfig[]; PreLevel: PeakMazeConfig[];
BossLevel: PeakMazeConfig | null; BossLevel: PeakMazeConfig | null;
BossConfig: PeakBossConfig | null; BossConfig: PeakBossConfig | null;
} }
export interface PeakGroupImage {
ThemePosterTabPicPath: string;
ThemeIconPicPath: string;
HandBookPanelBannerPath: string;
RankIconPathList: string[];
}
export interface PeakMazeConfig { export interface PeakMazeConfig {
ID: number; ID: number;
Name: Record<string, string>; Name: Record<string, string>;

View File

@@ -2,7 +2,6 @@ export interface PFGroupDetail {
ID: number; ID: number;
ChallengeGroupType: string; ChallengeGroupType: string;
Name: Record<string, string>; Name: Record<string, string>;
Image: PFGroupImage;
BeginTime: string; BeginTime: string;
EndTime: string; EndTime: string;
SubOption: MazeBuff[]; SubOption: MazeBuff[];
@@ -10,13 +9,6 @@ export interface PFGroupDetail {
Level: LevelData[]; Level: LevelData[];
} }
export interface PFGroupImage {
BackGroundPath: string;
TabPicPath: string;
TabPicSelectPath: string;
ThemePicPath: string;
}
export interface MazeBuff { export interface MazeBuff {
ID: number; ID: number;
Param: number[]; Param: number[];