mirror of https://github.com/MingweiSamuel/Riven
Regen for the Arena 2v2v2v2 `CHERRY` game mode
parent
800f9c83f4
commit
41a00d68f6
|
@ -69,5 +69,9 @@ newtype_enum! {
|
||||||
/// Convergence
|
/// Convergence
|
||||||
/// Teamfight Tactics map
|
/// Teamfight Tactics map
|
||||||
CONVERGENCE = 22,
|
CONVERGENCE = 22,
|
||||||
|
/// `30`.
|
||||||
|
/// Arena
|
||||||
|
/// Map for 2v2v2v2 (`CHERRY`). Team up with a friend or venture solo in this new game mode. Face against multiple teams in chaotic battles across diverse arenas
|
||||||
|
ARENA = 30,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -335,6 +335,9 @@ newtype_enum! {
|
||||||
/// `1400`.
|
/// `1400`.
|
||||||
/// Ultimate Spellbook games on Summoner's Rift
|
/// Ultimate Spellbook games on Summoner's Rift
|
||||||
SUMMONERS_RIFT_ULTIMATE_SPELLBOOK = 1400,
|
SUMMONERS_RIFT_ULTIMATE_SPELLBOOK = 1400,
|
||||||
|
/// `1700`.
|
||||||
|
/// 2v2v2v2 `CHERRY` games on Arena
|
||||||
|
ARENA_2V2V2V2_CHERRY_ = 1700,
|
||||||
/// `1900`.
|
/// `1900`.
|
||||||
/// Pick URF games on Summoner's Rift
|
/// Pick URF games on Summoner's Rift
|
||||||
SUMMONERS_RIFT_PICK_URF = 1900,
|
SUMMONERS_RIFT_PICK_URF = 1900,
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
///////////////////////////////////////////////
|
///////////////////////////////////////////////
|
||||||
|
|
||||||
// http://www.mingweisamuel.com/riotapi-schema/tool/
|
// http://www.mingweisamuel.com/riotapi-schema/tool/
|
||||||
// Version 7d71fe40a50ce14ad12ed6db791a4d0bae0f810e
|
// Version 55e76c61b6feb1298719d6f55d89f2229e88e4eb
|
||||||
|
|
||||||
//! Automatically generated endpoint handles.
|
//! Automatically generated endpoint handles.
|
||||||
#![allow(clippy::let_and_return, clippy::too_many_arguments)]
|
#![allow(clippy::let_and_return, clippy::too_many_arguments)]
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
///////////////////////////////////////////////
|
///////////////////////////////////////////////
|
||||||
|
|
||||||
// http://www.mingweisamuel.com/riotapi-schema/tool/
|
// http://www.mingweisamuel.com/riotapi-schema/tool/
|
||||||
// Version 7d71fe40a50ce14ad12ed6db791a4d0bae0f810e
|
// Version 55e76c61b6feb1298719d6f55d89f2229e88e4eb
|
||||||
|
|
||||||
//! 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 7d71fe40a50ce14ad12ed6db791a4d0bae0f810e
|
// Version 55e76c61b6feb1298719d6f55d89f2229e88e4eb
|
||||||
|
|
||||||
#![allow(missing_docs)]
|
#![allow(missing_docs)]
|
||||||
|
|
||||||
|
@ -1320,6 +1320,9 @@ pub mod match_v5 {
|
||||||
#[serde(rename = "subteamPlacement")]
|
#[serde(rename = "subteamPlacement")]
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
#[serde(skip_serializing_if = "Option::is_none")]
|
||||||
pub subteam_placement: Option<i32>,
|
pub subteam_placement: Option<i32>,
|
||||||
|
#[serde(rename = "placement")]
|
||||||
|
#[serde(skip_serializing_if = "Option::is_none")]
|
||||||
|
pub placement: Option<i32>,
|
||||||
}
|
}
|
||||||
/// Perks data object.
|
/// Perks data object.
|
||||||
#[derive(Clone, Debug)]
|
#[derive(Clone, Debug)]
|
||||||
|
@ -2097,10 +2100,14 @@ pub mod match_v5 {
|
||||||
pub x7: MatchTimelineInfoFrameParticipantFrame,
|
pub x7: MatchTimelineInfoFrameParticipantFrame,
|
||||||
#[serde(rename = "8")]
|
#[serde(rename = "8")]
|
||||||
pub x8: MatchTimelineInfoFrameParticipantFrame,
|
pub x8: MatchTimelineInfoFrameParticipantFrame,
|
||||||
|
/// Possibly null for the Arena 2v2v2v2 (`CHERRY`) game mode.
|
||||||
#[serde(rename = "9")]
|
#[serde(rename = "9")]
|
||||||
pub x9: MatchTimelineInfoFrameParticipantFrame,
|
#[serde(skip_serializing_if = "Option::is_none")]
|
||||||
|
pub x9: Option<MatchTimelineInfoFrameParticipantFrame>,
|
||||||
|
/// Possibly null for the Arena 2v2v2v2 (`CHERRY`) game mode.
|
||||||
#[serde(rename = "10")]
|
#[serde(rename = "10")]
|
||||||
pub x10: MatchTimelineInfoFrameParticipantFrame,
|
#[serde(skip_serializing_if = "Option::is_none")]
|
||||||
|
pub x10: Option<MatchTimelineInfoFrameParticipantFrame>,
|
||||||
}
|
}
|
||||||
/// MatchTimelineInfoFrame data object.
|
/// MatchTimelineInfoFrame data object.
|
||||||
#[derive(Clone, Debug)]
|
#[derive(Clone, Debug)]
|
||||||
|
|
Loading…
Reference in New Issue