Interface IGenshinSpiralAbyssFloor

Represents the floor of the Spiral Abyss in Genshin Impact.

interface IGenshinSpiralAbyssFloor {
    icon: string;
    index: number;
    is_unlock: boolean;
    levels: IGenshinSpiralAbyssLevel[];
    max_star: number;
    settle_time: string;
    star: number;
}

Properties

icon: string

The icon of the floor.

index: number

The floor index.

is_unlock: boolean

Whether the floor is unlocked.

The levels in the floor.

max_star: number

The maximum number of stars that can be obtained in the floor.

settle_time: string

The time when the floor was completed and settled.

star: number

The number of stars obtained in the floor.