Interface IGenshinSpiralAbyss

Represents the Spiral Abyss in Genshin Impact.

interface IGenshinSpiralAbyss {
    damage_rank: IGenshinSpiralAbyssRank[];
    defeat_rank: IGenshinSpiralAbyssRank[];
    end_time: string;
    energy_skill_rank: IGenshinSpiralAbyssRank[];
    floors: IGenshinSpiralAbyssFloor[];
    is_unlock: boolean;
    max_floor: string;
    normal_skill_rank: IGenshinSpiralAbyssRank[];
    reveal_rank: IGenshinSpiralAbyssRank[];
    schedule_id: number;
    start_time: string;
    take_damage_rank: IGenshinSpiralAbyssRank[];
    total_battle_times: number;
    total_star: number;
    total_win_times: number;
}

Properties

The rankings for damage dealt in the Spiral Abyss.

The rankings for defeating the monsters in the Spiral Abyss.

end_time: string

The end time of the Spiral Abyss.

energy_skill_rank: IGenshinSpiralAbyssRank[]

The rankings for using elemental burst skills in the Spiral Abyss.

The floors in the Spiral Abyss.

is_unlock: boolean

Whether the Spiral Abyss is unlocked.

max_floor: string

The maximum floor reached in the Spiral Abyss.

normal_skill_rank: IGenshinSpiralAbyssRank[]

The rankings for using normal skills in the Spiral Abyss.

The rankings for revealing the floor in the Spiral Abyss.

schedule_id: number

The ID of the Spiral Abyss schedule.

start_time: string

The start time of the Spiral Abyss.

take_damage_rank: IGenshinSpiralAbyssRank[]

The rankings for taking damage in the Spiral Abyss.

total_battle_times: number

The total number of battles fought in the Spiral Abyss.

total_star: number

The total number of stars obtained in the Spiral Abyss.

total_win_times: number

The total number of battles won in the Spiral Abyss.