Regen for the Arena 2v2v2v2 `CHERRY` game mode

issue-59
Mingwei Samuel 2023-07-22 22:07:55 -07:00
parent 800f9c83f4
commit 41a00d68f6
5 changed files with 19 additions and 5 deletions

View File

@ -69,5 +69,9 @@ newtype_enum! {
/// Convergence
/// Teamfight Tactics map
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,
}
}

View File

@ -335,6 +335,9 @@ newtype_enum! {
/// `1400`.
/// Ultimate Spellbook games on Summoner's Rift
SUMMONERS_RIFT_ULTIMATE_SPELLBOOK = 1400,
/// `1700`.
/// 2v2v2v2 `CHERRY` games on Arena
ARENA_2V2V2V2_CHERRY_ = 1700,
/// `1900`.
/// Pick URF games on Summoner's Rift
SUMMONERS_RIFT_PICK_URF = 1900,

View File

@ -7,7 +7,7 @@
///////////////////////////////////////////////
// http://www.mingweisamuel.com/riotapi-schema/tool/
// Version 7d71fe40a50ce14ad12ed6db791a4d0bae0f810e
// Version 55e76c61b6feb1298719d6f55d89f2229e88e4eb
//! Automatically generated endpoint handles.
#![allow(clippy::let_and_return, clippy::too_many_arguments)]

View File

@ -7,7 +7,7 @@
///////////////////////////////////////////////
// http://www.mingweisamuel.com/riotapi-schema/tool/
// Version 7d71fe40a50ce14ad12ed6db791a4d0bae0f810e
// Version 55e76c61b6feb1298719d6f55d89f2229e88e4eb
//! Metadata about the Riot API and Riven.
//!

View File

@ -7,7 +7,7 @@
///////////////////////////////////////////////
// http://www.mingweisamuel.com/riotapi-schema/tool/
// Version 7d71fe40a50ce14ad12ed6db791a4d0bae0f810e
// Version 55e76c61b6feb1298719d6f55d89f2229e88e4eb
#![allow(missing_docs)]
@ -1320,6 +1320,9 @@ pub mod match_v5 {
#[serde(rename = "subteamPlacement")]
#[serde(skip_serializing_if = "Option::is_none")]
pub subteam_placement: Option<i32>,
#[serde(rename = "placement")]
#[serde(skip_serializing_if = "Option::is_none")]
pub placement: Option<i32>,
}
/// Perks data object.
#[derive(Clone, Debug)]
@ -2097,10 +2100,14 @@ pub mod match_v5 {
pub x7: MatchTimelineInfoFrameParticipantFrame,
#[serde(rename = "8")]
pub x8: MatchTimelineInfoFrameParticipantFrame,
/// Possibly null for the Arena 2v2v2v2 (`CHERRY`) game mode.
#[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")]
pub x10: MatchTimelineInfoFrameParticipantFrame,
#[serde(skip_serializing_if = "Option::is_none")]
pub x10: Option<MatchTimelineInfoFrameParticipantFrame>,
}
/// MatchTimelineInfoFrame data object.
#[derive(Clone, Debug)]