forked from mirror/Riven
Regen for queue 1400 Ultimate Spellbook
Fixes #28
00836311d7
https://github.com/RiotGames/developer-relations/issues/507
v/1.x.x
parent
d621daf3e1
commit
d72ebba4e3
|
@ -34,6 +34,8 @@ pub enum Champion {
|
||||||
#[strum(to_string="Ahri")] Ahri = 103,
|
#[strum(to_string="Ahri")] Ahri = 103,
|
||||||
/// Akali (`Akali`, 84).
|
/// Akali (`Akali`, 84).
|
||||||
#[strum(to_string="Akali")] Akali = 84,
|
#[strum(to_string="Akali")] Akali = 84,
|
||||||
|
/// Akshan (`Akshan`, 166).
|
||||||
|
#[strum(to_string="Akshan")] Akshan = 166,
|
||||||
/// Alistar (`Alistar`, 12).
|
/// Alistar (`Alistar`, 12).
|
||||||
#[strum(to_string="Alistar")] Alistar = 12,
|
#[strum(to_string="Alistar")] Alistar = 12,
|
||||||
/// Amumu (`Amumu`, 32).
|
/// Amumu (`Amumu`, 32).
|
||||||
|
@ -369,6 +371,7 @@ impl Champion {
|
||||||
Self::Aatrox => "Aatrox",
|
Self::Aatrox => "Aatrox",
|
||||||
Self::Ahri => "Ahri",
|
Self::Ahri => "Ahri",
|
||||||
Self::Akali => "Akali",
|
Self::Akali => "Akali",
|
||||||
|
Self::Akshan => "Akshan",
|
||||||
Self::Alistar => "Alistar",
|
Self::Alistar => "Alistar",
|
||||||
Self::Amumu => "Amumu",
|
Self::Amumu => "Amumu",
|
||||||
Self::Anivia => "Anivia",
|
Self::Anivia => "Anivia",
|
||||||
|
|
|
@ -241,6 +241,8 @@ pub enum Queue {
|
||||||
NEXUS_BLITZ_NEXUS_BLITZ_DEPRECATED_1200 = 1200,
|
NEXUS_BLITZ_NEXUS_BLITZ_DEPRECATED_1200 = 1200,
|
||||||
/// Nexus Blitz games on Nexus Blitz
|
/// Nexus Blitz games on Nexus Blitz
|
||||||
NEXUS_BLITZ_NEXUS_BLITZ = 1300,
|
NEXUS_BLITZ_NEXUS_BLITZ = 1300,
|
||||||
|
/// Ultimate Spellbook games on Summoner's Rift
|
||||||
|
SUMMONERS_RIFT_ULTIMATE_SPELLBOOK = 1400,
|
||||||
/// Tutorial 1 games on Summoner's Rift
|
/// Tutorial 1 games on Summoner's Rift
|
||||||
SUMMONERS_RIFT_TUTORIAL_1 = 2000,
|
SUMMONERS_RIFT_TUTORIAL_1 = 2000,
|
||||||
/// Tutorial 2 games on Summoner's Rift
|
/// Tutorial 2 games on Summoner's Rift
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
///////////////////////////////////////////////
|
///////////////////////////////////////////////
|
||||||
|
|
||||||
// http://www.mingweisamuel.com/riotapi-schema/tool/
|
// http://www.mingweisamuel.com/riotapi-schema/tool/
|
||||||
// Version f60af07c98f05dffdaf81262f9b01f97fe94a3a1
|
// Version 8fec9617c247f0ee5c96feecc8526fdc9dca0369
|
||||||
|
|
||||||
//! Automatically generated endpoint handles.
|
//! Automatically generated endpoint handles.
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
///////////////////////////////////////////////
|
///////////////////////////////////////////////
|
||||||
|
|
||||||
// http://www.mingweisamuel.com/riotapi-schema/tool/
|
// http://www.mingweisamuel.com/riotapi-schema/tool/
|
||||||
// Version f60af07c98f05dffdaf81262f9b01f97fe94a3a1
|
// Version 8fec9617c247f0ee5c96feecc8526fdc9dca0369
|
||||||
|
|
||||||
//! Metadata about the Riot API and Riven.
|
//! Metadata about the Riot API and Riven.
|
||||||
//!
|
//!
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
///////////////////////////////////////////////
|
///////////////////////////////////////////////
|
||||||
|
|
||||||
// http://www.mingweisamuel.com/riotapi-schema/tool/
|
// http://www.mingweisamuel.com/riotapi-schema/tool/
|
||||||
// Version f60af07c98f05dffdaf81262f9b01f97fe94a3a1
|
// Version 8fec9617c247f0ee5c96feecc8526fdc9dca0369
|
||||||
|
|
||||||
//! Data transfer structs.
|
//! Data transfer structs.
|
||||||
//!
|
//!
|
||||||
|
@ -1719,6 +1719,8 @@ pub mod match_v5 {
|
||||||
pub queue_id: crate::consts::Queue,
|
pub queue_id: crate::consts::Queue,
|
||||||
#[serde(rename = "teams")]
|
#[serde(rename = "teams")]
|
||||||
pub teams: std::vec::Vec<MatchInfoTeam>,
|
pub teams: std::vec::Vec<MatchInfoTeam>,
|
||||||
|
#[serde(rename = "tournamentCode")]
|
||||||
|
pub tournament_code: Option<String>,
|
||||||
}
|
}
|
||||||
/// MatchTimelineInfoFrameEvent data object.
|
/// MatchTimelineInfoFrameEvent data object.
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
|
|
Loading…
Reference in New Issue