From ac5ef9706f515c57a593cc622d4dacd46e0ac1eb Mon Sep 17 00:00:00 2001 From: amizing25 Date: Thu, 22 May 2025 13:47:15 +0700 Subject: [PATCH] feat: Initial support for 3.3.5x --- Cargo.toml | 2 +- common/src/sr_tools.rs | 2 + gameserver/src/net/handlers/avatar.rs | 15 +- gameserver/src/net/handlers/gacha.rs | 4 +- gameserver/src/net/handlers/scene.rs | 48 +- gameserver/src/net/packet.rs | 2 +- proto/out/_.rs | 39888 +++++++++++++----------- 7 files changed, 21160 insertions(+), 18801 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index c10ee1e..012b9d0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -64,7 +64,7 @@ sdkserver = { path = "sdkserver/" } gameserver = { path = "gameserver/" } [profile.release] -strip = true # Automatically strip symbols from the binary. opt-level = "z" # Optimize for size. +strip = true # Automatically strip symbols from the binary. lto = true codegen-units = 1 diff --git a/common/src/sr_tools.rs b/common/src/sr_tools.rs index e195bd9..c9d2fd6 100644 --- a/common/src/sr_tools.rs +++ b/common/src/sr_tools.rs @@ -106,6 +106,7 @@ impl FreesrData { .map(|v| v.get_unique_id()) .unwrap_or_default(), dressed_skin_id: 0, + ..Default::default() }) } @@ -143,6 +144,7 @@ impl FreesrData { .map(|v| v.get_unique_id()) .unwrap_or_default(), dressed_skin_id: 0, + ..Default::default() }) }) .collect() diff --git a/gameserver/src/net/handlers/avatar.rs b/gameserver/src/net/handlers/avatar.rs index cc07b03..457e7f7 100644 --- a/gameserver/src/net/handlers/avatar.rs +++ b/gameserver/src/net/handlers/avatar.rs @@ -1,11 +1,13 @@ +use std::collections::HashMap; + use super::*; -pub static UNLOCKED_AVATARS: [u32; 65] = [ +pub static UNLOCKED_AVATARS: [u32; 68] = [ 1002, 1003, 1004, 1005, 1006, 1008, 1009, 1013, 1101, 1102, 1103, 1104, 1105, 1106, 1107, 1108, 1109, 1110, 1111, 1112, 1201, 1202, 1203, 1204, 1205, 1206, 1207, 1208, 1209, 1210, 1211, 1212, 1213, 1214, 1215, 1217, 1301, 1302, 1303, 1304, 1305, 1306, 1307, 1308, 1309, 1312, 1315, 1310, - 1314, 1218, 1221, 1220, 1222, 1223, 1317, 1313, 1225, 1402, 1401, 1404, 1403, 1405, 1407, 1406, - 1409 + 1314, 1218, 1221, 1220, 1222, 1223, 1317, 1313, 1225, 1402, 1401, 1404, 1403, 1405, 1407, 1406, + 1409, 1014, 1015, 1408, ]; pub async fn on_get_avatar_data_cs_req( @@ -60,4 +62,11 @@ pub async fn on_get_avatar_data_cs_req( }) }) .collect(); + + res.current_multi_path_avatar_id = HashMap::from([ + (8001, json.main_character.get_type().into()), + (1001, json.march_type.get_type().into()), + ]); + + res.multi_path_avatar_type_info_list = json.get_multi_path_info(); } diff --git a/gameserver/src/net/handlers/gacha.rs b/gameserver/src/net/handlers/gacha.rs index 9bb495e..84869bb 100644 --- a/gameserver/src/net/handlers/gacha.rs +++ b/gameserver/src/net/handlers/gacha.rs @@ -9,8 +9,8 @@ pub async fn on_get_gacha_info_cs_req( end_time: 1924992000, begin_time: 0, gacha_ceiling: Some(GachaCeiling::default()), - up_info: vec![23002, 1003, 1101, 1104, 23000, 23003], - featured: vec![ + prize_item_list: vec![23002, 1003, 1101, 1104, 23000, 23003], + item_detail_list: vec![ 1001, 1002, 1008, 1009, 1013, 1103, 1105, 1106, 1108, 1109, 1110, 1111, 1201, 1202, 1206, 1207, 1210, 1003, 1004, 1101, 1107, 1104, 1209, 1211, 21000, 21001, 21002, 21003, 21004, 21005, 21006, 21007, 21008, 21009, 21010, 21011, 21012, 21013, 21014, 21015, diff --git a/gameserver/src/net/handlers/scene.rs b/gameserver/src/net/handlers/scene.rs index d43500a..3df6df5 100644 --- a/gameserver/src/net/handlers/scene.rs +++ b/gameserver/src/net/handlers/scene.rs @@ -241,30 +241,30 @@ async fn load_scene( scene.world_id }, lighten_section_list: scene.sections.clone(), - chest_id_list: scene - .scenes - .values() - .flat_map(|v| v.chests.clone()) - .collect::>(), - scene_mission_info: Some(MissionStatusBySceneInfo { - finished_mission_id_list: scene - .scenes - .values() - .flat_map(|s| s.finished_main_missions.clone()) - .collect::>(), - sub_mission_status_list: scene - .scenes - .values() - .flat_map(|s| { - s.finished_sub_missions.iter().map(|sm| Mission { - id: *sm, - status: MissionStatus::MissionFinish.into(), - progress: 0, - }) - }) - .collect::>(), - ..Default::default() - }), + // chest_id_list: scene + // .scenes + // .values() + // .flat_map(|v| v.chests.clone()) + // .collect::>(), + // scene_mission_info: Some(MissionStatusBySceneInfo { + // finished_mission_id_list: scene + // .scenes + // .values() + // .flat_map(|s| s.finished_main_missions.clone()) + // .collect::>(), + // sub_mission_status_list: scene + // .scenes + // .values() + // .flat_map(|s| { + // s.finished_sub_missions.iter().map(|sm| Mission { + // id: *sm, + // status: MissionStatus::MissionFinish.into(), + // progress: 0, + // }) + // }) + // .collect::>(), + // ..Default::default() + // }), floor_saved_data: scene.saved_values.clone(), ..Default::default() }; diff --git a/gameserver/src/net/packet.rs b/gameserver/src/net/packet.rs index e5413d5..fc0ff9f 100644 --- a/gameserver/src/net/packet.rs +++ b/gameserver/src/net/packet.rs @@ -172,7 +172,7 @@ trait_handler! { PlayerLogin; GetMissionStatus; GetBasicInfo; - GetMultiPathAvatarInfo; + // GetMultiPathAvatarInfo; GetAvatarData; GetAllLineupData; GetCurLineupData; diff --git a/proto/out/_.rs b/proto/out/_.rs index 1e7a9b0..348e626 100644 --- a/proto/out/_.rs +++ b/proto/out/_.rs @@ -1,9 +1,13 @@ // This file is @generated by prost-build. #[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Mmmnfdnljmd { #[prost(uint32, tag = "1")] pub hbapccegnme: u32, + /// LJNPGKDOJHO JFOAMFDLLGH = 101; + /// BPNMJCHEDNL KANCDECPLOA = 102; + /// FOOPINGAFEG MOCBDOGAKAO = 103; + /// OFILKJCLEGI ADOJKMBHPOO = 104; #[prost(uint32, tag = "2")] pub gpjggknoafd: u32, #[prost(oneof = "mmmnfdnljmd::Ilaakomcali", tags = "101, 102, 103, 104")] @@ -12,16 +16,16 @@ pub struct Mmmnfdnljmd { /// Nested message and enum types in `MMMNFDNLJMD`. pub mod mmmnfdnljmd { #[derive(proto_derive::CmdID)] - #[derive(Clone, PartialEq, ::prost::Oneof)] + #[derive(Clone, Copy, PartialEq, ::prost::Oneof)] pub enum Ilaakomcali { - #[prost(message, tag = "101")] - Jfoamfdllgh(super::Ljnpgkdojho), - #[prost(message, tag = "102")] - Kancdecploa(super::Bpnmjchednl), - #[prost(message, tag = "103")] - Mocbdogakao(super::Foopingafeg), - #[prost(message, tag = "104")] - Adojkmbhpoo(super::Ofilkjclegi), + #[prost(int32, tag = "101")] + Jfoamfdllgh(i32), + #[prost(int32, tag = "102")] + Kancdecploa(i32), + #[prost(int32, tag = "103")] + Mocbdogakao(i32), + #[prost(int32, tag = "104")] + Adojkmbhpoo(i32), } } #[derive(proto_derive::CmdID)] @@ -76,7 +80,7 @@ pub struct Ljnpgkdojho { #[prost(uint32, tag = "3")] pub acjcphifmln: u32, #[prost(uint32, tag = "4")] - pub nlibkabfgcc: u32, + pub marble_level_id: u32, #[prost(message, repeated, tag = "5")] pub biecgfimcfb: ::prost::alloc::vec::Vec, #[prost(uint32, tag = "6")] @@ -98,7 +102,7 @@ pub struct Bpnmjchednl { #[prost(uint32, tag = "3")] pub acjcphifmln: u32, #[prost(uint32, tag = "4")] - pub nlibkabfgcc: u32, + pub marble_level_id: u32, #[prost(message, repeated, tag = "5")] pub biecgfimcfb: ::prost::alloc::vec::Vec, #[prost(uint32, tag = "6")] @@ -136,7 +140,7 @@ pub struct Foopingafeg { #[prost(uint32, tag = "3")] pub acjcphifmln: u32, #[prost(uint32, tag = "4")] - pub nlibkabfgcc: u32, + pub marble_level_id: u32, #[prost(uint32, tag = "5")] pub ighlabggije: u32, #[prost(uint32, tag = "6")] @@ -172,7 +176,7 @@ pub struct Ofilkjclegi { #[prost(uint32, tag = "3")] pub acjcphifmln: u32, #[prost(uint32, tag = "4")] - pub nlibkabfgcc: u32, + pub marble_level_id: u32, #[prost(bool, tag = "5")] pub nleaijhapap: bool, #[prost(uint32, tag = "6")] @@ -644,6 +648,8 @@ pub struct BattleAvatar { pub gmobaocefce: u32, #[prost(message, repeated, tag = "18")] pub imjjkbjoohj: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "19")] + pub glackhopmio: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] @@ -766,6 +772,8 @@ pub struct BattleLineup { pub mfkjokajjmj: ::core::option::Option, #[prost(message, optional, tag = "14")] pub rogue_magic_battle_info: ::core::option::Option, + #[prost(message, optional, tag = "15")] + pub gegdpnkkakg: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] @@ -1147,6 +1155,8 @@ pub struct AvatarBattleInfo { pub pmklphjiohc: u32, #[prost(uint32, tag = "54")] pub mpfaenekfdc: u32, + #[prost(uint32, tag = "55")] + pub glackhopmio: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] @@ -1289,6 +1299,8 @@ pub struct Ibffajohkmo { pub blfhkgpmndk: u32, #[prost(uint32, tag = "9")] pub wave: u32, + #[prost(uint32, tag = "10")] + pub glackhopmio: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] @@ -1297,6 +1309,8 @@ pub struct Kkmpkjpggcl { pub avatar_id: u32, #[prost(int32, tag = "2")] pub abapdfgjnme: i32, + #[prost(uint32, tag = "3")] + pub glackhopmio: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] @@ -1518,7 +1532,7 @@ pub struct Chdonigoknm { #[prost(uint32, tag = "6")] pub icleenhipoh: u32, #[prost(uint32, repeated, tag = "7")] - pub boss_buff_info: ::prost::alloc::vec::Vec, + pub boss_info: ::prost::alloc::vec::Vec, #[prost(message, repeated, tag = "8")] pub odbonkcmdmp: ::prost::alloc::vec::Vec, } @@ -1671,6 +1685,50 @@ pub struct Aigknhfanga { } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ldobbiabddl { + #[prost(uint32, tag = "1")] + pub geddibikmmp: u32, + #[prost(double, tag = "2")] + pub kggdjhjlenl: f64, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Hpkeffechfg { + #[prost(enumeration = "Dlbfahoagph", tag = "1")] + pub slot: i32, + #[prost(uint32, tag = "2")] + pub config_id: u32, + #[prost(uint32, tag = "3")] + pub unique_id: u32, + #[prost(uint32, tag = "4")] + pub level: u32, + #[prost(message, repeated, tag = "5")] + pub param_list: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Pfkamafikko { + #[prost(uint32, tag = "1")] + pub labaigdgjhl: u32, + #[prost(uint32, repeated, tag = "2")] + pub jnbegheioci: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Eacdeapkilk { + #[prost(message, repeated, tag = "1")] + pub cfkjepmnlji: ::prost::alloc::vec::Vec, + #[prost(map = "uint32, uint32", tag = "2")] + pub lkgdfhfblde: ::std::collections::HashMap, + #[prost(message, repeated, tag = "3")] + pub febmncjifmn: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "4")] + pub area_id: u32, + #[prost(uint32, tag = "5")] + pub pbalfienefo: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Lhlbianfohk { #[prost(uint32, tag = "1")] pub monster_id: u32, @@ -1840,6 +1898,24 @@ pub struct Nmcmohahopl { pub dfnkmijebld: u32, } #[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Gjdkilhkied { + #[prost(uint32, tag = "1")] + pub imhhilcmmgi: u32, + #[prost(uint32, tag = "2")] + pub hahjhbfaefc: u32, + #[prost(uint32, tag = "3")] + pub bilejkhihjl: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Demlpcndjjp { + #[prost(message, optional, tag = "1")] + pub gjdokfchbga: ::core::option::Option, + #[prost(message, repeated, tag = "2")] + pub cfkjepmnlji: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct BattleStatistics { #[prost(uint32, tag = "1")] @@ -1908,6 +1984,10 @@ pub struct BattleStatistics { pub hmpgmiljapb: ::core::option::Option, #[prost(message, optional, tag = "39")] pub nocigfllifg: ::core::option::Option, + #[prost(message, optional, tag = "40")] + pub jnjiimjbojp: ::core::option::Option, + #[prost(uint32, tag = "41")] + pub kkpkaljmamf: u32, #[prost(message, repeated, tag = "42")] pub okgcipahmei: ::prost::alloc::vec::Vec, } @@ -1992,6 +2072,8 @@ pub struct Oodocmdlomf { pub bjellapogjn: ::prost::alloc::string::String, #[prost(uint64, tag = "8")] pub version: u64, + #[prost(bool, tag = "9")] + pub cocongacifj: bool, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] @@ -2002,7 +2084,7 @@ pub struct Iddlkhhlecg { pub status: i32, } #[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] +#[derive(Clone, PartialEq, ::prost::Message)] pub struct Njfgjpcandi { #[prost(uint32, tag = "1")] pub bkmpfeocfib: u32, @@ -2012,6 +2094,8 @@ pub struct Njfgjpcandi { pub jejkigabeek: u32, #[prost(uint32, tag = "4")] pub miafpfpmaca: u32, + #[prost(message, optional, tag = "5")] + pub mmohlkeikgk: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] @@ -2026,13 +2110,45 @@ pub struct Lcmifobknen { pub score: u32, } #[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Glmcgepnaia { + #[prost(uint32, tag = "1")] + pub dmkfffpdldi: u32, + #[prost(uint32, tag = "2")] + pub fojcmhimafn: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Nfobaphmibf { + #[prost(uint32, tag = "1")] + pub mkfdpcckfnf: u32, + #[prost(uint32, tag = "2")] + pub pcidndobjgb: u32, + #[prost(uint32, tag = "3")] + pub dpbmlffpokh: u32, + #[prost(uint32, tag = "4")] + pub ognepbfpilh: u32, + #[prost(message, repeated, tag = "5")] + pub ibcdnjmcfea: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "6")] + pub jeffmofipmh: u32, + #[prost(uint32, tag = "7")] + pub kmflkmmamng: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Fdhjbimpkek { + #[prost(message, optional, tag = "1")] + pub mmohlkeikgk: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Epeghcgcmhp { #[prost(string, repeated, tag = "1")] pub bhgghfjmmbm: ::prost::alloc::vec::Vec<::prost::alloc::string::String>, #[prost(bool, tag = "2")] pub fmopbfknlni: bool, - #[prost(oneof = "epeghcgcmhp::Emahjgmlbnj", tags = "1001, 1002")] + #[prost(oneof = "epeghcgcmhp::Emahjgmlbnj", tags = "1001, 1002, 1003")] pub emahjgmlbnj: ::core::option::Option, } /// Nested message and enum types in `EPEGHCGCMHP`. @@ -2044,6 +2160,8 @@ pub mod epeghcgcmhp { Dchdjallnec(super::Njfgjpcandi), #[prost(message, tag = "1002")] Embbhncjdpk(super::Lcmifobknen), + #[prost(message, tag = "1003")] + Minkkejione(super::Fdhjbimpkek), } } #[derive(proto_derive::CmdID)] @@ -2054,7 +2172,7 @@ pub struct Cbbdiomifhd { #[prost(message, optional, tag = "2")] pub nckccokdkol: ::core::option::Option, #[prost(message, optional, tag = "3")] - pub story_info: ::core::option::Option, + pub stage_info: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] @@ -2079,6 +2197,14 @@ pub struct Cdimemfjjfp { pub iokfikhhang: u32, #[prost(uint32, tag = "10")] pub cilkfjblejg: u32, + #[prost(uint32, tag = "11")] + pub mkfebpjemad: u32, + #[prost(uint32, tag = "12")] + pub efgomfdmnop: u32, + #[prost(uint32, tag = "13")] + pub jflkpcdbbjd: u32, + #[prost(uint32, tag = "14")] + pub apkcbmgelji: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] @@ -2109,577 +2235,577 @@ pub struct Biplkgdfafj { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Fonbbadfkbk { - #[prost(uint32, tag = "6")] - pub module_id: u32, - #[prost(uint32, repeated, tag = "7")] + #[prost(uint32, repeated, tag = "1")] pub jlhoggdhmhg: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "3")] - pub fdejbipgndl: u32, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "14")] pub id: u32, + #[prost(uint32, tag = "5")] + pub fdejbipgndl: u32, + #[prost(uint32, tag = "9")] + pub module_id: u32, } /// Obf: EDJAELBBBPL #[derive(proto_derive::CmdID)] -#[cmdid(2695)] +#[cmdid(2620)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetLoginActivityCsReq {} /// Obf: JHGDJDIOECM #[derive(proto_derive::CmdID)] -#[cmdid(2632)] +#[cmdid(2691)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetLoginActivityScRsp { - #[prost(message, repeated, tag = "2")] + #[prost(message, repeated, tag = "14")] pub kjcgmejfjfc: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "1")] pub retcode: u32, } /// Obf: HFNIJKDDACE #[derive(proto_derive::CmdID)] -#[cmdid(2631)] +#[cmdid(2667)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TakeLoginActivityRewardCsReq { #[prost(uint32, tag = "2")] - pub iafhepinjhl: u32, - #[prost(uint32, tag = "14")] pub id: u32, + #[prost(uint32, tag = "13")] + pub iafhepinjhl: u32, } /// Obf: BEEDJDOIKBI #[derive(proto_derive::CmdID)] -#[cmdid(2640)] +#[cmdid(2639)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TakeLoginActivityRewardScRsp { - #[prost(uint32, tag = "3")] - pub iafhepinjhl: u32, - #[prost(uint32, tag = "8")] - pub id: u32, #[prost(uint32, tag = "13")] pub module_id: u32, - #[prost(message, optional, tag = "4")] - pub reward: ::core::option::Option, - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "12")] pub retcode: u32, + #[prost(uint32, tag = "1")] + pub id: u32, + #[prost(message, optional, tag = "10")] + pub reward: ::core::option::Option, + #[prost(uint32, tag = "15")] + pub iafhepinjhl: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ActivityScheduleInfo { - #[prost(uint32, tag = "6")] - pub activity_id: u32, - #[prost(uint32, tag = "10")] - pub module_id: u32, - #[prost(int64, tag = "9")] + #[prost(int64, tag = "5")] pub end_time: i64, - #[prost(int64, tag = "12")] + #[prost(int64, tag = "13")] pub begin_time: i64, + #[prost(uint32, tag = "10")] + pub activity_id: u32, + #[prost(uint32, tag = "9")] + pub module_id: u32, } /// Obf: LIPEJIELOMO #[derive(proto_derive::CmdID)] -#[cmdid(2676)] +#[cmdid(2627)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetActivityScheduleConfigCsReq {} /// Obf: KGDABKFEHJF #[derive(proto_derive::CmdID)] -#[cmdid(2648)] +#[cmdid(2621)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetActivityScheduleConfigScRsp { - #[prost(message, repeated, tag = "13")] + #[prost(message, repeated, tag = "5")] pub activity_schedule_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "14")] pub retcode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Hmkikhbgbfp { - #[prost(uint32, tag = "8")] - pub stage_id: u32, - #[prost(bool, tag = "15")] + #[prost(bool, tag = "10")] pub taken_reward: bool, + #[prost(uint32, tag = "9")] + pub stage_id: u32, } /// Obf: MJNHBKEGKJJ #[derive(proto_derive::CmdID)] -#[cmdid(2654)] +#[cmdid(2696)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetTrialActivityDataCsReq {} /// Obf: ILDLCCMOHPI #[derive(proto_derive::CmdID)] -#[cmdid(2699)] +#[cmdid(2616)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetTrialActivityDataScRsp { - #[prost(uint32, tag = "11")] - pub retcode: u32, - #[prost(uint32, tag = "9")] - pub akbclhjhodd: u32, - #[prost(message, repeated, tag = "5")] + #[prost(message, repeated, tag = "14")] pub faglfbdceic: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "15")] + pub retcode: u32, + #[prost(uint32, tag = "4")] + pub akbclhjhodd: u32, } /// Obf: NCOLNMNCJBP #[derive(proto_derive::CmdID)] -#[cmdid(2687)] +#[cmdid(2693)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TrialActivityDataChangeScNotify { - #[prost(message, optional, tag = "7")] + #[prost(message, optional, tag = "5")] pub gljbjhjmcfp: ::core::option::Option, } /// Obf: LCBHEGHLNOO #[derive(proto_derive::CmdID)] -#[cmdid(2608)] +#[cmdid(2664)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct EnterTrialActivityStageCsReq { - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "3")] pub stage_id: u32, } /// Obf: PDCKDBHBAIM #[derive(proto_derive::CmdID)] -#[cmdid(2635)] +#[cmdid(2657)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct EnterTrialActivityStageScRsp { + #[prost(message, optional, tag = "3")] + pub battle_info: ::core::option::Option, #[prost(uint32, tag = "11")] pub retcode: u32, - #[prost(message, optional, tag = "6")] - pub battle_info: ::core::option::Option, } /// Obf: GILJFKPFFPO #[derive(proto_derive::CmdID)] -#[cmdid(2634)] +#[cmdid(2626)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TakeTrialActivityRewardCsReq { - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "15")] pub stage_id: u32, } /// Obf: NJLEPOIEAFL #[derive(proto_derive::CmdID)] -#[cmdid(2668)] +#[cmdid(2690)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TakeTrialActivityRewardScRsp { - #[prost(uint32, tag = "6")] - pub stage_id: u32, - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "12")] pub retcode: u32, - #[prost(message, optional, tag = "7")] + #[prost(uint32, tag = "8")] + pub stage_id: u32, + #[prost(message, optional, tag = "4")] pub reward: ::core::option::Option, } /// Obf: GHJFHIPDLMD #[derive(proto_derive::CmdID)] -#[cmdid(2601)] +#[cmdid(2689)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct StartTrialActivityCsReq { - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "14")] pub stage_id: u32, } /// Obf: HFCEGJOCPDN #[derive(proto_derive::CmdID)] -#[cmdid(2653)] +#[cmdid(2637)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct StartTrialActivityScRsp { - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "9")] pub stage_id: u32, - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "7")] pub retcode: u32, } /// Obf: CHLMPOPOLCE #[derive(proto_derive::CmdID)] -#[cmdid(2636)] +#[cmdid(2672)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct LeaveTrialActivityCsReq { - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "14")] pub stage_id: u32, } /// Obf: DMENGGDAFCN #[derive(proto_derive::CmdID)] -#[cmdid(2694)] +#[cmdid(2635)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct LeaveTrialActivityScRsp { #[prost(uint32, tag = "7")] - pub retcode: u32, - #[prost(uint32, tag = "4")] pub stage_id: u32, + #[prost(uint32, tag = "8")] + pub retcode: u32, } /// Obf: NGCLEMHDAHG #[derive(proto_derive::CmdID)] -#[cmdid(2627)] +#[cmdid(2653)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct CurTrialActivityScNotify { - #[prost(enumeration = "Pmidehdobhj", tag = "7")] - pub status: i32, - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "15")] pub akbclhjhodd: u32, + #[prost(enumeration = "Pmidehdobhj", tag = "5")] + pub status: i32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Bcekbnmnhoo { - #[prost(bool, tag = "12")] + #[prost(bool, tag = "10")] pub is_taken_reward: bool, - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "13")] pub module_id: u32, - #[prost(bool, tag = "11")] - pub cbnffemdbkf: bool, - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "9")] pub pehofbbdnic: u32, + #[prost(bool, tag = "3")] + pub cbnffemdbkf: bool, } /// Obf: JKHHDAMCDPN #[derive(proto_derive::CmdID)] -#[cmdid(2602)] +#[cmdid(2685)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetMaterialSubmitActivityDataCsReq {} /// Obf: MIMIBBEOEEO #[derive(proto_derive::CmdID)] -#[cmdid(2639)] +#[cmdid(2638)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetMaterialSubmitActivityDataScRsp { - #[prost(uint32, tag = "2")] - pub retcode: u32, - #[prost(message, repeated, tag = "7")] + #[prost(message, repeated, tag = "1")] pub nblhgehlodn: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "14")] + pub retcode: u32, } /// Obf: OHLPOJADNJA #[derive(proto_derive::CmdID)] -#[cmdid(2643)] +#[cmdid(2652)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SubmitMaterialSubmitActivityMaterialCsReq { - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "12")] pub pehofbbdnic: u32, } /// Obf: EAAKFJNFGKB #[derive(proto_derive::CmdID)] -#[cmdid(2633)] +#[cmdid(2668)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SubmitMaterialSubmitActivityMaterialScRsp { - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "12")] pub retcode: u32, - #[prost(message, optional, tag = "11")] + #[prost(message, optional, tag = "2")] pub blaaoiaeiah: ::core::option::Option, } /// Obf: BEKEMIDKBFF #[derive(proto_derive::CmdID)] -#[cmdid(2642)] +#[cmdid(2694)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TakeMaterialSubmitActivityRewardCsReq { - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "13")] pub pehofbbdnic: u32, } /// Obf: BKGKKDKCKHF #[derive(proto_derive::CmdID)] -#[cmdid(2677)] +#[cmdid(2636)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TakeMaterialSubmitActivityRewardScRsp { - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "8")] pub pehofbbdnic: u32, - #[prost(message, optional, tag = "15")] - pub reward: ::core::option::Option, - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "11")] pub retcode: u32, + #[prost(message, optional, tag = "7")] + pub reward: ::core::option::Option, } /// Obf: OHANJNJCEPG #[derive(proto_derive::CmdID)] -#[cmdid(2674)] +#[cmdid(2633)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetAvatarDeliverRewardActivityDataCsReq {} /// Obf: OHMLBNLDMAC #[derive(proto_derive::CmdID)] -#[cmdid(2690)] +#[cmdid(2607)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetAvatarDeliverRewardActivityDataScRsp { - #[prost(uint32, tag = "6")] - pub retcode: u32, - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "15")] pub avatar_id: u32, - #[prost(bool, tag = "5")] + #[prost(uint32, tag = "1")] + pub retcode: u32, + #[prost(bool, tag = "2")] pub is_taken_reward: bool, } /// Obf: EKNDBKPMEDA #[derive(proto_derive::CmdID)] -#[cmdid(2617)] +#[cmdid(2648)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct AvatarDeliverRewardChooseAvatarCsReq { - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "1")] pub avatar_id: u32, } /// Obf: AACHMPNFJHN #[derive(proto_derive::CmdID)] -#[cmdid(2669)] +#[cmdid(2625)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct AvatarDeliverRewardChooseAvatarScRsp { - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "2")] pub avatar_id: u32, - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "7")] pub retcode: u32, } /// Obf: ABMHBIAPENA #[derive(proto_derive::CmdID)] -#[cmdid(2649)] +#[cmdid(2643)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct AvatarDeliverRewardTakeRewardCsReq {} /// Obf: OLKPEIJAMPM #[derive(proto_derive::CmdID)] -#[cmdid(2603)] +#[cmdid(2612)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct AvatarDeliverRewardTakeRewardScRsp { - #[prost(uint32, tag = "14")] - pub retcode: u32, - #[prost(message, optional, tag = "8")] + #[prost(message, optional, tag = "15")] pub reward: ::core::option::Option, + #[prost(uint32, tag = "8")] + pub retcode: u32, } /// Obf: JHJJGMHMHEH #[derive(proto_derive::CmdID)] -#[cmdid(1395)] +#[cmdid(1320)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct EnterAdventureCsReq { - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "2")] pub map_id: u32, } /// Obf: IPOCHENBLOI #[derive(proto_derive::CmdID)] -#[cmdid(1332)] +#[cmdid(1391)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct EnterAdventureScRsp { - #[prost(message, optional, tag = "2")] + #[prost(message, optional, tag = "14")] pub scene: ::core::option::Option, - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "1")] pub retcode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct FarmStageGachaInfo { - #[prost(int64, tag = "11")] + #[prost(int64, tag = "15")] pub end_time: i64, - #[prost(uint32, tag = "4")] - pub gacha_id: u32, - #[prost(int64, tag = "5")] + #[prost(int64, tag = "10")] pub begin_time: i64, + #[prost(uint32, tag = "7")] + pub gacha_id: u32, } /// Obf: HGGIMLCFBBI #[derive(proto_derive::CmdID)] -#[cmdid(1331)] +#[cmdid(1367)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetFarmStageGachaInfoCsReq { - #[prost(uint32, repeated, tag = "9")] + #[prost(uint32, repeated, tag = "7")] pub farm_stage_gacha_id_list: ::prost::alloc::vec::Vec, } /// Obf: HDCFNKHHELC #[derive(proto_derive::CmdID)] -#[cmdid(1340)] +#[cmdid(1339)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetFarmStageGachaInfoScRsp { - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "7")] pub retcode: u32, - #[prost(message, repeated, tag = "4")] + #[prost(message, repeated, tag = "10")] pub farm_stage_gacha_info_list: ::prost::alloc::vec::Vec, } /// Obf: LGMLDHNBGKM #[derive(proto_derive::CmdID)] -#[cmdid(1376)] +#[cmdid(1327)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct QuickStartCocoonStageCsReq { - #[prost(uint32, tag = "10")] - pub wave: u32, - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "14")] pub world_level: u32, - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "2")] pub cocoon_id: u32, + #[prost(uint32, tag = "8")] + pub wave: u32, } /// Obf: JPJCEMFPGMI #[derive(proto_derive::CmdID)] -#[cmdid(1348)] +#[cmdid(1321)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct QuickStartCocoonStageScRsp { - #[prost(message, optional, tag = "9")] - pub battle_info: ::core::option::Option, - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "5")] pub wave: u32, - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "2")] pub cocoon_id: u32, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "3")] pub retcode: u32, + #[prost(message, optional, tag = "7")] + pub battle_info: ::core::option::Option, } /// Obf: MGOCDCOOKBM #[derive(proto_derive::CmdID)] -#[cmdid(1371)] +#[cmdid(1370)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct QuickStartFarmElementCsReq { - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "15")] pub world_level: u32, - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "10")] pub jdanoknhnhl: u32, } /// Obf: LILJNDPJMGO #[derive(proto_derive::CmdID)] -#[cmdid(1352)] +#[cmdid(1359)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct QuickStartFarmElementScRsp { - #[prost(uint32, tag = "12")] - pub jdanoknhnhl: u32, - #[prost(message, optional, tag = "2")] + #[prost(message, optional, tag = "7")] pub battle_info: ::core::option::Option, - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "8")] + pub jdanoknhnhl: u32, + #[prost(uint32, tag = "9")] pub world_level: u32, - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "2")] pub retcode: u32, } /// Obf: LAEAAHOIMHE #[derive(proto_derive::CmdID)] -#[cmdid(1322)] +#[cmdid(1354)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct CocoonSweepCsReq { - #[prost(uint32, tag = "2")] - pub world_level: u32, - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "9")] pub cocoon_id: u32, + #[prost(uint32, tag = "3")] + pub world_level: u32, } /// Obf: MNDINDAANLM #[derive(proto_derive::CmdID)] -#[cmdid(1356)] +#[cmdid(1377)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct CocoonSweepScRsp { - #[prost(message, optional, tag = "11")] - pub nhanakjfeab: ::core::option::Option, - #[prost(message, optional, tag = "12")] + #[prost(message, optional, tag = "13")] pub jhmmoojpkha: ::core::option::Option, - #[prost(uint32, tag = "3")] - pub cocoon_id: u32, - #[prost(uint32, tag = "6")] + #[prost(message, optional, tag = "1")] + pub nhanakjfeab: ::core::option::Option, + #[prost(uint32, tag = "10")] pub retcode: u32, + #[prost(uint32, tag = "12")] + pub cocoon_id: u32, } /// Obf: BDNEKEEAGHG #[derive(proto_derive::CmdID)] -#[cmdid(1372)] +#[cmdid(1380)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct FarmElementSweepCsReq { - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "10")] pub world_level: u32, - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "12")] pub jdanoknhnhl: u32, } /// Obf: CFIIHLKJDHO #[derive(proto_derive::CmdID)] -#[cmdid(1385)] +#[cmdid(1302)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct FarmElementSweepScRsp { - #[prost(uint32, tag = "7")] - pub retcode: u32, - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "8")] pub jdanoknhnhl: u32, - #[prost(message, optional, tag = "5")] + #[prost(message, optional, tag = "7")] pub jhmmoojpkha: ::core::option::Option, + #[prost(uint32, tag = "1")] + pub retcode: u32, } /// Obf: GBMCHNAAPHJ #[derive(proto_derive::CmdID)] -#[cmdid(4804)] +#[cmdid(4849)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct EnterAetherDivideSceneCsReq { - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "13")] pub bdkngdocpgp: u32, } /// Obf: AGJOLICKDKI #[derive(proto_derive::CmdID)] -#[cmdid(4846)] +#[cmdid(4827)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct EnterAetherDivideSceneScRsp { - #[prost(uint32, tag = "15")] - pub retcode: u32, - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "5")] pub bdkngdocpgp: u32, + #[prost(uint32, tag = "13")] + pub retcode: u32, } /// Obf: CKMPKDBGMOO #[derive(proto_derive::CmdID)] -#[cmdid(4802)] +#[cmdid(4818)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct LeaveAetherDivideSceneCsReq {} /// Obf: NFEBDGBMPMN #[derive(proto_derive::CmdID)] -#[cmdid(4837)] +#[cmdid(4836)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct LeaveAetherDivideSceneScRsp { - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "12")] pub retcode: u32, } /// Obf: IEMNKFBPDGA #[derive(proto_derive::CmdID)] -#[cmdid(4836)] +#[cmdid(4811)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct StartAetherDivideSceneBattleCsReq { - #[prost(uint32, tag = "1")] - pub attacked_group_id: u32, - #[prost(message, repeated, tag = "9")] - pub assist_monster_wave_list: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "5")] + #[prost(uint32, repeated, tag = "7")] pub assist_monster_entity_id_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "8")] - pub caster_id: u32, - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "14")] + pub attacked_group_id: u32, + #[prost(uint32, tag = "11")] pub skill_index: u32, + #[prost(message, repeated, tag = "10")] + pub assist_monster_wave_list: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "6")] + pub caster_id: u32, } /// Obf: ENAPGDHEMFD #[derive(proto_derive::CmdID)] -#[cmdid(4817)] +#[cmdid(4837)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct StartAetherDivideSceneBattleScRsp { - #[prost(uint32, tag = "7")] - pub attacked_group_id: u32, - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "11")] pub retcode: u32, - #[prost(message, optional, tag = "12")] + #[prost(uint32, tag = "6")] + pub attacked_group_id: u32, + #[prost(message, optional, tag = "5")] pub battle_info: ::core::option::Option, } /// Obf: BBPHCGMCLDE #[derive(proto_derive::CmdID)] -#[cmdid(4827)] +#[cmdid(4817)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct StartAetherDivideChallengeBattleCsReq { - #[prost(uint32, tag = "8")] - pub knlbemfihnp: u32, - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "5")] pub challenge_id: u32, + #[prost(uint32, tag = "6")] + pub knlbemfihnp: u32, } /// Obf: CLDHFFGAAOA #[derive(proto_derive::CmdID)] -#[cmdid(4815)] +#[cmdid(4839)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct StartAetherDivideChallengeBattleScRsp { - #[prost(message, optional, tag = "9")] + #[prost(message, optional, tag = "11")] pub battle_info: ::core::option::Option, - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "1")] pub retcode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Hffiajianhd { - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "12")] pub slot: u32, - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "8")] pub item_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Gjilpebeool { #[prost(uint32, tag = "11")] - pub promotion: u32, - #[prost(uint32, tag = "9")] pub exp: u32, - #[prost(message, optional, tag = "5")] + #[prost(message, optional, tag = "7")] pub sp_bar: ::core::option::Option, - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "3")] + pub promotion: u32, + #[prost(uint32, tag = "10")] pub offgcgdndil: u32, - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "8")] pub jdhchabclcc: u32, - #[prost(message, repeated, tag = "10")] + #[prost(message, repeated, tag = "1")] pub passive_skill: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Jhjlepefadf { - #[prost(uint32, tag = "11")] - pub slot: u32, - #[prost(uint32, repeated, tag = "8")] + #[prost(uint32, repeated, tag = "1")] pub gphepenpccp: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "14")] + pub slot: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Ibmcnafobnb { - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "9")] pub num: u32, - #[prost(uint32, tag = "11")] - pub ebcbklncmip: u32, - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "4")] pub item_id: u32, + #[prost(uint32, tag = "5")] + pub ebcbklncmip: u32, } /// Obf: FODLPLLGEJK #[derive(proto_derive::CmdID)] @@ -2688,137 +2814,137 @@ pub struct Ibmcnafobnb { pub struct GetAetherDivideInfoCsReq {} /// Obf: FOAIHIJIJIL #[derive(proto_derive::CmdID)] -#[cmdid(4807)] +#[cmdid(4806)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetAetherDivideInfoScRsp { - #[prost(message, repeated, tag = "6")] - pub lineup_list: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "10")] + #[prost(uint32, tag = "15")] + pub retcode: u32, + #[prost(message, repeated, tag = "3")] pub skill_info_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "13")] + pub pfljggdaofm: u32, + #[prost(message, repeated, tag = "11")] + pub lineup_list: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "8")] pub phlkdnghooa: u32, + #[prost(message, repeated, tag = "9")] + pub nlfihkicddo: ::prost::alloc::vec::Vec, #[prost(uint32, tag = "14")] pub jdhlmhjbojm: u32, - #[prost(uint32, tag = "9")] - pub pfljggdaofm: u32, - #[prost(message, repeated, tag = "4")] - pub nlfihkicddo: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "8")] - pub retcode: u32, - #[prost(uint32, tag = "15")] - pub egemndnedip: u32, #[prost(uint32, tag = "2")] pub ibcipiidcol: u32, + #[prost(uint32, tag = "6")] + pub egemndnedip: u32, } /// Obf: KBKOKHBKJIN #[derive(proto_derive::CmdID)] -#[cmdid(4850)] +#[cmdid(4828)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SetAetherDivideLineUpCsReq { - #[prost(message, optional, tag = "13")] + #[prost(message, optional, tag = "1")] pub lineup: ::core::option::Option, } /// Obf: IFHPLDIHDDI #[derive(proto_derive::CmdID)] -#[cmdid(4840)] +#[cmdid(4819)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SetAetherDivideLineUpScRsp { - #[prost(uint32, tag = "7")] - pub retcode: u32, - #[prost(message, optional, tag = "5")] + #[prost(message, optional, tag = "13")] pub lineup: ::core::option::Option, + #[prost(uint32, tag = "3")] + pub retcode: u32, } /// Obf: ILCFPIGENHF #[derive(proto_derive::CmdID)] -#[cmdid(4820)] +#[cmdid(4826)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct EquipAetherDividePassiveSkillCsReq { #[prost(uint32, tag = "2")] - pub slot: u32, - #[prost(uint32, tag = "9")] - pub item_id: u32, - #[prost(uint32, tag = "4")] pub offgcgdndil: u32, + #[prost(uint32, tag = "12")] + pub item_id: u32, + #[prost(uint32, tag = "13")] + pub slot: u32, } /// Obf: DCCCBLEJJAH #[derive(proto_derive::CmdID)] -#[cmdid(4844)] +#[cmdid(4834)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct EquipAetherDividePassiveSkillScRsp { - #[prost(message, optional, tag = "8")] - pub pbgmmfomcke: ::core::option::Option, - #[prost(message, optional, tag = "7")] + #[prost(message, optional, tag = "15")] pub bjmebepplei: ::core::option::Option, #[prost(uint32, tag = "6")] pub retcode: u32, + #[prost(message, optional, tag = "10")] + pub pbgmmfomcke: ::core::option::Option, } /// Obf: MMOFLMJNLPA #[derive(proto_derive::CmdID)] -#[cmdid(4832)] +#[cmdid(4846)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ClearAetherDividePassiveSkillCsReq { - #[prost(uint32, tag = "2")] - pub offgcgdndil: u32, #[prost(uint32, tag = "13")] + pub offgcgdndil: u32, + #[prost(uint32, tag = "5")] pub slot: u32, } /// Obf: CCMGFBKFGDL #[derive(proto_derive::CmdID)] -#[cmdid(4823)] +#[cmdid(4822)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ClearAetherDividePassiveSkillScRsp { - #[prost(message, optional, tag = "8")] - pub pbgmmfomcke: ::core::option::Option, - #[prost(message, optional, tag = "13")] + #[prost(message, optional, tag = "12")] pub bjmebepplei: ::core::option::Option, - #[prost(uint32, tag = "10")] + #[prost(message, optional, tag = "4")] + pub pbgmmfomcke: ::core::option::Option, + #[prost(uint32, tag = "7")] pub retcode: u32, } /// Obf: HKKBFELNEHG #[derive(proto_derive::CmdID)] -#[cmdid(4829)] +#[cmdid(4813)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct AetherDivideSpiritExpUpCsReq { - #[prost(uint32, tag = "1")] - pub offgcgdndil: u32, - #[prost(uint32, tag = "9")] - pub jdhlmhjbojm: u32, - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "4")] pub kbmlajoaane: u32, + #[prost(uint32, tag = "1")] + pub jdhlmhjbojm: u32, + #[prost(uint32, tag = "10")] + pub offgcgdndil: u32, } /// Obf: KPBKAKNMNED #[derive(proto_derive::CmdID)] -#[cmdid(4834)] +#[cmdid(4840)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct AetherDivideSpiritExpUpScRsp { - #[prost(uint32, tag = "10")] - pub retcode: u32, - #[prost(uint32, tag = "11")] - pub jdhlmhjbojm: u32, #[prost(message, optional, tag = "2")] pub bjmebepplei: ::core::option::Option, + #[prost(uint32, tag = "1")] + pub retcode: u32, + #[prost(uint32, tag = "6")] + pub jdhlmhjbojm: u32, } /// Obf: CKELLMBLCAL #[derive(proto_derive::CmdID)] -#[cmdid(4826)] +#[cmdid(4825)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SwitchAetherDivideLineUpSlotCsReq { - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "10")] pub knlbemfihnp: u32, } /// Obf: FFCIBDGAMFN #[derive(proto_derive::CmdID)] -#[cmdid(4822)] +#[cmdid(4843)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SwitchAetherDivideLineUpSlotScRsp { - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "5")] pub knlbemfihnp: u32, - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "2")] pub retcode: u32, } /// Obf: MFMDINOGOKE #[derive(proto_derive::CmdID)] -#[cmdid(4816)] +#[cmdid(4830)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct StartAetherDivideStageBattleCsReq { #[prost(uint32, tag = "10")] @@ -2826,17 +2952,17 @@ pub struct StartAetherDivideStageBattleCsReq { } /// Obf: MMCMFMJNHFD #[derive(proto_derive::CmdID)] -#[cmdid(4842)] +#[cmdid(4803)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct StartAetherDivideStageBattleScRsp { - #[prost(message, optional, tag = "15")] - pub battle_info: ::core::option::Option, - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "3")] pub retcode: u32, + #[prost(message, optional, tag = "13")] + pub battle_info: ::core::option::Option, } /// Obf: PHJIPDDMMKB #[derive(proto_derive::CmdID)] -#[cmdid(4813)] +#[cmdid(4831)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct AetherDivideLineupScNotify { #[prost(message, optional, tag = "5")] @@ -2844,46 +2970,46 @@ pub struct AetherDivideLineupScNotify { } /// Obf: BOMBCLHPBHP #[derive(proto_derive::CmdID)] -#[cmdid(4818)] +#[cmdid(4824)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct AetherDivideSpiritInfoScNotify { - #[prost(message, repeated, tag = "15")] + #[prost(message, repeated, tag = "12")] pub mgegimbbajb: ::prost::alloc::vec::Vec, #[prost(uint32, tag = "11")] pub jdhlmhjbojm: u32, - #[prost(message, optional, tag = "10")] + #[prost(message, optional, tag = "7")] pub bjmebepplei: ::core::option::Option, } /// Obf: HGNAHIANDOC #[derive(proto_derive::CmdID)] -#[cmdid(4801)] +#[cmdid(4814)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetAetherDivideChallengeInfoCsReq {} /// Obf: FPIDHHNHPAB #[derive(proto_derive::CmdID)] -#[cmdid(4805)] +#[cmdid(4801)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetAetherDivideChallengeInfoScRsp { - #[prost(uint32, tag = "13")] - pub pcnnmjbjioc: u32, - #[prost(uint32, repeated, tag = "7")] - pub bfdipgblmmo: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "12")] - pub gkhjkfcccgp: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "2")] pub retcode: u32, + #[prost(uint32, tag = "7")] + pub pcnnmjbjioc: u32, + #[prost(uint32, repeated, tag = "8")] + pub gkhjkfcccgp: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "10")] + pub bfdipgblmmo: ::prost::alloc::vec::Vec, } /// Obf: JFOELNLGHKM #[derive(proto_derive::CmdID)] -#[cmdid(4835)] +#[cmdid(4820)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct AetherDivideFinishChallengeScNotify { - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "8")] pub challenge_id: u32, } /// Obf: CEOKHNMHAON #[derive(proto_derive::CmdID)] -#[cmdid(4839)] +#[cmdid(4816)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct AetherDivideTainerInfoScNotify { #[prost(uint32, tag = "11")] @@ -2891,56 +3017,56 @@ pub struct AetherDivideTainerInfoScNotify { } /// Obf: CKLFIPMKMBM #[derive(proto_derive::CmdID)] -#[cmdid(4811)] +#[cmdid(4848)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct AetherDivideSkillItemScNotify { - #[prost(uint32, tag = "9")] - pub num: u32, - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "3")] pub item_id: u32, + #[prost(uint32, tag = "11")] + pub num: u32, } /// Obf: PLIGNAIDLND #[derive(proto_derive::CmdID)] -#[cmdid(4806)] +#[cmdid(4804)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct AetherDivideRefreshEndlessCsReq {} /// Obf: BOAPINGNNNN #[derive(proto_derive::CmdID)] -#[cmdid(4821)] +#[cmdid(4835)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct AetherDivideRefreshEndlessScRsp { - #[prost(uint32, tag = "7")] - pub retcode: u32, - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "6")] pub ibcipiidcol: u32, + #[prost(uint32, tag = "5")] + pub retcode: u32, } /// Obf: PHJIOLOKLHE #[derive(proto_derive::CmdID)] -#[cmdid(4849)] +#[cmdid(4847)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct AetherDivideRefreshEndlessScNotify { - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "15")] pub ibcipiidcol: u32, } /// Obf: JKNAPGCLALC #[derive(proto_derive::CmdID)] -#[cmdid(4814)] +#[cmdid(4809)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct AetherDivideTakeChallengeRewardCsReq { - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "8")] pub challenge_id: u32, } /// Obf: IEGDPIEIGKF #[derive(proto_derive::CmdID)] -#[cmdid(4808)] +#[cmdid(4850)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct AetherDivideTakeChallengeRewardScRsp { - #[prost(message, optional, tag = "14")] - pub reward: ::core::option::Option, - #[prost(uint32, tag = "9")] - pub challenge_id: u32, - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "10")] pub retcode: u32, + #[prost(message, optional, tag = "5")] + pub reward: ::core::option::Option, + #[prost(uint32, tag = "12")] + pub challenge_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] @@ -2948,141 +3074,141 @@ pub struct Jongagachho {} #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Adoleofegok { - #[prost(uint32, tag = "10")] - pub poiiaiakilf: u32, #[prost(uint32, tag = "12")] + pub poiiaiakilf: u32, + #[prost(uint32, tag = "6")] pub map_id: u32, } /// Obf: OAJLGIONPGE #[derive(proto_derive::CmdID)] -#[cmdid(4795)] +#[cmdid(4720)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetAlleyInfoCsReq { - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "8")] pub level: u32, - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "2")] pub shop_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Agademajimd { - #[prost(message, repeated, tag = "10")] - pub hnfojbcjamg: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "3")] - pub fmjplhohbab: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "2")] + pub omngcijalfm: ::prost::alloc::vec::Vec, #[prost(message, repeated, tag = "14")] pub immlphdnmol: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "12")] - pub omngcijalfm: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "15")] + pub hnfojbcjamg: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "9")] + pub fmjplhohbab: ::prost::alloc::vec::Vec, } /// Obf: FCFGLDOMNDJ #[derive(proto_derive::CmdID)] -#[cmdid(4732)] +#[cmdid(4791)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetAlleyInfoScRsp { - #[prost(uint32, tag = "15")] - pub nopodeimffb: u32, - #[prost(message, optional, tag = "8")] - pub bokolcpkejm: ::core::option::Option, - #[prost(message, repeated, tag = "12")] - pub bjcmphlpknf: ::prost::alloc::vec::Vec, - #[prost(map = "uint32, uint32", tag = "9")] + #[prost(map = "uint32, uint32", tag = "3")] pub nplakeokekb: ::std::collections::HashMap, - #[prost(uint32, repeated, tag = "4")] - pub gefndeeikef: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "3")] - pub oedpopcohgb: ::prost::alloc::vec::Vec, - #[prost(message, optional, tag = "11")] + #[prost(uint32, tag = "12")] + pub retcode: u32, + #[prost(uint32, tag = "1")] + pub level: u32, + #[prost(message, optional, tag = "5")] + pub bokolcpkejm: ::core::option::Option, + #[prost(message, optional, tag = "6")] pub njgamccgadc: ::core::option::Option, #[prost(uint32, repeated, tag = "2")] + pub gefndeeikef: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "4")] + pub nopodeimffb: u32, + #[prost(uint32, repeated, tag = "8")] + pub oedpopcohgb: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "15")] + pub bjcmphlpknf: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "7")] pub glboemjjahd: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "7")] - pub level: u32, - #[prost(uint32, tag = "5")] - pub retcode: u32, - #[prost(message, optional, tag = "1")] + #[prost(message, optional, tag = "9")] pub klpngfnmipi: ::core::option::Option, - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "11")] pub dbjhemippim: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Kfaifhopnhh { - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "4")] pub bddldnejfkn: u32, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "15")] pub iffppglafnb: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Kgcanljikcp { - #[prost(message, repeated, tag = "14")] - pub kalfmcaghdo: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "2")] pub goods_id: u32, + #[prost(message, repeated, tag = "5")] + pub kalfmcaghdo: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct AlleyPlacingShip { - #[prost(message, repeated, tag = "12")] + #[prost(message, repeated, tag = "1")] pub goods_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "15")] pub ship_id: u32, } /// Obf: IEEAOPJGINP #[derive(proto_derive::CmdID)] -#[cmdid(4716)] +#[cmdid(4705)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct AlleyPlacingGameCsReq { - #[prost(uint32, tag = "10")] - pub indeplofdec: u32, - #[prost(uint32, tag = "13")] - pub bclnmidffoh: u32, - #[prost(uint32, tag = "2")] - pub hlojkekipkf: u32, - #[prost(uint32, tag = "6")] - pub engdbiimaff: u32, - #[prost(uint32, tag = "11")] - pub bmnhhidhodd: u32, - #[prost(uint32, tag = "4")] - pub fjdabppandc: u32, - #[prost(message, optional, tag = "15")] - pub ejjodhjhham: ::core::option::Option, - #[prost(uint32, tag = "5")] - pub dhhjlchclaf: u32, - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "9")] pub keokdnikbda: u32, + #[prost(uint32, tag = "10")] + pub hlojkekipkf: u32, + #[prost(uint32, tag = "8")] + pub bclnmidffoh: u32, + #[prost(uint32, tag = "5")] + pub bmnhhidhodd: u32, + #[prost(message, optional, tag = "14")] + pub ejjodhjhham: ::core::option::Option, + #[prost(uint32, tag = "11")] + pub fjdabppandc: u32, + #[prost(uint32, tag = "15")] + pub engdbiimaff: u32, + #[prost(uint32, tag = "13")] + pub dhhjlchclaf: u32, + #[prost(uint32, tag = "2")] + pub indeplofdec: u32, } /// Obf: BFMIPGGOELO #[derive(proto_derive::CmdID)] -#[cmdid(4746)] +#[cmdid(4774)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct AlleyPlacingGameScRsp { - #[prost(uint32, tag = "14")] - pub koficklljni: u32, - #[prost(uint32, tag = "2")] - pub event_id: u32, - #[prost(uint32, tag = "4")] - pub retcode: u32, - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "8")] pub khibbgphdmb: u32, - #[prost(uint32, tag = "7")] - pub elbbanddjci: u32, - #[prost(uint32, tag = "1")] - pub ilegfkgcmom: u32, - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "2")] pub kfboklhdjda: u32, - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "11")] + pub elbbanddjci: u32, + #[prost(uint32, tag = "5")] + pub koficklljni: u32, + #[prost(uint32, tag = "14")] pub pglgblkkida: u32, + #[prost(uint32, tag = "10")] + pub event_id: u32, + #[prost(uint32, tag = "12")] + pub retcode: u32, + #[prost(uint32, tag = "13")] + pub ilegfkgcmom: u32, } /// Obf: ICABJGOKGHH #[derive(proto_derive::CmdID)] -#[cmdid(4798)] +#[cmdid(4740)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ActivityRaidPlacingGameCsReq { - #[prost(message, optional, tag = "11")] + #[prost(message, optional, tag = "10")] pub ejjodhjhham: ::core::option::Option, - #[prost(oneof = "activity_raid_placing_game_cs_req::Dgephknepbm", tags = "14, 1")] + #[prost(oneof = "activity_raid_placing_game_cs_req::Dgephknepbm", tags = "14, 3")] pub dgephknepbm: ::core::option::Option< activity_raid_placing_game_cs_req::Dgephknepbm, >, @@ -3094,18 +3220,18 @@ pub mod activity_raid_placing_game_cs_req { pub enum Dgephknepbm { #[prost(uint32, tag = "14")] Cjemmdpiclj(u32), - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "3")] Fjdabppandc(u32), } } /// Obf: OLAFFEPAICB #[derive(proto_derive::CmdID)] -#[cmdid(4764)] +#[cmdid(4718)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ActivityRaidPlacingGameScRsp { - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "2")] pub retcode: u32, - #[prost(oneof = "activity_raid_placing_game_sc_rsp::Dgephknepbm", tags = "4, 13")] + #[prost(oneof = "activity_raid_placing_game_sc_rsp::Dgephknepbm", tags = "4, 14")] pub dgephknepbm: ::core::option::Option< activity_raid_placing_game_sc_rsp::Dgephknepbm, >, @@ -3117,230 +3243,230 @@ pub mod activity_raid_placing_game_sc_rsp { pub enum Dgephknepbm { #[prost(uint32, tag = "4")] Cjemmdpiclj(u32), - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "14")] Fjdabppandc(u32), } } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Ecjmjjkjgop { - #[prost(uint32, tag = "3")] - pub hdkdkjbdgcc: u32, - #[prost(uint32, repeated, tag = "10")] - pub jdjcnbgoglp: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "1")] - pub fbeildajede: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "2")] - pub cpgajpckcdg: u32, - #[prost(uint32, tag = "14")] - pub jalhneidhgj: u32, #[prost(bool, tag = "7")] pub iichhokopgg: bool, + #[prost(uint32, tag = "1")] + pub hdkdkjbdgcc: u32, + #[prost(uint32, repeated, tag = "4")] + pub jdjcnbgoglp: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "13")] + pub jalhneidhgj: u32, + #[prost(uint32, tag = "2")] + pub cpgajpckcdg: u32, + #[prost(uint32, repeated, tag = "10")] + pub fbeildajede: ::prost::alloc::vec::Vec, } /// Obf: DFLHKJHDOCK #[derive(proto_derive::CmdID)] -#[cmdid(4743)] +#[cmdid(4752)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct AlleyOrderChangedScNotify { - #[prost(message, optional, tag = "1")] + #[prost(message, optional, tag = "11")] pub pphiadnkgaf: ::core::option::Option, } /// Obf: EMCEPDLELHE #[derive(proto_derive::CmdID)] -#[cmdid(4729)] +#[cmdid(4706)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct AlleyShipUnlockScNotify { - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "15")] pub ejdfknmnale: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Lllomacpcgb { - #[prost(uint32, tag = "9")] - pub lepacdhlbib: u32, - #[prost(uint32, tag = "8")] - pub shop_id: u32, - #[prost(uint32, repeated, tag = "13")] - pub dgnkgdlillb: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "10")] pub behpabeeodh: u32, - #[prost(uint32, repeated, tag = "11")] - pub cadhphlnoch: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "10")] - pub ppibbkhlmjc: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "15")] + #[prost(uint32, repeated, tag = "15")] + pub dgnkgdlillb: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "4")] pub cakccbjohoi: u32, + #[prost(uint32, tag = "6")] + pub lepacdhlbib: u32, + #[prost(uint32, repeated, tag = "11")] + pub ppibbkhlmjc: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "7")] + pub shop_id: u32, + #[prost(uint32, repeated, tag = "3")] + pub cadhphlnoch: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Njaoiggmeal { - #[prost(message, repeated, tag = "15")] + #[prost(message, repeated, tag = "4")] pub hofdbflcgkb: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "11")] pub bclnmidffoh: u32, - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "15")] pub map_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct LogisticsScore { - #[prost(uint32, tag = "7")] - pub unlock_level: u32, - #[prost(uint32, tag = "11")] - pub max_score: u32, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "9")] pub last_level: u32, - #[prost(uint32, tag = "4")] - pub last_max_score: u32, - #[prost(uint32, tag = "5")] - pub cur_score: u32, - #[prost(message, optional, tag = "1")] - pub reward: ::core::option::Option, - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "13")] + pub max_score: u32, + #[prost(uint32, tag = "15")] pub map_id: u32, + #[prost(message, optional, tag = "3")] + pub reward: ::core::option::Option, + #[prost(uint32, tag = "8")] + pub last_max_score: u32, + #[prost(uint32, tag = "11")] + pub unlock_level: u32, + #[prost(uint32, tag = "14")] + pub cur_score: u32, } /// Obf: BAKNCHMDANL #[derive(proto_derive::CmdID)] -#[cmdid(4731)] +#[cmdid(4767)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct LogisticsGameCsReq { - #[prost(message, repeated, tag = "12")] + #[prost(message, repeated, tag = "5")] pub apmcphfmaeg: ::prost::alloc::vec::Vec, - #[prost(bool, tag = "2")] + #[prost(bool, tag = "14")] pub boblnbjmkca: bool, } /// Obf: ODAENPNMIHC #[derive(proto_derive::CmdID)] -#[cmdid(4707)] +#[cmdid(4722)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct LogisticsScoreRewardSyncInfoScNotify { - #[prost(message, repeated, tag = "8")] + #[prost(message, repeated, tag = "11")] pub fmjplhohbab: ::prost::alloc::vec::Vec, } /// Obf: MECOFAJONFP #[derive(proto_derive::CmdID)] -#[cmdid(4740)] +#[cmdid(4739)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct LogisticsGameScRsp { - #[prost(uint32, tag = "11")] - pub event_id: u32, - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "4")] pub retcode: u32, - #[prost(message, repeated, tag = "14")] + #[prost(uint32, tag = "7")] + pub event_id: u32, + #[prost(message, repeated, tag = "13")] pub fmjplhohbab: ::prost::alloc::vec::Vec, - #[prost(bool, tag = "2")] + #[prost(bool, tag = "3")] pub boblnbjmkca: bool, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Hehaomiamgl { - #[prost(enumeration = "Bjlncfjoiaf", tag = "9")] - pub state: i32, - #[prost(uint32, tag = "4")] - pub event_id: u32, - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "3")] pub ningbnbmkop: u32, + #[prost(uint32, tag = "2")] + pub event_id: u32, + #[prost(enumeration = "Bjlncfjoiaf", tag = "6")] + pub state: i32, } /// Obf: IIBMDIJBLOB #[derive(proto_derive::CmdID)] -#[cmdid(4771)] +#[cmdid(4770)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct StartAlleyEventCsReq { - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "13")] pub event_id: u32, } /// Obf: GCCCHNPFPLP #[derive(proto_derive::CmdID)] -#[cmdid(4752)] +#[cmdid(4759)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct StartAlleyEventScRsp { - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "6")] pub event_id: u32, - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "7")] pub retcode: u32, } /// Obf: GBOOJMAOLDH #[derive(proto_derive::CmdID)] -#[cmdid(4722)] +#[cmdid(4754)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct AlleyEventChangeNotify { - #[prost(message, optional, tag = "12")] + #[prost(message, optional, tag = "14")] pub nfldodiabcl: ::core::option::Option, - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "8")] pub hcnldibeaca: u32, } /// Obf: PDPEIEHBKDN #[derive(proto_derive::CmdID)] -#[cmdid(4756)] +#[cmdid(4777)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct AlleyEventEffectNotify { - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "13")] pub lfilnmfdnig: u32, } /// Obf: GJLHOFGMAHJ #[derive(proto_derive::CmdID)] -#[cmdid(4772)] +#[cmdid(4780)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TakePrestigeRewardCsReq { - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "15")] pub level: u32, } /// Obf: FGNNNDKEEHB #[derive(proto_derive::CmdID)] -#[cmdid(4785)] +#[cmdid(4702)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TakePrestigeRewardScRsp { + #[prost(uint32, tag = "2")] + pub retcode: u32, + #[prost(uint32, tag = "3")] + pub level: u32, #[prost(message, optional, tag = "1")] pub reward: ::core::option::Option, - #[prost(uint32, tag = "4")] - pub retcode: u32, - #[prost(uint32, tag = "10")] - pub level: u32, } /// Obf: AGLOLFIPCDP #[derive(proto_derive::CmdID)] -#[cmdid(4742)] +#[cmdid(4794)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct PrestigeLevelUpCsReq {} /// Obf: JEMEEDBIDOB #[derive(proto_derive::CmdID)] -#[cmdid(4777)] +#[cmdid(4736)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct PrestigeLevelUpScRsp { - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "8")] pub retcode: u32, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "5")] pub level: u32, } /// Obf: BNFGELHDPEE #[derive(proto_derive::CmdID)] -#[cmdid(4758)] +#[cmdid(4787)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct AlleyFundsScNotify { - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "2")] pub dbjhemippim: u32, } /// Obf: AIAANLBAGMD #[derive(proto_derive::CmdID)] -#[cmdid(4763)] +#[cmdid(4731)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SaveLogisticsCsReq { - #[prost(message, repeated, tag = "15")] + #[prost(message, repeated, tag = "5")] pub apmcphfmaeg: ::prost::alloc::vec::Vec, } /// Obf: HCDCIKFBLEP #[derive(proto_derive::CmdID)] -#[cmdid(4711)] +#[cmdid(4744)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SaveLogisticsScRsp { - #[prost(uint32, tag = "6")] - pub retcode: u32, - #[prost(message, repeated, tag = "15")] + #[prost(message, repeated, tag = "5")] pub apmcphfmaeg: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "11")] + pub retcode: u32, } /// Obf: FEMPLINBLJG #[derive(proto_derive::CmdID)] -#[cmdid(4793)] +#[cmdid(4749)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct LogisticsInfoScNotify { #[prost(message, optional, tag = "10")] @@ -3349,1398 +3475,1449 @@ pub struct LogisticsInfoScNotify { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Laiemcfacdk { - #[prost(uint32, tag = "6")] - pub alghcnajbmm: u32, - #[prost(uint32, tag = "7")] - pub pghckcpkgll: u32, - #[prost(map = "uint32, uint32", tag = "10")] + #[prost(map = "uint32, uint32", tag = "13")] pub aahapcbilhc: ::std::collections::HashMap, + #[prost(uint32, tag = "8")] + pub alghcnajbmm: u32, + #[prost(uint32, tag = "9")] + pub pghckcpkgll: u32, } /// Obf: DDNICGDDLCO #[derive(proto_derive::CmdID)] -#[cmdid(4725)] +#[cmdid(4741)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct AlleyShipmentEventEffectsScNotify { - #[prost(message, optional, tag = "8")] + #[prost(message, optional, tag = "15")] pub lgjkpjojblf: ::core::option::Option, } /// Obf: NGMEMMOENFH #[derive(proto_derive::CmdID)] -#[cmdid(4714)] +#[cmdid(4784)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetSaveLogisticsMapCsReq {} /// Obf: FMCFCLGGHCE #[derive(proto_derive::CmdID)] -#[cmdid(4784)] +#[cmdid(4778)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetSaveLogisticsMapScRsp { - #[prost(message, repeated, tag = "1")] - pub hnfojbcjamg: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "4")] pub retcode: u32, + #[prost(message, repeated, tag = "8")] + pub hnfojbcjamg: ::prost::alloc::vec::Vec, } /// Obf: CGHOCDCODMF #[derive(proto_derive::CmdID)] -#[cmdid(4737)] +#[cmdid(4734)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct AlleyShipUsedCountScNotify { - #[prost(map = "uint32, uint32", tag = "1")] + #[prost(map = "uint32, uint32", tag = "4")] pub nplakeokekb: ::std::collections::HashMap, } /// Obf: IHIKFLJEIJD #[derive(proto_derive::CmdID)] -#[cmdid(4730)] +#[cmdid(4745)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct AlleyGuaranteedFundsCsReq {} /// Obf: PKJNKFAGCBP #[derive(proto_derive::CmdID)] -#[cmdid(4775)] +#[cmdid(4769)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct AlleyGuaranteedFundsScRsp { - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "7")] pub retcode: u32, - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "14")] pub clibobehndm: u32, } /// Obf: MDGBHHGPDAJ #[derive(proto_derive::CmdID)] -#[cmdid(4751)] +#[cmdid(4703)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct AlleyTakeEventRewardCsReq { - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "5")] pub event_id: u32, } /// Obf: GBDLKBGCBAO #[derive(proto_derive::CmdID)] -#[cmdid(4791)] +#[cmdid(4724)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct AlleyTakeEventRewardScRsp { - #[prost(uint32, tag = "10")] - pub retcode: u32, - #[prost(message, optional, tag = "3")] + #[prost(message, optional, tag = "1")] pub reward: ::core::option::Option, + #[prost(uint32, tag = "5")] + pub retcode: u32, } /// Obf: PCMDHOMOLFB #[derive(proto_derive::CmdID)] -#[cmdid(4724)] +#[cmdid(4728)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct LogisticsDetonateStarSkiffCsReq {} /// Obf: MGDIBDJAMII #[derive(proto_derive::CmdID)] -#[cmdid(4757)] +#[cmdid(4723)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct LogisticsDetonateStarSkiffScRsp { - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "13")] pub retcode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RelicArchive { - #[prost(uint32, tag = "3")] - pub slot: u32, - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "2")] pub relic_id: u32, + #[prost(uint32, tag = "15")] + pub slot: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MonsterArchive { - #[prost(uint32, tag = "5")] - pub num: u32, #[prost(uint32, tag = "14")] pub monster_id: u32, + #[prost(uint32, tag = "8")] + pub num: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ArchiveData { - #[prost(message, repeated, tag = "9")] + #[prost(message, repeated, tag = "15")] pub relic_list: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "6")] - pub archive_monster_id_list: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "2")] + #[prost(uint32, repeated, tag = "8")] pub archive_missing_avatar_id_list: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "7")] - pub archive_equipment_id_list: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "14")] + #[prost(message, repeated, tag = "9")] + pub archive_monster_id_list: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "12")] pub archive_missing_equipment_id_list: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "13")] + pub archive_equipment_id_list: ::prost::alloc::vec::Vec, } /// Obf: GBKFNMIJNJM #[derive(proto_derive::CmdID)] -#[cmdid(2395)] +#[cmdid(2320)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetArchiveDataCsReq {} /// Obf: ELKFLJKDFDB #[derive(proto_derive::CmdID)] -#[cmdid(2332)] +#[cmdid(2391)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetArchiveDataScRsp { - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "9")] pub retcode: u32, - #[prost(message, optional, tag = "10")] + #[prost(message, optional, tag = "13")] pub archive_data: ::core::option::Option, } /// Obf: NKDHENMJGDK #[derive(proto_derive::CmdID)] -#[cmdid(2331)] +#[cmdid(2367)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetUpdatedArchiveDataCsReq {} /// Obf: HGJNHMIDNNP #[derive(proto_derive::CmdID)] -#[cmdid(2340)] +#[cmdid(2339)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetUpdatedArchiveDataScRsp { - #[prost(message, optional, tag = "8")] + #[prost(message, optional, tag = "14")] pub archive_data: ::core::option::Option, - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "10")] pub retcode: u32, } /// Obf: FDBODLGODJN #[derive(proto_derive::CmdID)] -#[cmdid(395)] +#[cmdid(320)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetAvatarDataCsReq { - #[prost(bool, tag = "10")] + #[prost(bool, tag = "9")] pub is_get_all: bool, - #[prost(uint32, repeated, tag = "11")] + #[prost(uint32, repeated, tag = "15")] pub avatar_id_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct EquipRelic { - #[prost(uint32, tag = "4")] - pub slot: u32, - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "8")] pub relic_unique_id: u32, + #[prost(uint32, tag = "2")] + pub slot: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Avatar { - #[prost(uint64, tag = "4")] - pub first_met_timestamp: u64, - #[prost(message, repeated, tag = "11")] - pub equip_relic_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "5")] - pub dressed_skin_id: u32, + #[prost(uint32, tag = "13")] + pub equipment_unique_id: u32, #[prost(message, repeated, tag = "10")] pub skilltree_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "12")] - pub equipment_unique_id: u32, - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "3")] pub rank: u32, - #[prost(uint32, repeated, tag = "7")] - pub taken_rewards: ::prost::alloc::vec::Vec, - #[prost(bool, tag = "2")] - pub is_marked: bool, + #[prost(uint32, tag = "1")] + pub promotion: u32, + #[prost(uint32, tag = "12")] + pub ndefnacpclh: u32, #[prost(uint32, tag = "9")] pub exp: u32, - #[prost(uint32, tag = "14")] - pub promotion: u32, - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "7")] pub base_avatar_id: u32, - #[prost(uint32, tag = "13")] + #[prost(uint64, tag = "5")] + pub first_met_timestamp: u64, + #[prost(message, repeated, tag = "2")] + pub equip_relic_list: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "15")] pub level: u32, + #[prost(uint32, tag = "6")] + pub dressed_skin_id: u32, + #[prost(bool, tag = "8")] + pub is_marked: bool, + #[prost(uint32, repeated, tag = "11")] + pub taken_rewards: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct MultiPathAvatarTypeInfo { + #[prost(uint32, tag = "14")] + pub dressed_skin_id: u32, + #[prost(message, repeated, tag = "12")] + pub skilltree_list: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "5")] + pub equip_relic_list: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "15")] + pub ndefnacpclh: u32, + #[prost(uint32, tag = "2")] + pub rank: u32, + #[prost(uint64, tag = "8")] + pub kdmclkjljpp: u64, + #[prost(uint32, tag = "4")] + pub path_equipment_id: u32, + #[prost(enumeration = "MultiPathAvatarType", tag = "9")] + pub avatar_id: i32, } /// Obf: LLKPMKBOPAE #[derive(proto_derive::CmdID)] -#[cmdid(332)] +#[cmdid(391)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetAvatarDataScRsp { - #[prost(bool, tag = "14")] - pub is_get_all: bool, - #[prost(uint32, tag = "5")] - pub jpnlpopmkej: u32, - #[prost(uint32, repeated, tag = "13")] - pub owned_skin_id_list: ::prost::alloc::vec::Vec, - #[prost(enumeration = "Bcmljcfoefm", repeated, tag = "1")] + #[prost(enumeration = "Bcmljcfoefm", repeated, tag = "5")] pub pnkcfealami: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "13")] + pub fefpijjlnfg: ::prost::alloc::vec::Vec, #[prost(message, repeated, tag = "10")] pub avatar_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "2")] pub retcode: u32, + #[prost(uint32, tag = "9")] + pub jpnlpopmkej: u32, + #[prost(uint32, repeated, tag = "3")] + pub halndfogjnf: ::prost::alloc::vec::Vec, + #[prost(bool, tag = "6")] + pub is_get_all: bool, + #[prost(message, repeated, tag = "4")] + pub multi_path_avatar_type_info_list: ::prost::alloc::vec::Vec< + MultiPathAvatarTypeInfo, + >, + #[prost(uint32, repeated, tag = "14")] + pub owned_skin_id_list: ::prost::alloc::vec::Vec, + #[prost(map = "uint32, enumeration(MultiPathAvatarType)", tag = "15")] + pub current_multi_path_avatar_id: ::std::collections::HashMap, } /// Obf: DJJKIIAHALC #[derive(proto_derive::CmdID)] -#[cmdid(331)] +#[cmdid(367)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct AvatarExpUpCsReq { - #[prost(message, optional, tag = "6")] - pub item_cost_list: ::core::option::Option, - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "9")] pub base_avatar_id: u32, + #[prost(message, optional, tag = "10")] + pub item_cost_list: ::core::option::Option, } /// Obf: INHIJFMNOAO #[derive(proto_derive::CmdID)] -#[cmdid(340)] +#[cmdid(339)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct AvatarExpUpScRsp { - #[prost(message, repeated, tag = "2")] + #[prost(message, repeated, tag = "8")] pub return_item_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "6")] pub retcode: u32, } /// Obf: KFOMNLIPHKM #[derive(proto_derive::CmdID)] -#[cmdid(376)] +#[cmdid(327)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct UnlockSkilltreeCsReq { - #[prost(message, repeated, tag = "3")] - pub item_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "8")] pub level: u32, - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "10")] pub point_id: u32, + #[prost(message, repeated, tag = "15")] + pub item_list: ::prost::alloc::vec::Vec, } /// Obf: GOFNEGEKNHK #[derive(proto_derive::CmdID)] -#[cmdid(348)] +#[cmdid(321)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct UnlockSkilltreeScRsp { - #[prost(uint32, tag = "2")] - pub retcode: u32, - #[prost(uint32, tag = "6")] - pub point_id: u32, - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "11")] pub level: u32, + #[prost(uint32, tag = "3")] + pub retcode: u32, + #[prost(uint32, tag = "4")] + pub point_id: u32, } /// Obf: FMDODPOOBAK #[derive(proto_derive::CmdID)] -#[cmdid(371)] +#[cmdid(370)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct PromoteAvatarCsReq { - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "13")] pub base_avatar_id: u32, - #[prost(message, repeated, tag = "9")] + #[prost(message, repeated, tag = "2")] pub item_list: ::prost::alloc::vec::Vec, } /// Obf: NPAFCPEKNPG #[derive(proto_derive::CmdID)] -#[cmdid(352)] +#[cmdid(359)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct PromoteAvatarScRsp { - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "4")] pub retcode: u32, } /// Obf: OKIHBJFFGHB #[derive(proto_derive::CmdID)] -#[cmdid(322)] +#[cmdid(354)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct DressAvatarCsReq { - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "8")] pub equipment_unique_id: u32, - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "5")] pub avatar_id: u32, } /// Obf: FIGIBBKEBBD #[derive(proto_derive::CmdID)] -#[cmdid(356)] +#[cmdid(377)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct DressAvatarScRsp { - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "6")] pub retcode: u32, } /// Obf: GKOAAJMMEMA #[derive(proto_derive::CmdID)] -#[cmdid(372)] +#[cmdid(380)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TakeOffEquipmentCsReq { - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "10")] pub avatar_id: u32, } /// Obf: MGEJBJLFBPC #[derive(proto_derive::CmdID)] -#[cmdid(385)] +#[cmdid(302)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TakeOffEquipmentScRsp { - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "1")] pub retcode: u32, } /// Obf: KAIMCKHIFHP #[derive(proto_derive::CmdID)] -#[cmdid(316)] +#[cmdid(305)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct AddAvatarScNotify { - #[prost(enumeration = "AddAvatarSrc", tag = "14")] + #[prost(enumeration = "AddAvatarSrc", tag = "15")] pub src: i32, - #[prost(uint32, tag = "9")] - pub base_avatar_id: u32, - #[prost(bool, tag = "2")] - pub is_new: bool, - #[prost(message, optional, tag = "8")] + #[prost(message, optional, tag = "7")] pub reward: ::core::option::Option, + #[prost(uint32, tag = "6")] + pub base_avatar_id: u32, + #[prost(bool, tag = "10")] + pub is_new: bool, } /// Obf: EBPDFOPKBHC #[derive(proto_derive::CmdID)] -#[cmdid(325)] +#[cmdid(341)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct AddMultiPathAvatarScNotify { - #[prost(message, optional, tag = "2")] - pub reward: ::core::option::Option, - #[prost(bool, tag = "12")] + #[prost(bool, tag = "15")] pub is_new: bool, #[prost(uint32, tag = "4")] pub avatar_id: u32, + #[prost(message, optional, tag = "8")] + pub reward: ::core::option::Option, } /// Obf: OLCFHOGGKNC #[derive(proto_derive::CmdID)] -#[cmdid(346)] +#[cmdid(374)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RankUpAvatarCsReq { - #[prost(message, optional, tag = "2")] - pub item_cost_list: ::core::option::Option, - #[prost(uint32, tag = "11")] - pub avatar_id: u32, - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "14")] pub rank: u32, + #[prost(uint32, tag = "6")] + pub avatar_id: u32, + #[prost(message, optional, tag = "11")] + pub item_cost_list: ::core::option::Option, } /// Obf: LLLGFJMKHHK #[derive(proto_derive::CmdID)] -#[cmdid(383)] +#[cmdid(373)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RankUpAvatarScRsp { - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "12")] pub retcode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RelicParam { - #[prost(uint32, tag = "11")] - pub slot: u32, - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "1")] pub relic_unique_id: u32, + #[prost(uint32, tag = "5")] + pub slot: u32, } /// Obf: CAMOJCCLNCE #[derive(proto_derive::CmdID)] -#[cmdid(360)] +#[cmdid(398)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct DressRelicAvatarCsReq { - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "13")] pub avatar_id: u32, - #[prost(message, repeated, tag = "8")] + #[prost(message, repeated, tag = "12")] pub param_list: ::prost::alloc::vec::Vec, } /// Obf: ADPAIPLCFIC #[derive(proto_derive::CmdID)] -#[cmdid(302)] +#[cmdid(385)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct DressRelicAvatarScRsp { - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "2")] pub retcode: u32, } /// Obf: DDPFFOPJHHM #[derive(proto_derive::CmdID)] -#[cmdid(339)] +#[cmdid(338)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TakeOffRelicCsReq { - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "7")] pub avatar_id: u32, - #[prost(uint32, repeated, tag = "15")] + #[prost(uint32, repeated, tag = "6")] pub slot_list: ::prost::alloc::vec::Vec, } /// Obf: HEENELCHMKP #[derive(proto_derive::CmdID)] -#[cmdid(343)] +#[cmdid(352)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TakeOffRelicScRsp { - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "14")] pub retcode: u32, } /// Obf: EMAJLDJJNLL #[derive(proto_derive::CmdID)] -#[cmdid(333)] +#[cmdid(368)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TakePromotionRewardCsReq { - #[prost(uint32, tag = "11")] - pub promotion: u32, - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "15")] pub base_avatar_id: u32, + #[prost(uint32, tag = "7")] + pub promotion: u32, } /// Obf: HDEAAFNFGCM #[derive(proto_derive::CmdID)] -#[cmdid(342)] +#[cmdid(394)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TakePromotionRewardScRsp { - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "14")] pub retcode: u32, - #[prost(message, optional, tag = "5")] + #[prost(message, optional, tag = "8")] pub reward_list: ::core::option::Option, } /// Obf: PHEMPEFMECP #[derive(proto_derive::CmdID)] -#[cmdid(377)] +#[cmdid(336)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct DressAvatarSkinCsReq { - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "10")] pub skin_id: u32, - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "5")] pub avatar_id: u32, } /// Obf: MEKBMEPIDHM #[derive(proto_derive::CmdID)] -#[cmdid(358)] +#[cmdid(387)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct DressAvatarSkinScRsp { - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "3")] pub retcode: u32, } /// Obf: HJBAMOJDEEM #[derive(proto_derive::CmdID)] -#[cmdid(321)] +#[cmdid(309)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TakeOffAvatarSkinCsReq { - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "14")] pub avatar_id: u32, } /// Obf: ABOODONGNHG #[derive(proto_derive::CmdID)] -#[cmdid(329)] +#[cmdid(306)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TakeOffAvatarSkinScRsp { - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "4")] pub retcode: u32, } /// Obf: CFBNAMCDBCC #[derive(proto_derive::CmdID)] -#[cmdid(363)] +#[cmdid(331)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct UnlockAvatarSkinScNotify { - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "7")] pub skin_id: u32, } /// Obf: HNEPFBPJKLI #[derive(proto_derive::CmdID)] -#[cmdid(311)] +#[cmdid(344)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MarkAvatarCsReq { - #[prost(uint32, tag = "5")] - pub avatar_id: u32, - #[prost(bool, tag = "3")] + #[prost(bool, tag = "11")] pub is_marked: bool, + #[prost(uint32, tag = "3")] + pub avatar_id: u32, } /// Obf: NGPKIPOGOHO #[derive(proto_derive::CmdID)] -#[cmdid(393)] +#[cmdid(349)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MarkAvatarScRsp { - #[prost(bool, tag = "9")] - pub is_marked: bool, - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "10")] pub avatar_id: u32, #[prost(uint32, tag = "15")] pub retcode: u32, + #[prost(bool, tag = "14")] + pub is_marked: bool, } /// Obf: BFCKHJIDMJO #[derive(proto_derive::CmdID)] -#[cmdid(314)] +#[cmdid(384)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SetGrowthTargetAvatarCsReq { - #[prost(uint32, tag = "14")] - pub idnmeknhlpo: u32, - #[prost(uint32, tag = "7")] - pub avatar_id: u32, - #[prost(enumeration = "Bcmljcfoefm", repeated, tag = "1")] - pub ejbjbocoinb: ::prost::alloc::vec::Vec, - #[prost(enumeration = "Gifjdobiiik", tag = "3")] + #[prost(enumeration = "Gifjdobiiik", tag = "5")] pub source: i32, + #[prost(uint32, tag = "8")] + pub idnmeknhlpo: u32, + #[prost(uint32, tag = "4")] + pub avatar_id: u32, + #[prost(enumeration = "Bcmljcfoefm", repeated, tag = "14")] + pub ejbjbocoinb: ::prost::alloc::vec::Vec, } /// Obf: CEICLCJFPDI #[derive(proto_derive::CmdID)] -#[cmdid(384)] +#[cmdid(378)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SetGrowthTargetAvatarScRsp { - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "6")] pub retcode: u32, - #[prost(enumeration = "Bcmljcfoefm", repeated, tag = "5")] - pub ejbjbocoinb: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "10")] pub ncbkpdngohj: u32, - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "1")] pub jpnlpopmkej: u32, + #[prost(enumeration = "Bcmljcfoefm", repeated, tag = "7")] + pub ejbjbocoinb: ::prost::alloc::vec::Vec, } /// Obf: MLGLOKGPPEG #[derive(proto_derive::CmdID)] -#[cmdid(337)] +#[cmdid(334)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GrowthTargetAvatarChangedScNotify { - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "11")] pub jpnlpopmkej: u32, - #[prost(enumeration = "Bcmljcfoefm", repeated, tag = "15")] + #[prost(enumeration = "Bcmljcfoefm", repeated, tag = "12")] pub ejbjbocoinb: ::prost::alloc::vec::Vec, } +/// Obf: ECEAPFHMMEI +#[derive(proto_derive::CmdID)] +#[cmdid(322)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct GetPreAvatarActivityListCsReq {} +/// Obf: NLBLICCIFCC +#[derive(proto_derive::CmdID)] +#[cmdid(340)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct GetPreAvatarActivityListScRsp { + #[prost(uint32, repeated, tag = "8")] + pub phhncjjpkic: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "11")] + pub retcode: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Nmifoljfcjh { + #[prost(string, tag = "816")] + pub kpjhbeilaip: ::prost::alloc::string::String, + #[prost(uint32, tag = "8")] + pub phibnkmiogp: u32, + #[prost(uint32, tag = "1")] + pub jjmkeadciag: u32, + #[prost(string, tag = "1585")] + pub oanpnfjjfhg: ::prost::alloc::string::String, + #[prost(uint32, tag = "12")] + pub dlapkbddbbc: u32, + #[prost(uint32, tag = "2")] + pub dbijfkobkkh: u32, + #[prost(uint32, tag = "1100")] + pub dggnnbcjocc: u32, + #[prost(uint32, tag = "586")] + pub slot: u32, + #[prost(uint32, tag = "1045")] + pub module_id: u32, + #[prost(uint32, tag = "11")] + pub flaagnapdhp: u32, + #[prost(string, tag = "1026")] + pub mkhldlfonkn: ::prost::alloc::string::String, + #[prost(uint32, tag = "6")] + pub fojcckacdhh: u32, + #[prost(uint32, tag = "15")] + pub ihokhlfhocc: u32, + #[prost(uint32, tag = "3")] + pub egddnpeonkc: u32, + #[prost(uint32, tag = "13")] + pub lkkamllafae: u32, + #[prost(uint32, tag = "9")] + pub lijcngohkhf: u32, + #[prost(uint32, tag = "5")] + pub kiejacmogan: u32, + #[prost(uint32, tag = "10")] + pub aekfjkenphn: u32, + #[prost(uint32, tag = "7")] + pub hdnikcblkil: u32, + #[prost(string, tag = "61")] + pub ebppbpmhdhi: ::prost::alloc::string::String, + #[prost(uint32, tag = "14")] + pub pmmcfgmplba: u32, + #[prost(uint32, tag = "4")] + pub kjaeojbjojd: u32, +} /// Obf: NKLEGHEBAKI #[derive(proto_derive::CmdID)] -#[cmdid(330)] +#[cmdid(345)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetPreAvatarGrowthInfoCsReq { - #[prost(uint32, tag = "1")] - pub kjaeojbjojd: u32, -} +pub struct GetPreAvatarGrowthInfoCsReq {} /// Obf: GEFENNPHDME #[derive(proto_derive::CmdID)] -#[cmdid(375)] +#[cmdid(369)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetPreAvatarGrowthInfoScRsp { - #[prost(uint32, tag = "10")] - pub flaagnapdhp: u32, - #[prost(string, tag = "1911")] - pub ebppbpmhdhi: ::prost::alloc::string::String, - #[prost(uint32, tag = "13")] - pub jjmkeadciag: u32, - #[prost(uint32, tag = "4")] - pub aekfjkenphn: u32, - #[prost(uint32, tag = "7")] - pub phibnkmiogp: u32, - #[prost(uint32, tag = "12")] - pub lkkamllafae: u32, - #[prost(uint32, tag = "6")] - pub fojcckacdhh: u32, - #[prost(uint32, tag = "8")] - pub hdnikcblkil: u32, - #[prost(uint32, tag = "5")] - pub lijcngohkhf: u32, - #[prost(uint32, tag = "14")] - pub pmmcfgmplba: u32, #[prost(uint32, tag = "9")] - pub kjaeojbjojd: u32, - #[prost(uint32, tag = "221")] - pub dggnnbcjocc: u32, - #[prost(string, tag = "1269")] - pub kpjhbeilaip: ::prost::alloc::string::String, - #[prost(uint32, tag = "1")] - pub dlapkbddbbc: u32, - #[prost(uint32, tag = "1486")] - pub kiejacmogan: u32, - #[prost(uint32, tag = "11")] - pub dbijfkobkkh: u32, - #[prost(string, tag = "508")] - pub oanpnfjjfhg: ::prost::alloc::string::String, - #[prost(uint32, tag = "15")] - pub egddnpeonkc: u32, - #[prost(string, tag = "426")] - pub mkhldlfonkn: ::prost::alloc::string::String, - #[prost(uint32, tag = "2")] - pub ihokhlfhocc: u32, - #[prost(uint32, tag = "3")] pub retcode: u32, + #[prost(message, repeated, tag = "14")] + pub ijonomejohm: ::prost::alloc::vec::Vec, } +/// Obf: FEBPEIFDKNN #[derive(proto_derive::CmdID)] +#[cmdid(328)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Oppgljbhkll { - #[prost(uint32, tag = "13")] - pub slot: u32, +pub struct SetAvatarEnhancedIdCsReq { #[prost(uint32, tag = "14")] - pub kjaeojbjojd: u32, - #[prost(uint32, tag = "3")] - pub module_id: u32, + pub avatar_id: u32, + #[prost(uint32, tag = "2")] + pub glackhopmio: u32, } -/// Obf: MMAJMOJIGGD +/// Obf: DPEFJJFALKG #[derive(proto_derive::CmdID)] -#[cmdid(351)] +#[cmdid(323)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetPreAvatarListCsReq {} -/// Obf: KMLPBEILMGK -#[derive(proto_derive::CmdID)] -#[cmdid(391)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetPreAvatarListScRsp { - #[prost(message, repeated, tag = "7")] - pub jmjgmdhnpen: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "3")] +pub struct SetAvatarEnhancedIdScRsp { + #[prost(uint32, tag = "15")] pub retcode: u32, + #[prost(uint32, tag = "2")] + pub ndefnacpclh: u32, + #[prost(uint32, tag = "5")] + pub ncbkpdngohj: u32, } /// Obf: BAOHDDGLEIA #[derive(proto_derive::CmdID)] -#[cmdid(195)] +#[cmdid(120)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct PveBattleResultCsReq { - #[prost(bool, tag = "2")] - pub is_ai_consider_ultra_skill: bool, - #[prost(uint32, tag = "1")] - pub jcjfgojfege: u32, - #[prost(message, optional, tag = "7")] - pub stt: ::core::option::Option, - #[prost(enumeration = "BattleEndStatus", tag = "5")] - pub end_status: i32, - #[prost(map = "string, uint32", tag = "6")] - pub hpekekipjlf: ::std::collections::HashMap<::prost::alloc::string::String, u32>, - #[prost(uint32, tag = "10")] - pub bclnmidffoh: u32, - #[prost(uint32, tag = "13")] - pub stage_id: u32, - #[prost(uint32, tag = "4")] - pub battle_id: u32, - #[prost(message, repeated, tag = "11")] - pub op_list: ::prost::alloc::vec::Vec, - #[prost(bytes = "vec", tag = "8")] - pub turn_snapshot_hash: ::prost::alloc::vec::Vec, - #[prost(bool, tag = "15")] - pub is_auto_fight: bool, - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "8")] pub cost_time: u32, - #[prost(string, tag = "12")] - pub debug_extra_info: ::prost::alloc::string::String, - #[prost(uint32, tag = "3")] + #[prost(message, repeated, tag = "15")] + pub op_list: ::prost::alloc::vec::Vec, + #[prost(bool, tag = "5")] + pub is_auto_fight: bool, + #[prost(uint32, tag = "4")] pub client_res_version: u32, + #[prost(uint32, tag = "10")] + pub stage_id: u32, + #[prost(uint32, tag = "9")] + pub bclnmidffoh: u32, + #[prost(bytes = "vec", tag = "2")] + pub turn_snapshot_hash: ::prost::alloc::vec::Vec, + #[prost(string, tag = "6")] + pub debug_extra_info: ::prost::alloc::string::String, + #[prost(bool, tag = "1")] + pub is_ai_consider_ultra_skill: bool, + #[prost(map = "string, uint32", tag = "11")] + pub hpekekipjlf: ::std::collections::HashMap<::prost::alloc::string::String, u32>, + #[prost(uint32, tag = "13")] + pub jcjfgojfege: u32, #[prost(bool, tag = "14")] pub gjgkagfpagm: bool, + #[prost(message, optional, tag = "12")] + pub stt: ::core::option::Option, + #[prost(uint32, tag = "3")] + pub battle_id: u32, + #[prost(enumeration = "BattleEndStatus", tag = "7")] + pub end_status: i32, } /// Obf: PFAIJOHBNCF #[derive(proto_derive::CmdID)] -#[cmdid(132)] +#[cmdid(191)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct PveBattleResultScRsp { - #[prost(uint32, tag = "15")] - pub event_id: u32, + #[prost(uint32, tag = "5")] + pub ggmpfnkofkd: u32, + #[prost(message, optional, tag = "11")] + pub drop_data: ::core::option::Option, #[prost(uint32, tag = "2")] pub klodelecmci: u32, - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "13")] pub ndcmdokkphh: u32, - #[prost(enumeration = "BattleEndStatus", tag = "8")] - pub end_status: i32, - #[prost(message, optional, tag = "1")] - pub jhmmoojpkha: ::core::option::Option, - #[prost(message, optional, tag = "1637")] - pub nbhlifpblmf: ::core::option::Option, - #[prost(uint32, tag = "11")] - pub stage_id: u32, - #[prost(bool, tag = "9")] - pub check_identical: bool, - #[prost(string, tag = "6")] - pub bin_version: ::prost::alloc::string::String, - #[prost(message, optional, tag = "3")] - pub nhanakjfeab: ::core::option::Option, - #[prost(uint32, tag = "5")] - pub battle_id: u32, - #[prost(uint32, tag = "10")] - pub ggmpfnkofkd: u32, - #[prost(string, tag = "7")] - pub res_version: ::prost::alloc::string::String, - #[prost(uint32, tag = "12")] - pub retcode: u32, - #[prost(message, repeated, tag = "4")] + #[prost(message, repeated, tag = "1")] pub battle_avatar_list: ::prost::alloc::vec::Vec, - #[prost(message, optional, tag = "1649")] + #[prost(uint32, tag = "8")] + pub retcode: u32, + #[prost(message, optional, tag = "7")] + pub nhanakjfeab: ::core::option::Option, + #[prost(string, tag = "10")] + pub res_version: ::prost::alloc::string::String, + #[prost(enumeration = "BattleEndStatus", tag = "15")] + pub end_status: i32, + #[prost(uint32, tag = "4")] + pub stage_id: u32, + #[prost(message, optional, tag = "6")] + pub jhmmoojpkha: ::core::option::Option, + #[prost(message, optional, tag = "1708")] pub kjchgehdlno: ::core::option::Option, - #[prost(message, optional, tag = "13")] - pub drop_data: ::core::option::Option, + #[prost(string, tag = "12")] + pub bin_version: ::prost::alloc::string::String, + #[prost(bool, tag = "3")] + pub check_identical: bool, + #[prost(message, optional, tag = "599")] + pub nbhlifpblmf: ::core::option::Option, + #[prost(uint32, tag = "14")] + pub battle_id: u32, + #[prost(uint32, tag = "9")] + pub event_id: u32, } /// Obf: FJPLPFNKKKF #[derive(proto_derive::CmdID)] -#[cmdid(131)] +#[cmdid(167)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct QuitBattleCsReq { - #[prost(message, optional, tag = "1")] - pub stt: ::core::option::Option, - #[prost(enumeration = "Lipekjfjmnm", tag = "7")] + #[prost(enumeration = "Lipekjfjmnm", tag = "15")] pub nikhbkchhjg: i32, + #[prost(message, optional, tag = "4")] + pub stt: ::core::option::Option, } /// Obf: PLOAKKONHKL #[derive(proto_derive::CmdID)] -#[cmdid(140)] +#[cmdid(139)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct QuitBattleScRsp { - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "7")] pub retcode: u32, } /// Obf: KJLJOBFCGDD #[derive(proto_derive::CmdID)] -#[cmdid(176)] +#[cmdid(127)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetCurBattleInfoCsReq {} /// Obf: LHAFGCJCLFJ #[derive(proto_derive::CmdID)] -#[cmdid(148)] +#[cmdid(121)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetCurBattleInfoScRsp { - #[prost(message, optional, tag = "11")] - pub battle_info: ::core::option::Option, - #[prost(message, optional, tag = "7")] + #[prost(message, optional, tag = "1")] pub pbphjbafgbb: ::core::option::Option, #[prost(uint32, tag = "13")] - pub ibpjkffflng: u32, - #[prost(enumeration = "BattleEndStatus", tag = "5")] - pub hddndocnefo: i32, - #[prost(uint32, tag = "1")] pub retcode: u32, + #[prost(uint32, tag = "15")] + pub ibpjkffflng: u32, + #[prost(enumeration = "BattleEndStatus", tag = "12")] + pub hddndocnefo: i32, + #[prost(message, optional, tag = "10")] + pub battle_info: ::core::option::Option, } /// Obf: OJMPHGKIIOC #[derive(proto_derive::CmdID)] -#[cmdid(171)] +#[cmdid(170)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SyncClientResVersionCsReq { - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "9")] pub client_res_version: u32, } /// Obf: GHIJAKBMJFH #[derive(proto_derive::CmdID)] -#[cmdid(152)] +#[cmdid(159)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SyncClientResVersionScRsp { - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "2")] pub client_res_version: u32, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "13")] pub retcode: u32, } /// Obf: HEFKLAHHJPD #[derive(proto_derive::CmdID)] -#[cmdid(122)] +#[cmdid(154)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct QuitBattleScNotify {} /// Obf: EBKCKNCFAKC #[derive(proto_derive::CmdID)] -#[cmdid(156)] +#[cmdid(177)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct BattleLogReportCsReq {} /// Obf: CGGHCMBCGBG #[derive(proto_derive::CmdID)] -#[cmdid(172)] +#[cmdid(180)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct BattleLogReportScRsp { - #[prost(bool, tag = "4")] - pub lcgbacgbknc: bool, - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "10")] pub retcode: u32, + #[prost(bool, tag = "8")] + pub lcgbacgbknc: bool, } /// Obf: INAKOOFBIBC #[derive(proto_derive::CmdID)] -#[cmdid(185)] +#[cmdid(102)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ServerSimulateBattleFinishScNotify {} /// Obf: BKPKHGCNLAM #[derive(proto_derive::CmdID)] -#[cmdid(116)] +#[cmdid(105)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ReBattleAfterBattleLoseCsNotify { - #[prost(bool, tag = "4")] + #[prost(bool, tag = "14")] pub pmjahilblfl: bool, } /// Obf: JADANENHLEF #[derive(proto_derive::CmdID)] -#[cmdid(146)] +#[cmdid(174)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RebattleByClientCsNotify { - #[prost(enumeration = "Lipekjfjmnm", tag = "8")] + #[prost(enumeration = "Lipekjfjmnm", tag = "4")] pub nikhbkchhjg: i32, - #[prost(message, optional, tag = "10")] + #[prost(message, optional, tag = "3")] pub stt: ::core::option::Option, } /// Obf: EEHPKOFBGJI #[derive(proto_derive::CmdID)] -#[cmdid(5795)] +#[cmdid(5720)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetBattleCollegeDataCsReq {} /// Obf: EDOBBBIOGOM #[derive(proto_derive::CmdID)] -#[cmdid(5732)] +#[cmdid(5791)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetBattleCollegeDataScRsp { #[prost(uint32, tag = "11")] - pub mamhojmfjof: u32, - #[prost(uint32, tag = "13")] pub retcode: u32, - #[prost(uint32, repeated, tag = "2")] + #[prost(uint32, repeated, tag = "5")] pub finished_college_id_list: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "12")] + pub mamhojmfjof: u32, } /// Obf: CPLJOBGDALK #[derive(proto_derive::CmdID)] -#[cmdid(5731)] +#[cmdid(5767)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct BattleCollegeDataChangeScNotify { - #[prost(uint32, repeated, tag = "12")] - pub finished_college_id_list: ::prost::alloc::vec::Vec, - #[prost(message, optional, tag = "14")] - pub reward: ::core::option::Option, - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "9")] pub mamhojmfjof: u32, + #[prost(message, optional, tag = "3")] + pub reward: ::core::option::Option, + #[prost(uint32, repeated, tag = "15")] + pub finished_college_id_list: ::prost::alloc::vec::Vec, } /// Obf: MNBLONDLDJD #[derive(proto_derive::CmdID)] -#[cmdid(5740)] +#[cmdid(5739)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct StartBattleCollegeCsReq { - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "8")] pub id: u32, } /// Obf: MOPKNCIPMMP #[derive(proto_derive::CmdID)] -#[cmdid(5776)] +#[cmdid(5727)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct StartBattleCollegeScRsp { - #[prost(uint32, tag = "7")] - pub retcode: u32, - #[prost(message, optional, tag = "2")] + #[prost(message, optional, tag = "7")] pub battle_info: ::core::option::Option, - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "4")] pub id: u32, + #[prost(uint32, tag = "3")] + pub retcode: u32, } /// Obf: LCGKPCGHILI #[derive(proto_derive::CmdID)] -#[cmdid(3095)] +#[cmdid(3020)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct BattlePassInfoNotify { - #[prost(uint64, tag = "9")] - pub ljoekefkpko: u64, - #[prost(uint32, tag = "4")] - pub exp: u32, - #[prost(uint64, tag = "2")] - pub inbockjglbo: u64, - #[prost(uint32, tag = "13")] - pub ljflflimkad: u32, - #[prost(uint64, tag = "15")] - pub cphiiockhpi: u64, - #[prost(uint64, tag = "7")] - pub nkaoknmholh: u64, - #[prost(uint32, tag = "6")] - pub level: u32, - #[prost(uint64, tag = "8")] - pub fdkkikganck: u64, - #[prost(uint32, tag = "5")] - pub edbmnmdjbko: u32, - #[prost(enumeration = "BpTierType", tag = "10")] + #[prost(enumeration = "BpTierType", tag = "6")] pub bp_tier_type: i32, #[prost(uint64, tag = "1")] - pub hkeoaaccbpl: u64, - #[prost(uint64, tag = "12")] pub ekgopldjoii: u64, + #[prost(uint32, tag = "8")] + pub ljflflimkad: u32, + #[prost(uint64, tag = "12")] + pub nkaoknmholh: u64, + #[prost(uint32, tag = "9")] + pub exp: u32, + #[prost(uint32, tag = "7")] + pub level: u32, + #[prost(uint64, tag = "14")] + pub cphiiockhpi: u64, + #[prost(uint32, tag = "13")] + pub edbmnmdjbko: u32, + #[prost(uint64, tag = "3")] + pub inbockjglbo: u64, + #[prost(uint64, tag = "15")] + pub ljoekefkpko: u64, + #[prost(uint64, tag = "2")] + pub hkeoaaccbpl: u64, #[prost(uint64, tag = "11")] + pub fdkkikganck: u64, + #[prost(uint64, tag = "5")] pub cbjklleohdc: u64, } /// Obf: EBLMPDFIFGF #[derive(proto_derive::CmdID)] -#[cmdid(3040)] +#[cmdid(3039)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TakeBpRewardCsReq { - #[prost(enumeration = "BpRewardType", tag = "1")] + #[prost(enumeration = "BpRewardType", tag = "11")] pub slot: i32, - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "5")] pub level: u32, - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "9")] pub optional_reward_id: u32, } /// Obf: DCNCOIBPBJD #[derive(proto_derive::CmdID)] -#[cmdid(3076)] +#[cmdid(3027)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TakeBpRewardScRsp { - #[prost(message, optional, tag = "11")] - pub reward: ::core::option::Option, - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "1")] pub retcode: u32, + #[prost(message, optional, tag = "10")] + pub reward: ::core::option::Option, } /// Obf: BPNKPCIPOOB #[derive(proto_derive::CmdID)] -#[cmdid(3048)] +#[cmdid(3021)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct BuyBpLevelCsReq { - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "14")] pub ldnjeacfbje: u32, } /// Obf: GFEGGMHOBLN #[derive(proto_derive::CmdID)] -#[cmdid(3071)] +#[cmdid(3070)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct BuyBpLevelScRsp { - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "14")] pub retcode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct OptionalReward { - #[prost(uint32, tag = "4")] - pub optional_reward_id: u32, - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "11")] pub level: u32, + #[prost(uint32, tag = "3")] + pub optional_reward_id: u32, } /// Obf: CILPIOAHNIB #[derive(proto_derive::CmdID)] -#[cmdid(3052)] +#[cmdid(3059)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TakeAllRewardCsReq { - #[prost(message, repeated, tag = "15")] + #[prost(message, repeated, tag = "13")] pub modoofjoiao: ::prost::alloc::vec::Vec, } /// Obf: BOJPKOEHOCI #[derive(proto_derive::CmdID)] -#[cmdid(3022)] +#[cmdid(3054)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TakeAllRewardScRsp { - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "9")] pub retcode: u32, - #[prost(message, optional, tag = "5")] + #[prost(message, optional, tag = "15")] pub reward: ::core::option::Option, } /// Obf: PGPCBBCOBHG #[derive(proto_derive::CmdID)] -#[cmdid(4854)] +#[cmdid(4899)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetBenefitActivityInfoCsReq {} #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct LuckyKoiInfo { - #[prost(string, tag = "10")] + #[prost(string, tag = "4")] pub uid_str: ::prost::alloc::string::String, - #[prost(string, tag = "3")] + #[prost(string, tag = "1")] pub name_str: ::prost::alloc::string::String, - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "10")] pub head_icon: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Fecadlcjfic { - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "10")] pub level: u32, - #[prost(message, optional, tag = "10")] + #[prost(message, optional, tag = "15")] pub item_list: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Ojfaklfikcj { - #[prost(uint64, tag = "5")] - pub pjpmlcdhebl: u64, - #[prost(uint64, tag = "14")] - pub end_time: u64, - #[prost(message, repeated, tag = "13")] + #[prost(message, repeated, tag = "1")] pub pfeaniahfpc: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "3")] - pub nkjpgkmlhnk: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "7")] + #[prost(uint64, tag = "11")] + pub pjpmlcdhebl: u64, + #[prost(uint32, tag = "13")] pub iigmeobdmje: u32, - #[prost(uint64, tag = "9")] + #[prost(uint64, tag = "8")] + pub end_time: u64, + #[prost(uint64, tag = "15")] pub begin_time: u64, + #[prost(message, repeated, tag = "14")] + pub nkjpgkmlhnk: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Mogacgjehae { - #[prost(message, optional, tag = "10")] + #[prost(message, optional, tag = "6")] pub config: ::core::option::Option, - #[prost(uint32, tag = "7")] - pub level: u32, - #[prost(uint32, tag = "14")] - pub colbgejelgi: u32, #[prost(uint32, tag = "4")] + pub level: u32, + #[prost(uint32, tag = "10")] pub status: u32, + #[prost(uint32, tag = "13")] + pub colbgejelgi: u32, } /// Obf: LPELGNPNFLO #[derive(proto_derive::CmdID)] -#[cmdid(4896)] +#[cmdid(4877)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetBenefitActivityInfoScRsp { - #[prost(message, repeated, tag = "3")] + #[prost(message, repeated, tag = "11")] pub fmkcnmcailn: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "6")] pub retcode: u32, - #[prost(bool, tag = "5")] + #[prost(bool, tag = "15")] pub ofnginbodlp: bool, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Lflogadlema { - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "6")] pub colbgejelgi: u32, #[prost(bool, tag = "7")] pub einfbgkendh: bool, } /// Obf: BJJDECAGCII #[derive(proto_derive::CmdID)] -#[cmdid(4852)] +#[cmdid(4868)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TakeBenefitActivityRewardCsReq { - #[prost(bool, tag = "7")] - pub bfbpcbnpfph: bool, - #[prost(message, repeated, tag = "6")] + #[prost(message, repeated, tag = "14")] pub param_list: ::prost::alloc::vec::Vec, + #[prost(bool, tag = "4")] + pub bfbpcbnpfph: bool, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Cmgdhfiobef { - #[prost(bool, tag = "8")] - pub einfbgkendh: bool, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "2")] pub colbgejelgi: u32, - #[prost(message, optional, tag = "2")] + #[prost(bool, tag = "6")] + pub einfbgkendh: bool, + #[prost(message, optional, tag = "1")] pub item_list: ::core::option::Option, } /// Obf: FEDPIHJNBHF #[derive(proto_derive::CmdID)] -#[cmdid(4887)] +#[cmdid(4886)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TakeBenefitActivityRewardScRsp { + #[prost(uint32, tag = "12")] + pub retcode: u32, #[prost(message, repeated, tag = "4")] pub param_list: ::prost::alloc::vec::Vec, - #[prost(message, optional, tag = "12")] + #[prost(message, optional, tag = "7")] pub ckekcconjgb: ::core::option::Option, - #[prost(uint32, tag = "14")] - pub retcode: u32, } /// Obf: NBAMKPBNEMA #[derive(proto_derive::CmdID)] -#[cmdid(4886)] +#[cmdid(4861)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct JoinBenefitActivityCsReq { - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "6")] pub colbgejelgi: u32, } /// Obf: PMMCAMJGHKD #[derive(proto_derive::CmdID)] -#[cmdid(4867)] +#[cmdid(4887)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct JoinBenefitActivityScRsp { - #[prost(uint32, tag = "13")] - pub colbgejelgi: u32, - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "15")] pub retcode: u32, + #[prost(uint32, tag = "11")] + pub colbgejelgi: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Ijkjjdhlklb { - #[prost(uint32, tag = "8")] - pub avatar_id: u32, - #[prost(enumeration = "AvatarType", tag = "15")] + #[prost(enumeration = "AvatarType", tag = "5")] pub avatar_type: i32, + #[prost(uint32, tag = "9")] + pub avatar_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Fcihijlomga { - #[prost(uint32, tag = "13")] - pub hjmglemjhkg: u32, - #[prost(uint32, tag = "3")] - pub hnpeappmgaa: u32, - #[prost(message, repeated, tag = "6")] - pub mdlachdkmph: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "14")] - pub cpgoipicpjf: u32, - #[prost(uint32, tag = "8")] - pub llfofpndafg: u32, - #[prost(uint32, repeated, tag = "9")] - pub hlibijfhhpg: ::prost::alloc::vec::Vec, #[prost(uint32, tag = "2")] + pub hnpeappmgaa: u32, + #[prost(uint32, tag = "14")] pub naalcbmbpgc: u32, - #[prost(uint32, tag = "15")] - pub challenge_id: u32, - #[prost(uint32, repeated, tag = "5")] + #[prost(uint32, tag = "9")] + pub llfofpndafg: u32, + #[prost(uint32, repeated, tag = "12")] pub avatar_list: ::prost::alloc::vec::Vec, - #[prost(bool, tag = "1")] + #[prost(message, repeated, tag = "4")] + pub mdlachdkmph: ::prost::alloc::vec::Vec, + #[prost(bool, tag = "7")] pub aplknjegbkf: bool, + #[prost(uint32, repeated, tag = "13")] + pub hlibijfhhpg: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "6")] + pub challenge_id: u32, + #[prost(uint32, tag = "3")] + pub hjmglemjhkg: u32, + #[prost(uint32, tag = "5")] + pub cpgoipicpjf: u32, } /// Obf: BNABKPINGGB #[derive(proto_derive::CmdID)] -#[cmdid(4295)] +#[cmdid(4220)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetBoxingClubInfoCsReq {} /// Obf: BHDCDGAPHGH #[derive(proto_derive::CmdID)] -#[cmdid(4232)] +#[cmdid(4291)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetBoxingClubInfoScRsp { - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "3")] pub retcode: u32, - #[prost(message, repeated, tag = "4")] + #[prost(message, repeated, tag = "11")] pub challenge_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Gneibbpoaab { - #[prost(enumeration = "AvatarType", tag = "3")] - pub avatar_type: i32, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "5")] pub avatar_id: u32, + #[prost(enumeration = "AvatarType", tag = "6")] + pub avatar_type: i32, } /// Obf: MPBJBFHDDJG #[derive(proto_derive::CmdID)] -#[cmdid(4231)] +#[cmdid(4267)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MatchBoxingClubOpponentCsReq { - #[prost(message, repeated, tag = "13")] + #[prost(message, repeated, tag = "1")] pub mdlachdkmph: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "11")] - pub avatar_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "11")] pub challenge_id: u32, + #[prost(uint32, repeated, tag = "6")] + pub avatar_list: ::prost::alloc::vec::Vec, } /// Obf: NGBFMHIJBIJ #[derive(proto_derive::CmdID)] -#[cmdid(4240)] +#[cmdid(4239)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MatchBoxingClubOpponentScRsp { - #[prost(message, optional, tag = "3")] - pub dddikpnnble: ::core::option::Option, - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "1")] pub retcode: u32, + #[prost(message, optional, tag = "13")] + pub dddikpnnble: ::core::option::Option, } /// Obf: ACIMGINPANN #[derive(proto_derive::CmdID)] -#[cmdid(4272)] +#[cmdid(4280)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ChooseBoxingClubResonanceCsReq { - #[prost(uint32, tag = "15")] - pub llfofpndafg: u32, - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "5")] pub challenge_id: u32, + #[prost(uint32, tag = "3")] + pub llfofpndafg: u32, } /// Obf: ADIJJGADDHF #[derive(proto_derive::CmdID)] -#[cmdid(4285)] +#[cmdid(4202)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ChooseBoxingClubResonanceScRsp { - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "1")] pub retcode: u32, - #[prost(message, optional, tag = "4")] + #[prost(message, optional, tag = "7")] pub dddikpnnble: ::core::option::Option, } /// Obf: JNJKBCNNKGB #[derive(proto_derive::CmdID)] -#[cmdid(4216)] +#[cmdid(4205)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SetBoxingClubResonanceLineupCsReq { - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "6")] pub challenge_id: u32, - #[prost(message, repeated, tag = "14")] + #[prost(message, repeated, tag = "15")] pub mdlachdkmph: ::prost::alloc::vec::Vec, } /// Obf: JHGHHPBOCHK #[derive(proto_derive::CmdID)] -#[cmdid(4246)] +#[cmdid(4274)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SetBoxingClubResonanceLineupScRsp { - #[prost(uint32, tag = "11")] - pub retcode: u32, - #[prost(message, optional, tag = "5")] + #[prost(message, optional, tag = "3")] pub dddikpnnble: ::core::option::Option, + #[prost(uint32, tag = "5")] + pub retcode: u32, } /// Obf: NGNGPMKLFAK #[derive(proto_derive::CmdID)] -#[cmdid(4283)] +#[cmdid(4273)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ChooseBoxingClubStageOptionalBuffCsReq { - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "1")] pub fmgmaiegofp: u32, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "8")] pub challenge_id: u32, } /// Obf: JBJPGCDOCJC #[derive(proto_derive::CmdID)] -#[cmdid(4260)] +#[cmdid(4298)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ChooseBoxingClubStageOptionalBuffScRsp { - #[prost(uint32, tag = "5")] - pub retcode: u32, - #[prost(message, optional, tag = "3")] + #[prost(message, optional, tag = "9")] pub dddikpnnble: ::core::option::Option, + #[prost(uint32, tag = "7")] + pub retcode: u32, } /// Obf: IBNNGGAGIPD #[derive(proto_derive::CmdID)] -#[cmdid(4276)] +#[cmdid(4227)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct StartBoxingClubBattleCsReq { - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "12")] pub challenge_id: u32, } /// Obf: CKFFILONDHI #[derive(proto_derive::CmdID)] -#[cmdid(4248)] +#[cmdid(4221)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct StartBoxingClubBattleScRsp { - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "11")] pub challenge_id: u32, + #[prost(message, optional, tag = "1")] + pub battle_info: ::core::option::Option, #[prost(uint32, tag = "12")] pub retcode: u32, - #[prost(message, optional, tag = "6")] - pub battle_info: ::core::option::Option, } /// Obf: IGPNNOGBAFH #[derive(proto_derive::CmdID)] -#[cmdid(4271)] +#[cmdid(4270)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GiveUpBoxingClubChallengeCsReq { - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "12")] pub challenge_id: u32, - #[prost(bool, tag = "4")] + #[prost(bool, tag = "1")] pub pcpdfjhdjcc: bool, } /// Obf: LAPAICIPAHE #[derive(proto_derive::CmdID)] -#[cmdid(4252)] +#[cmdid(4259)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GiveUpBoxingClubChallengeScRsp { - #[prost(uint32, tag = "4")] - pub retcode: u32, - #[prost(message, optional, tag = "11")] + #[prost(message, optional, tag = "15")] pub dddikpnnble: ::core::option::Option, + #[prost(uint32, tag = "12")] + pub retcode: u32, } /// Obf: JBENHLGKAOM #[derive(proto_derive::CmdID)] -#[cmdid(4222)] +#[cmdid(4254)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct BoxingClubRewardScNotify { - #[prost(uint32, tag = "1")] - pub naalcbmbpgc: u32, - #[prost(bool, tag = "3")] + #[prost(bool, tag = "1")] pub is_win: bool, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "5")] + pub naalcbmbpgc: u32, + #[prost(uint32, tag = "14")] pub challenge_id: u32, - #[prost(message, optional, tag = "9")] + #[prost(message, optional, tag = "4")] pub reward: ::core::option::Option, } /// Obf: BLPFDJGEHMF #[derive(proto_derive::CmdID)] -#[cmdid(4256)] +#[cmdid(4277)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct BoxingClubChallengeUpdateScNotify { - #[prost(message, optional, tag = "5")] + #[prost(message, optional, tag = "12")] pub dddikpnnble: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Challenge { - #[prost(bool, tag = "7")] + #[prost(uint32, tag = "15")] + pub challenge_id: u32, + #[prost(uint32, tag = "5")] + pub score: u32, + #[prost(uint32, tag = "14")] + pub taken_reward: u32, + #[prost(bool, tag = "11")] pub kfdaicilnmb: bool, #[prost(message, optional, tag = "12")] - pub story_info: ::core::option::Option, - #[prost(uint32, tag = "4")] - pub attempts: u32, - #[prost(uint32, tag = "15")] - pub score: u32, - #[prost(uint32, tag = "11")] + pub stage_info: ::core::option::Option, + #[prost(uint32, tag = "6")] pub stars: u32, - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "9")] + pub attempts: u32, + #[prost(uint32, tag = "4")] pub score_two: u32, - #[prost(uint32, tag = "10")] - pub taken_reward: u32, - #[prost(uint32, tag = "2")] - pub challenge_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ChallengeReward { - #[prost(uint64, tag = "15")] + #[prost(uint64, tag = "9")] pub taken_challenge_reward: u64, - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "3")] pub group_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ChallengeHistoryMaxLevel { - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "9")] pub ordering_index: u32, - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "12")] pub level: u32, } /// Obf: BKGDNIMPOKJ #[derive(proto_derive::CmdID)] -#[cmdid(1795)] +#[cmdid(1720)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetChallengeCsReq {} /// Obf: KAMDAMIGPGL #[derive(proto_derive::CmdID)] -#[cmdid(1732)] +#[cmdid(1791)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetChallengeScRsp { - #[prost(message, repeated, tag = "11")] - pub challenge_reward_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "13")] pub lpljmkpblif: u32, - #[prost(message, repeated, tag = "10")] - pub challenge_list: ::prost::alloc::vec::Vec, #[prost(message, repeated, tag = "5")] - pub max_level_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "1")] + pub challenge_reward_list: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "9")] pub retcode: u32, + #[prost(message, repeated, tag = "15")] + pub challenge_list: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "14")] + pub max_level_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct StartChallengeStoryBuffInfo { - #[prost(uint32, tag = "1")] - pub buff_two: u32, +pub struct StoryStageBuffInfo { #[prost(uint32, tag = "14")] pub buff_one: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct StartChallengeBossBuffInfo { - #[prost(uint32, tag = "3")] - pub buff_one: u32, - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "13")] pub buff_two: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct StartChallengeStoryInfo { - #[prost(oneof = "start_challenge_story_info::Buff", tags = "13, 4")] - pub buff: ::core::option::Option, +pub struct BossStageBuffInfo { + #[prost(uint32, tag = "10")] + pub buff_two: u32, + #[prost(uint32, tag = "2")] + pub buff_one: u32, } -/// Nested message and enum types in `StartChallengeStoryInfo`. -pub mod start_challenge_story_info { +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct ChallengeBuffInfo { + #[prost(oneof = "challenge_buff_info::Info", tags = "14, 11")] + pub info: ::core::option::Option, +} +/// Nested message and enum types in `ChallengeBuffInfo`. +pub mod challenge_buff_info { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Oneof)] - pub enum Buff { - #[prost(message, tag = "13")] - StoryBuffInfo(super::StartChallengeStoryBuffInfo), - #[prost(message, tag = "4")] - BossBuffInfo(super::StartChallengeBossBuffInfo), + pub enum Info { + #[prost(message, tag = "14")] + StoryInfo(super::StoryStageBuffInfo), + #[prost(message, tag = "11")] + BossInfo(super::BossStageBuffInfo), } } /// Obf: HJMBNPPOMNE #[derive(proto_derive::CmdID)] -#[cmdid(1731)] +#[cmdid(1767)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct StartChallengeCsReq { - #[prost(uint32, repeated, tag = "1")] - pub first_lineup_ids: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "6")] - pub second_lineup_ids: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "8")] pub challenge_id: u32, + #[prost(uint32, repeated, tag = "5")] + pub second_lineup_ids: ::prost::alloc::vec::Vec, #[prost(message, optional, tag = "10")] - pub story_info: ::core::option::Option, + pub stage_info: ::core::option::Option, + #[prost(uint32, repeated, tag = "3")] + pub first_lineup_ids: ::prost::alloc::vec::Vec, } /// Obf: NLLMMAHMCEA #[derive(proto_derive::CmdID)] -#[cmdid(1740)] +#[cmdid(1739)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct StartChallengeScRsp { - #[prost(message, optional, tag = "9")] - pub story_info: ::core::option::Option, - #[prost(message, optional, tag = "13")] - pub scene: ::core::option::Option, - #[prost(message, repeated, tag = "10")] - pub lineup_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "15")] + #[prost(message, optional, tag = "7")] + pub cur_challenge_instance: ::core::option::Option, + #[prost(uint32, tag = "10")] pub retcode: u32, - #[prost(message, optional, tag = "11")] - pub challenge_info: ::core::option::Option, + #[prost(message, optional, tag = "3")] + pub stage_info: ::core::option::Option, + #[prost(message, optional, tag = "14")] + pub scene: ::core::option::Option, + #[prost(message, repeated, tag = "15")] + pub lineup_list: ::prost::alloc::vec::Vec, } /// Obf: FICKCKBMKOB #[derive(proto_derive::CmdID)] -#[cmdid(1743)] +#[cmdid(1752)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct StartPartialChallengeCsReq { - #[prost(bool, tag = "3")] - pub is_first_half: bool, - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "15")] pub challenge_id: u32, - #[prost(uint32, tag = "8")] + #[prost(bool, tag = "6")] + pub is_first_half: bool, + #[prost(uint32, tag = "11")] pub buff_id: u32, } /// Obf: MMPPOEFOALC #[derive(proto_derive::CmdID)] -#[cmdid(1733)] +#[cmdid(1768)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct StartPartialChallengeScRsp { - #[prost(message, optional, tag = "4")] - pub challenge_info: ::core::option::Option, - #[prost(message, optional, tag = "8")] - pub scene: ::core::option::Option, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "9")] pub retcode: u32, #[prost(message, optional, tag = "14")] + pub scene: ::core::option::Option, + #[prost(message, optional, tag = "1")] pub lineup: ::core::option::Option, + #[prost(message, optional, tag = "10")] + pub cur_challenge_instance: ::core::option::Option, } /// Obf: EFDLMFKDMKF #[derive(proto_derive::CmdID)] -#[cmdid(1776)] +#[cmdid(1727)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct LeaveChallengeCsReq {} /// Obf: CFJBOKIKIEN #[derive(proto_derive::CmdID)] -#[cmdid(1748)] +#[cmdid(1721)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct LeaveChallengeScRsp { #[prost(uint32, tag = "3")] @@ -4748,156 +4925,156 @@ pub struct LeaveChallengeScRsp { } /// Obf: IMMJAEDHHIA #[derive(proto_derive::CmdID)] -#[cmdid(1771)] +#[cmdid(1770)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ChallengeSettleNotify { - #[prost(uint32, tag = "3")] + #[prost(message, optional, tag = "11")] + pub cur_challenge_instance: ::core::option::Option, + #[prost(uint32, tag = "9")] pub challenge_score: u32, - #[prost(message, optional, tag = "4")] - pub challenge_info: ::core::option::Option, - #[prost(uint32, tag = "10")] - pub score_two: u32, - #[prost(uint32, repeated, tag = "14")] - pub hahaeifmlbm: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "5")] - pub challenge_id: u32, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "3")] pub lpljmkpblif: u32, - #[prost(uint32, tag = "11")] - pub stars: u32, - #[prost(message, optional, tag = "6")] + #[prost(message, optional, tag = "12")] pub max_level: ::core::option::Option, - #[prost(bool, tag = "8")] + #[prost(uint32, tag = "4")] + pub score_two: u32, + #[prost(uint32, tag = "5")] + pub stars: u32, + #[prost(bool, tag = "6")] pub is_win: bool, - #[prost(message, optional, tag = "15")] + #[prost(message, optional, tag = "8")] pub reward: ::core::option::Option, + #[prost(uint32, repeated, tag = "2")] + pub hahaeifmlbm: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "7")] + pub challenge_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct KillMonsterInfo { - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "5")] pub kill_num: u32, - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "9")] pub monster_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct ChallengeStoryBuffInfo { - #[prost(uint32, repeated, tag = "14")] +pub struct ChallengeStoryStageBuff { + #[prost(uint32, repeated, tag = "9")] pub buff_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct ChallengeBossBuffInfo { - #[prost(uint32, repeated, tag = "5")] +pub struct ChallengeBossStageBuff { + #[prost(uint32, repeated, tag = "12")] pub buff_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "4")] pub kbhnhbbahhf: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct ChallengeStoryInfo { - #[prost(oneof = "challenge_story_info::Buff", tags = "6, 2")] - pub buff: ::core::option::Option, +pub struct ChallengeStageBuffInfo { + #[prost(oneof = "challenge_stage_buff_info::Info", tags = "5, 12")] + pub info: ::core::option::Option, } -/// Nested message and enum types in `ChallengeStoryInfo`. -pub mod challenge_story_info { +/// Nested message and enum types in `ChallengeStageBuffInfo`. +pub mod challenge_stage_buff_info { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum Buff { - #[prost(message, tag = "6")] - StoryBuffs(super::ChallengeStoryBuffInfo), - #[prost(message, tag = "2")] - BossBuffs(super::ChallengeBossBuffInfo), + pub enum Info { + #[prost(message, tag = "5")] + StoryBuff(super::ChallengeStoryStageBuff), + #[prost(message, tag = "12")] + BossBuff(super::ChallengeBossStageBuff), } } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct ChallengeInfo { - #[prost(enumeration = "ChallengeStatus", tag = "10")] - pub status: i32, - #[prost(uint32, tag = "9")] - pub round_count: u32, - #[prost(message, optional, tag = "2")] - pub story_info: ::core::option::Option, - #[prost(uint32, tag = "1")] - pub denbnlilgij: u32, - #[prost(enumeration = "ExtraLineupType", tag = "5")] - pub extra_lineup_type: i32, +pub struct CurChallengeInstance { #[prost(uint32, tag = "8")] - pub challenge_id: u32, - #[prost(message, repeated, tag = "15")] - pub archive_monster_id_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "14")] - pub score_two: u32, - #[prost(uint32, tag = "13")] pub score: u32, + #[prost(message, optional, tag = "9")] + pub stage_info: ::core::option::Option, + #[prost(uint32, tag = "1")] + pub score_two: u32, + #[prost(uint32, tag = "7")] + pub denbnlilgij: u32, + #[prost(enumeration = "ExtraLineupType", tag = "2")] + pub extra_lineup_type: i32, + #[prost(uint32, tag = "14")] + pub challenge_id: u32, + #[prost(uint32, tag = "10")] + pub round_count: u32, + #[prost(enumeration = "ChallengeStatus", tag = "15")] + pub status: i32, + #[prost(message, repeated, tag = "12")] + pub archive_monster_id_list: ::prost::alloc::vec::Vec, } /// Obf: GLABHAOJNNK #[derive(proto_derive::CmdID)] -#[cmdid(1756)] +#[cmdid(1777)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetCurChallengeCsReq {} /// Obf: PDAIAOMIFCG #[derive(proto_derive::CmdID)] -#[cmdid(1772)] +#[cmdid(1780)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetCurChallengeScRsp { - #[prost(message, repeated, tag = "1")] + #[prost(message, repeated, tag = "12")] pub lineup_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "13")] pub retcode: u32, - #[prost(message, optional, tag = "12")] - pub challenge_info: ::core::option::Option, + #[prost(message, optional, tag = "11")] + pub cur_challenge_instance: ::core::option::Option, } /// Obf: PDJJKPKEHIG #[derive(proto_derive::CmdID)] -#[cmdid(1785)] +#[cmdid(1702)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ChallengeLineupNotify { - #[prost(enumeration = "ExtraLineupType", tag = "11")] + #[prost(enumeration = "ExtraLineupType", tag = "5")] pub extra_lineup_type: i32, } /// Obf: EAKKAPGCAEJ #[derive(proto_derive::CmdID)] -#[cmdid(1783)] +#[cmdid(1773)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TakeChallengeRewardCsReq { - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "7")] pub group_id: u32, } /// Obf: OINBAGIIMKJ #[derive(proto_derive::CmdID)] -#[cmdid(1760)] +#[cmdid(1798)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TakeChallengeRewardScRsp { - #[prost(message, repeated, tag = "14")] - pub taken_reward_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "11")] - pub group_id: u32, - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "2")] pub retcode: u32, + #[prost(message, repeated, tag = "12")] + pub taken_reward_list: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "14")] + pub group_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TakenChallengeRewardInfo { - #[prost(uint32, tag = "8")] - pub star_count: u32, - #[prost(message, optional, tag = "6")] + #[prost(message, optional, tag = "10")] pub reward: ::core::option::Option, + #[prost(uint32, tag = "11")] + pub star_count: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ChallengeMemoryStats { - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "6")] pub attempts: u32, - #[prost(message, optional, tag = "8")] + #[prost(message, optional, tag = "12")] pub clear_info: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ChallengeStoryStats { - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "5")] pub attempts: u32, #[prost(message, optional, tag = "10")] pub clear_info: ::core::option::Option, @@ -4905,95 +5082,95 @@ pub struct ChallengeStoryStats { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ChallengeBossStats { - #[prost(uint32, tag = "9")] - pub attempts: u32, - #[prost(message, optional, tag = "7")] + #[prost(message, optional, tag = "3")] pub clear_info: ::core::option::Option, + #[prost(uint32, tag = "1")] + pub attempts: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ChallengeMemoryClearInfo { - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "4")] pub round_count: u32, - #[prost(uint32, tag = "11")] - pub highest_difficulty: u32, - #[prost(message, repeated, tag = "1")] - pub lineup_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "5")] pub level: u32, + #[prost(uint32, tag = "2")] + pub max_star: u32, + #[prost(message, repeated, tag = "7")] + pub lineup_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ChallengeStoryClearInfo { - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "14")] pub buff_two: u32, - #[prost(uint32, tag = "1")] - pub buff_one: u32, - #[prost(uint32, tag = "7")] - pub level: u32, - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "13")] pub score: u32, - #[prost(message, repeated, tag = "3")] + #[prost(uint32, tag = "9")] + pub level: u32, + #[prost(uint32, tag = "3")] + pub buff_one: u32, + #[prost(message, repeated, tag = "8")] pub lineup_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "2")] - pub highest_difficulty: u32, + #[prost(uint32, tag = "4")] + pub max_star: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ChallengeBossClearInfo { - #[prost(message, repeated, tag = "10")] - pub lineup_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "3")] - pub level: u32, - #[prost(uint32, tag = "15")] - pub score: u32, - #[prost(uint32, tag = "4")] - pub highest_difficulty: u32, #[prost(uint32, tag = "1")] pub buff_one: u32, - #[prost(uint32, tag = "6")] + #[prost(message, repeated, tag = "13")] + pub lineup_list: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "15")] + pub level: u32, + #[prost(uint32, tag = "4")] + pub score: u32, + #[prost(uint32, tag = "9")] pub buff_two: u32, + #[prost(uint32, tag = "3")] + pub max_star: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ChallengeLineup { - #[prost(message, repeated, tag = "14")] + #[prost(message, repeated, tag = "12")] pub avatar_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ChallengeLineupMember { - #[prost(uint32, tag = "7")] - pub ggdiibcdobb: u32, - #[prost(uint32, tag = "13")] - pub level: u32, - #[prost(uint32, tag = "4")] - pub id: u32, #[prost(enumeration = "AvatarType", tag = "10")] pub avatar_type: i32, + #[prost(uint32, tag = "7")] + pub id: u32, #[prost(uint32, tag = "6")] + pub level: u32, + #[prost(uint32, tag = "13")] pub index: u32, + #[prost(uint32, tag = "3")] + pub ggdiibcdobb: u32, } /// Obf: NCPOHOIHIDC #[derive(proto_derive::CmdID)] -#[cmdid(1702)] +#[cmdid(1785)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetChallengeGroupStatisticsCsReq { - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "5")] pub group_id: u32, } /// Obf: PADOFDJLIFE #[derive(proto_derive::CmdID)] -#[cmdid(1739)] +#[cmdid(1738)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetChallengeGroupStatisticsScRsp { - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "9")] pub retcode: u32, - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "5")] pub group_id: u32, #[prost( oneof = "get_challenge_group_statistics_sc_rsp::ChallengeType", - tags = "2, 8, 13" + tags = "12, 1, 10" )] pub challenge_type: ::core::option::Option< get_challenge_group_statistics_sc_rsp::ChallengeType, @@ -5004,444 +5181,447 @@ pub mod get_challenge_group_statistics_sc_rsp { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] pub enum ChallengeType { - #[prost(message, tag = "2")] + #[prost(message, tag = "12")] MemoryStats(super::ChallengeMemoryStats), - #[prost(message, tag = "8")] + #[prost(message, tag = "1")] StoryStats(super::ChallengeStoryStats), - #[prost(message, tag = "13")] + #[prost(message, tag = "10")] BossStats(super::ChallengeBossStats), } } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ChallengeBossStageInfo { - #[prost(uint32, tag = "9")] - pub buff_id: u32, - #[prost(uint32, tag = "13")] - pub stage_score: u32, - #[prost(bool, tag = "11")] +pub struct ChallengeBossSingleNodeInfo { + #[prost(bool, tag = "9")] pub is_win: bool, - #[prost(bool, tag = "7")] + #[prost(bool, tag = "1")] pub meelgndnomn: bool, + #[prost(uint32, tag = "7")] + pub buff_id: u32, + #[prost(uint32, tag = "2")] + pub stage_score: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ChallengeBossEquipment { +pub struct ChallengeBossAvatarEquipment { #[prost(uint32, tag = "7")] pub level: u32, - #[prost(uint32, tag = "2")] - pub unique_id: u32, - #[prost(uint32, tag = "10")] - pub rank: u32, - #[prost(uint32, tag = "6")] - pub tid: u32, #[prost(uint32, tag = "12")] + pub unique_id: u32, + #[prost(uint32, tag = "9")] pub promotion: u32, + #[prost(uint32, tag = "5")] + pub tid: u32, + #[prost(uint32, tag = "11")] + pub rank: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ChallengeBossRelic { - #[prost(message, repeated, tag = "11")] - pub sub_affix_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "13")] - pub level: u32, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "5")] pub unique_id: u32, - #[prost(uint32, tag = "7")] - pub main_affix_id: u32, - #[prost(uint32, tag = "6")] + #[prost(message, repeated, tag = "4")] + pub sub_affix_list: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "8")] + pub level: u32, + #[prost(uint32, tag = "1")] pub tid: u32, + #[prost(uint32, tag = "15")] + pub main_affix_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct ChallengeBossRelicList { - #[prost(map = "uint32, message", tag = "10")] +pub struct ChallengeBossAvatarRelic { + #[prost(map = "uint32, message", tag = "13")] pub equipped_relic_map: ::std::collections::HashMap, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct ChallengeBossInfo { - #[prost(bool, tag = "4")] +pub struct ChallengeBossStageInfo { + #[prost(bool, tag = "10")] pub ncbdnpgpeai: bool, - #[prost(message, optional, tag = "2")] - pub second_node: ::core::option::Option, - #[prost(uint32, repeated, tag = "13")] - pub second_lineup_ids: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "5")] + #[prost(uint32, repeated, tag = "6")] pub first_lineup_ids: ::prost::alloc::vec::Vec, - #[prost(map = "uint32, message", tag = "12")] - pub used_equipment_map: ::std::collections::HashMap, - #[prost(message, optional, tag = "8")] - pub first_node: ::core::option::Option, - #[prost(map = "uint32, message", tag = "10")] - pub used_relic_map: ::std::collections::HashMap, + #[prost(message, optional, tag = "3")] + pub second_node: ::core::option::Option, + #[prost(map = "uint32, message", tag = "13")] + pub avatar_relic_map: ::std::collections::HashMap, + #[prost(map = "uint32, message", tag = "9")] + pub avatar_equipment_map: ::std::collections::HashMap< + u32, + ChallengeBossAvatarEquipment, + >, + #[prost(message, optional, tag = "12")] + pub first_node: ::core::option::Option, + #[prost(uint32, repeated, tag = "1")] + pub second_lineup_ids: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct ChallengeBossExtraInfo { - #[prost(oneof = "challenge_boss_extra_info::Buff", tags = "4")] - pub buff: ::core::option::Option, +pub struct ChallengeExtStageInfo { + #[prost(oneof = "challenge_ext_stage_info::Info", tags = "14")] + pub info: ::core::option::Option, } -/// Nested message and enum types in `ChallengeBossExtraInfo`. -pub mod challenge_boss_extra_info { +/// Nested message and enum types in `ChallengeExtStageInfo`. +pub mod challenge_ext_stage_info { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum Buff { - #[prost(message, tag = "4")] - BossBuffInfo(super::ChallengeBossInfo), + pub enum Info { + #[prost(message, tag = "14")] + BossInfo(super::ChallengeBossStageInfo), } } /// Obf: HJFFBHBBADC #[derive(proto_derive::CmdID)] -#[cmdid(1777)] +#[cmdid(1736)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RestartChallengePhaseCsReq {} /// Obf: CHAJPMIBFLH #[derive(proto_derive::CmdID)] -#[cmdid(1758)] +#[cmdid(1787)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RestartChallengePhaseScRsp { - #[prost(message, optional, tag = "4")] + #[prost(message, optional, tag = "10")] pub scene: ::core::option::Option, - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "12")] pub retcode: u32, } /// Obf: BPLCLIOADHE #[derive(proto_derive::CmdID)] -#[cmdid(1721)] +#[cmdid(1709)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct EnterChallengeNextPhaseCsReq {} /// Obf: JKPDIFEIBBF #[derive(proto_derive::CmdID)] -#[cmdid(1729)] +#[cmdid(1706)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct EnterChallengeNextPhaseScRsp { + #[prost(message, optional, tag = "3")] + pub scene: ::core::option::Option, #[prost(uint32, tag = "8")] pub retcode: u32, - #[prost(message, optional, tag = "10")] - pub scene: ::core::option::Option, } /// Obf: BAGDAHEKNJA #[derive(proto_derive::CmdID)] -#[cmdid(1763)] +#[cmdid(1731)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ChallengeBossPhaseSettleNotify { - #[prost(uint32, tag = "5")] - pub fcmagjblgoj: u32, - #[prost(uint32, tag = "2")] - pub phase: u32, - #[prost(uint32, tag = "13")] - pub score_two: u32, - #[prost(message, repeated, tag = "9")] - pub challenge_battle_target_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "7")] - pub stars: u32, - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "8")] pub challenge_score: u32, - #[prost(uint32, tag = "15")] - pub challenge_id: u32, - #[prost(bool, tag = "6")] + #[prost(uint32, tag = "7")] + pub score_two: u32, + #[prost(bool, tag = "12")] + pub show_reward: bool, + #[prost(bool, tag = "2")] pub is_win: bool, - #[prost(bool, tag = "8")] - pub ilhafbkckog: bool, - #[prost(bool, tag = "3")] - pub njbfdiakfhn: bool, + #[prost(bool, tag = "4")] + pub is_end: bool, + #[prost(message, repeated, tag = "13")] + pub challenge_battle_target_list: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "3")] + pub stars: u32, + #[prost(uint32, tag = "14")] + pub fcmagjblgoj: u32, + #[prost(uint32, tag = "11")] + pub phase: u32, + #[prost(uint32, tag = "10")] + pub challenge_id: u32, } /// Obf: GLHAAABCBBI #[derive(proto_derive::CmdID)] -#[cmdid(3995)] +#[cmdid(3920)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SendMsgCsReq { - #[prost(string, tag = "6")] - pub text: ::prost::alloc::string::String, - #[prost(enumeration = "ChatType", tag = "13")] - pub chat_type: i32, - #[prost(enumeration = "MsgType", tag = "3")] + #[prost(enumeration = "MsgType", tag = "6")] pub msg_type: i32, - #[prost(message, optional, tag = "9")] - pub hnbepabnbng: ::core::option::Option, - #[prost(uint32, tag = "8")] - pub emote: u32, - #[prost(uint32, repeated, tag = "5")] + #[prost(string, tag = "15")] + pub text: ::prost::alloc::string::String, + #[prost(enumeration = "ChatType", tag = "8")] + pub chat_type: i32, + #[prost(uint32, repeated, tag = "12")] pub to_uid_list: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "13")] + pub emote: u32, + #[prost(message, optional, tag = "7")] + pub hnbepabnbng: ::core::option::Option, } /// Obf: BDMDFGCCAFJ #[derive(proto_derive::CmdID)] -#[cmdid(3932)] +#[cmdid(3991)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SendMsgScRsp { - #[prost(uint32, tag = "3")] - pub retcode: u32, - #[prost(uint64, tag = "1")] + #[prost(uint64, tag = "8")] pub end_time: u64, + #[prost(uint32, tag = "7")] + pub retcode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Chat { - #[prost(enumeration = "MsgType", tag = "6")] - pub msg_type: i32, - #[prost(uint32, tag = "1")] - pub sender_uid: u32, - #[prost(string, tag = "15")] + #[prost(string, tag = "6")] pub text: ::prost::alloc::string::String, - #[prost(uint64, tag = "11")] - pub sent_time: u64, - #[prost(message, optional, tag = "5")] + #[prost(uint32, tag = "10")] + pub sender_uid: u32, + #[prost(message, optional, tag = "2")] pub hnbepabnbng: ::core::option::Option, - #[prost(uint32, tag = "14")] + #[prost(uint64, tag = "3")] + pub sent_time: u64, + #[prost(uint32, tag = "12")] pub emote: u32, + #[prost(enumeration = "MsgType", tag = "8")] + pub msg_type: i32, } /// Obf: OBDANOMEOCB #[derive(proto_derive::CmdID)] -#[cmdid(3931)] +#[cmdid(3967)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RevcMsgScNotify { - #[prost(string, tag = "12")] - pub text: ::prost::alloc::string::String, - #[prost(message, optional, tag = "7")] - pub hnbepabnbng: ::core::option::Option, - #[prost(uint32, tag = "4")] - pub emote: u32, - #[prost(enumeration = "MsgType", tag = "10")] + #[prost(enumeration = "MsgType", tag = "5")] pub msg_type: i32, - #[prost(uint32, tag = "14")] - pub from_uid: u32, - #[prost(uint32, tag = "1")] - pub to_uid: u32, - #[prost(enumeration = "ChatType", tag = "3")] + #[prost(enumeration = "ChatType", tag = "4")] pub chat_type: i32, + #[prost(uint32, tag = "9")] + pub to_uid: u32, + #[prost(uint32, tag = "13")] + pub from_uid: u32, + #[prost(message, optional, tag = "8")] + pub hnbepabnbng: ::core::option::Option, + #[prost(uint32, tag = "11")] + pub emote: u32, + #[prost(string, tag = "6")] + pub text: ::prost::alloc::string::String, } /// Obf: MCFHPBPGJHA #[derive(proto_derive::CmdID)] -#[cmdid(3940)] +#[cmdid(3939)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct PrivateMsgOfflineUsersScNotify { - #[prost(uint32, repeated, tag = "2")] + #[prost(uint32, repeated, tag = "14")] pub aibfdnekjmg: ::prost::alloc::vec::Vec, } /// Obf: FBNPMGMMBCB #[derive(proto_derive::CmdID)] -#[cmdid(3976)] +#[cmdid(3927)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetPrivateChatHistoryCsReq { #[prost(uint32, tag = "6")] pub to_uid: u32, - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "3")] pub from_uid: u32, } /// Obf: PBIHKCAJOJM #[derive(proto_derive::CmdID)] -#[cmdid(3948)] +#[cmdid(3921)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetPrivateChatHistoryScRsp { - #[prost(message, repeated, tag = "15")] - pub chat_list: ::prost::alloc::vec::Vec, #[prost(uint32, tag = "9")] - pub from_uid: u32, - #[prost(uint32, tag = "6")] pub retcode: u32, - #[prost(uint32, tag = "14")] + #[prost(message, repeated, tag = "13")] + pub chat_list: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "3")] + pub from_uid: u32, + #[prost(uint32, tag = "8")] pub to_uid: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Onbgidncbob { - #[prost(int64, tag = "10")] - pub fflipihfaef: i64, - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "4")] pub to_uid: u32, + #[prost(int64, tag = "11")] + pub fflipihfaef: i64, } /// Obf: CCNBMJDHJKH #[derive(proto_derive::CmdID)] -#[cmdid(3971)] +#[cmdid(3970)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetChatFriendHistoryCsReq {} /// Obf: OEPOODKIDLF #[derive(proto_derive::CmdID)] -#[cmdid(3952)] +#[cmdid(3959)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetChatFriendHistoryScRsp { - #[prost(message, repeated, tag = "9")] - pub iligpoleepj: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "6")] pub retcode: u32, + #[prost(message, repeated, tag = "10")] + pub iligpoleepj: ::prost::alloc::vec::Vec, } /// Obf: LMGLHEKDJAJ #[derive(proto_derive::CmdID)] -#[cmdid(3922)] +#[cmdid(3954)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetChatEmojiListCsReq {} /// Obf: DMPOKADBKBK #[derive(proto_derive::CmdID)] -#[cmdid(3956)] +#[cmdid(3977)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetChatEmojiListScRsp { - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "9")] pub retcode: u32, - #[prost(uint32, repeated, tag = "15")] + #[prost(uint32, repeated, tag = "5")] pub jepkimmipom: ::prost::alloc::vec::Vec, } /// Obf: HDDJNPMHDCJ #[derive(proto_derive::CmdID)] -#[cmdid(3972)] +#[cmdid(3980)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MarkChatEmojiCsReq { - #[prost(bool, tag = "3")] - pub ncknkebngoh: bool, - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "11")] pub emote: u32, + #[prost(bool, tag = "15")] + pub ncknkebngoh: bool, } /// Obf: ACJOGCJGFIN #[derive(proto_derive::CmdID)] -#[cmdid(3985)] +#[cmdid(3902)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MarkChatEmojiScRsp { - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "13")] pub retcode: u32, - #[prost(bool, tag = "3")] + #[prost(bool, tag = "8")] pub ncknkebngoh: bool, - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "11")] pub emote: u32, } /// Obf: HNKAMIGEFDP #[derive(proto_derive::CmdID)] -#[cmdid(3916)] +#[cmdid(3905)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct BatchMarkChatEmojiCsReq { - #[prost(uint32, repeated, tag = "7")] + #[prost(uint32, repeated, tag = "15")] pub gcjkopicjhd: ::prost::alloc::vec::Vec, } /// Obf: BBJKHANKCJN #[derive(proto_derive::CmdID)] -#[cmdid(3946)] +#[cmdid(3974)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct BatchMarkChatEmojiScRsp { - #[prost(uint32, tag = "8")] - pub retcode: u32, - #[prost(uint32, repeated, tag = "1")] + #[prost(uint32, repeated, tag = "5")] pub gcjkopicjhd: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "15")] + pub retcode: u32, } /// Obf: GBILEJOLHFD #[derive(proto_derive::CmdID)] -#[cmdid(3983)] +#[cmdid(3973)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetLoginChatInfoCsReq {} /// Obf: PHPIJGBLAMH #[derive(proto_derive::CmdID)] -#[cmdid(3960)] +#[cmdid(3998)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetLoginChatInfoScRsp { - #[prost(uint32, tag = "5")] - pub retcode: u32, - #[prost(uint32, repeated, tag = "1")] + #[prost(uint32, repeated, tag = "7")] pub aibfdnekjmg: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "15")] + pub retcode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Ncciejolncf { - #[prost(message, optional, tag = "12")] + #[prost(message, optional, tag = "5")] pub gficflciejj: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Ehanapnjfjd { - #[prost(message, optional, tag = "5")] + #[prost(message, optional, tag = "14")] pub scene: ::core::option::Option, - #[prost(message, optional, tag = "13")] + #[prost(message, optional, tag = "1")] pub lineup: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Oaloinnaini { - #[prost(uint32, repeated, tag = "1708")] - pub ngdedlkngfg: ::prost::alloc::vec::Vec, #[prost(uint32, tag = "5")] - pub kpnakipljgb: u32, - #[prost(message, optional, tag = "1702")] - pub licobikoaao: ::core::option::Option, - #[prost(uint32, tag = "14")] - pub cjgonlaecko: u32, - #[prost(uint32, tag = "4")] - pub ciblonpnbfe: u32, - #[prost(bool, tag = "263")] - pub fneidjimjph: bool, - #[prost(enumeration = "Aikblmohhjp", tag = "7")] - pub bkknaegklcb: i32, - #[prost(int32, tag = "1591")] - pub jfipiifpmmb: i32, - #[prost(uint32, tag = "9")] - pub onlglocadgd: u32, - #[prost(uint32, tag = "12")] - pub hfmjdfpnncm: u32, - #[prost(uint32, tag = "11")] - pub pagpblafneh: u32, - #[prost(uint32, tag = "8")] - pub omcagfaahke: u32, - #[prost(bool, tag = "6")] - pub bnafeecpego: bool, - #[prost(enumeration = "Nlmollcfcgb", tag = "3")] - pub iccepgcifmg: i32, - #[prost(message, optional, tag = "1462")] - pub edphldegjlm: ::core::option::Option, - #[prost(message, optional, tag = "139")] - pub boncmhigpfj: ::core::option::Option, - #[prost(uint32, tag = "1")] pub gofpdnoapbb: u32, + #[prost(message, optional, tag = "907")] + pub edphldegjlm: ::core::option::Option, + #[prost(enumeration = "Aikblmohhjp", tag = "10")] + pub bkknaegklcb: i32, + #[prost(uint32, tag = "7")] + pub hfmjdfpnncm: u32, + #[prost(uint32, tag = "9")] + pub ciblonpnbfe: u32, + #[prost(uint32, tag = "15")] + pub omcagfaahke: u32, + #[prost(uint32, tag = "8")] + pub cjgonlaecko: u32, + #[prost(int32, tag = "1381")] + pub jfipiifpmmb: i32, + #[prost(uint32, tag = "13")] + pub onlglocadgd: u32, + #[prost(uint32, tag = "2")] + pub kpnakipljgb: u32, + #[prost(uint32, repeated, tag = "355")] + pub ngdedlkngfg: ::prost::alloc::vec::Vec, + #[prost(enumeration = "Nlmollcfcgb", tag = "4")] + pub iccepgcifmg: i32, + #[prost(bool, tag = "14")] + pub bnafeecpego: bool, + #[prost(bool, tag = "1043")] + pub fneidjimjph: bool, + #[prost(uint32, tag = "6")] + pub pagpblafneh: u32, + #[prost(message, optional, tag = "1142")] + pub boncmhigpfj: ::core::option::Option, + #[prost(message, optional, tag = "708")] + pub licobikoaao: ::core::option::Option, } /// Obf: HPIOLDGGBMD #[derive(proto_derive::CmdID)] -#[cmdid(5533)] +#[cmdid(5418)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ChessRogueRollDiceCsReq { - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "6")] pub kchfjdajecm: u32, } /// Obf: NOGNCPJBEHK #[derive(proto_derive::CmdID)] -#[cmdid(5426)] +#[cmdid(5504)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ChessRogueRollDiceScRsp { - #[prost(message, optional, tag = "6")] + #[prost(message, optional, tag = "2")] pub aiaonpfbgng: ::core::option::Option, - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "13")] pub retcode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Iaaefegdnlo { - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "4")] pub monster_id: u32, - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "14")] pub mldlfhjlhoc: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Mmopbldhjmf { - #[prost(message, repeated, tag = "6")] - pub cdodefkbkpd: ::prost::alloc::vec::Vec, - #[prost(bool, tag = "3")] + #[prost(bool, tag = "10")] pub pipmgacmjnn: bool, - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "2")] pub endidlcdnni: u32, + #[prost(message, repeated, tag = "15")] + pub cdodefkbkpd: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Ilhlpphldcg { - #[prost(uint32, repeated, tag = "12")] + #[prost(uint32, repeated, tag = "6")] pub gcnkifmgmce: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Ikhpeepogle { - #[prost(message, optional, tag = "5")] - pub hgimnjflklb: ::core::option::Option, - #[prost(message, optional, tag = "1")] + #[prost(message, optional, tag = "12")] pub cjiakcaphjg: ::core::option::Option, + #[prost(message, optional, tag = "2")] + pub hgimnjflklb: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Pihkdokdikf { - #[prost(oneof = "pihkdokdikf::Ldmccmabllc", tags = "9, 14, 1")] + #[prost(oneof = "pihkdokdikf::Ldmccmabllc", tags = "12, 11, 14")] pub ldmccmabllc: ::core::option::Option, } /// Nested message and enum types in `PIHKDOKDIKF`. @@ -5449,958 +5629,958 @@ pub mod pihkdokdikf { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] pub enum Ldmccmabllc { - #[prost(message, tag = "9")] + #[prost(message, tag = "12")] Hgimnjflklb(super::Mmopbldhjmf), - #[prost(message, tag = "14")] + #[prost(message, tag = "11")] Cjiakcaphjg(super::Ilhlpphldcg), - #[prost(message, tag = "1")] + #[prost(message, tag = "14")] Iagebjbplfm(super::Ikhpeepogle), } } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Mknhikdcjjg { - #[prost(bool, tag = "8")] - pub knbdpfeidnm: bool, - #[prost(bool, tag = "15")] - pub alifdhnigal: bool, - #[prost(message, optional, tag = "14")] - pub story_info: ::core::option::Option, - #[prost(uint32, tag = "3")] - pub iigoemfhgll: u32, - #[prost(uint32, tag = "10")] - pub id: u32, - #[prost(uint32, tag = "12")] - pub room_id: u32, - #[prost(uint32, tag = "2")] - pub dknjlpihepj: u32, - #[prost(uint32, tag = "13")] - pub feknlhbagdd: u32, - #[prost(enumeration = "Ogjbgonlhih", tag = "11")] + #[prost(enumeration = "Ogjbgonlhih", tag = "6")] pub hkcjgfephea: i32, - #[prost(uint32, tag = "7")] - pub gicooehhhig: u32, - #[prost(enumeration = "Eieenafclll", tag = "6")] + #[prost(uint32, tag = "11")] + pub dknjlpihepj: u32, + #[prost(uint32, tag = "5")] + pub id: u32, + #[prost(message, optional, tag = "7")] + pub stage_info: ::core::option::Option, + #[prost(enumeration = "Eieenafclll", tag = "3")] pub daajljcajob: i32, + #[prost(bool, tag = "10")] + pub knbdpfeidnm: bool, + #[prost(uint32, tag = "4")] + pub room_id: u32, + #[prost(uint32, tag = "13")] + pub gicooehhhig: u32, + #[prost(uint32, tag = "1")] + pub feknlhbagdd: u32, + #[prost(uint32, tag = "12")] + pub iigoemfhgll: u32, + #[prost(bool, tag = "9")] + pub alifdhnigal: bool, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Ofphdlopiem { - #[prost(uint32, tag = "4")] - pub hdhiongofid: u32, - #[prost(message, repeated, tag = "8")] - pub iafbijekkpg: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "7")] pub hlamiclgpee: u32, #[prost(uint32, tag = "6")] pub bmajdilbpob: u32, - #[prost(uint32, tag = "12")] + #[prost(message, repeated, tag = "10")] + pub iafbijekkpg: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "11")] pub nghppegbpao: u32, + #[prost(uint32, tag = "15")] + pub hdhiongofid: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Doiblcekfdg { - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "8")] pub hhcbjghkcpc: u32, - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "14")] pub room_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Kkckgeojfke { - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "1")] pub bdmlgepndfm: u32, - #[prost(message, optional, tag = "14")] + #[prost(message, optional, tag = "4")] pub bohdminejno: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Hajpalbodih { - #[prost(uint32, repeated, tag = "5")] - pub ingagmmhmjc: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "2")] - pub mcknecfhdkg: ::prost::alloc::vec::Vec, - #[prost(message, optional, tag = "1")] - pub anhjnbgielf: ::core::option::Option, - #[prost(message, optional, tag = "14")] - pub cfekaolkhjg: ::core::option::Option, - #[prost(uint32, tag = "8")] - pub aoeppibmggn: u32, #[prost(uint32, tag = "4")] - pub pmgpokklkdd: u32, - #[prost(enumeration = "Eieenafclll", tag = "13")] + pub aoeppibmggn: u32, + #[prost(message, repeated, tag = "6")] + pub mcknecfhdkg: ::prost::alloc::vec::Vec, + #[prost(enumeration = "Eieenafclll", tag = "5")] pub ccghbbbolmh: i32, + #[prost(uint32, tag = "14")] + pub pmgpokklkdd: u32, + #[prost(uint32, repeated, tag = "3")] + pub ingagmmhmjc: ::prost::alloc::vec::Vec, + #[prost(message, optional, tag = "2")] + pub anhjnbgielf: ::core::option::Option, + #[prost(message, optional, tag = "15")] + pub cfekaolkhjg: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Afabkdefddg { - #[prost(int32, tag = "10")] - pub ocdnmhnnkgm: i32, - #[prost(message, optional, tag = "4")] - pub jmgkbhhigmk: ::core::option::Option, - #[prost(int32, tag = "14")] - pub ljffcnbpjdd: i32, - #[prost(uint32, tag = "11")] - pub ppjbgnbmkpm: u32, - #[prost(uint32, repeated, tag = "1")] - pub cpbmapflplc: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "4")] pub id: u32, - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "11")] pub eehkfnkhnbi: u32, + #[prost(int32, tag = "12")] + pub ljffcnbpjdd: i32, + #[prost(uint32, repeated, tag = "13")] + pub cpbmapflplc: ::prost::alloc::vec::Vec, + #[prost(int32, tag = "14")] + pub ocdnmhnnkgm: i32, #[prost(uint32, tag = "9")] pub mhoijafgecp: u32, + #[prost(uint32, tag = "2")] + pub ppjbgnbmkpm: u32, + #[prost(message, optional, tag = "5")] + pub jmgkbhhigmk: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Llbjabeocec { - #[prost(uint32, tag = "12")] - pub elappcmeloa: u32, - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "1")] + pub aeon_id: u32, + #[prost(uint32, tag = "15")] pub mamhojmfjof: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Pgaldkkfblc { - #[prost(message, repeated, tag = "5")] + #[prost(message, repeated, tag = "2")] pub pjkdpobkkgb: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Cjembcbcbkj { - #[prost(message, optional, tag = "14")] - pub hlagjpbaeml: ::core::option::Option, - #[prost(int32, tag = "13")] - pub icjabpgmacj: i32, - #[prost(uint32, tag = "12")] - pub amnbmjofjoo: u32, - #[prost(uint32, repeated, tag = "5")] - pub fpchnblonlc: ::prost::alloc::vec::Vec, - #[prost(message, optional, tag = "10")] + #[prost(message, optional, tag = "5")] pub bohdminejno: ::core::option::Option, + #[prost(int32, tag = "12")] + pub icjabpgmacj: i32, + #[prost(uint32, repeated, tag = "13")] + pub fpchnblonlc: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "6")] + pub amnbmjofjoo: u32, + #[prost(message, optional, tag = "15")] + pub hlagjpbaeml: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Knlmliimohd { - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "1")] pub avatar_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Iegmfgpfadl { - #[prost(message, repeated, tag = "2")] + #[prost(message, repeated, tag = "1")] pub ajljgmilelp: ::prost::alloc::vec::Vec, - #[prost(message, optional, tag = "6")] + #[prost(message, optional, tag = "12")] pub fpjckpnlnfm: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Hkmlalbdpgo { - #[prost(uint32, tag = "1")] - pub lhcbbgimmdg: u32, - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "14")] pub fahihdjfohm: u32, - #[prost(uint32, repeated, tag = "2")] + #[prost(uint32, repeated, tag = "12")] pub boonpdeobla: ::prost::alloc::vec::Vec, - #[prost(bool, tag = "12")] + #[prost(bool, tag = "10")] pub fjkgkaekbkj: bool, + #[prost(uint32, tag = "7")] + pub lhcbbgimmdg: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Ocbcbidlllj { - #[prost(int32, tag = "11")] + #[prost(int32, tag = "13")] pub odjpoenppob: i32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Hijkilgjclp { - #[prost(uint32, repeated, tag = "10")] + #[prost(uint32, repeated, tag = "9")] pub dimhpbcpnlc: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Fflapkolhcm { - #[prost(message, optional, tag = "4")] - pub chmhpcngfao: ::core::option::Option, - #[prost(message, optional, tag = "8")] - pub lmgkmaoicgc: ::core::option::Option, - #[prost(message, optional, tag = "2")] - pub aiaonpfbgng: ::core::option::Option, #[prost(message, optional, tag = "10")] - pub aabchfbkpeg: ::core::option::Option, - #[prost(message, optional, tag = "3")] - pub opakjjmagph: ::core::option::Option, - #[prost(message, optional, tag = "9")] + pub kndmeilhkej: ::core::option::Option, + #[prost(message, optional, tag = "1")] pub ibmioggkbfb: ::core::option::Option, - #[prost(message, optional, tag = "15")] - pub kndmeilhkej: ::core::option::Option, - #[prost(message, optional, tag = "5")] - pub story_buff_info: ::core::option::Option, - #[prost(message, optional, tag = "14")] - pub lgopnbhhhbg: ::core::option::Option, + #[prost(message, optional, tag = "1478")] + pub fiocabcbnkb: ::core::option::Option, + #[prost(message, optional, tag = "2")] + pub eeppkmpajoh: ::core::option::Option, + #[prost(message, optional, tag = "7")] + pub aiaonpfbgng: ::core::option::Option, #[prost(message, optional, tag = "11")] pub embagmmhipa: ::core::option::Option, - #[prost(message, optional, tag = "1724")] - pub fiocabcbnkb: ::core::option::Option, - #[prost(uint32, tag = "1")] - pub bngfaignphe: u32, - #[prost(message, optional, tag = "12")] - pub eeppkmpajoh: ::core::option::Option, - #[prost(message, repeated, tag = "7")] + #[prost(message, optional, tag = "6")] + pub story_info: ::core::option::Option, + #[prost(uint32, tag = "12")] + pub rogue_sub_mode: u32, + #[prost(message, optional, tag = "15")] + pub lgopnbhhhbg: ::core::option::Option, + #[prost(message, optional, tag = "4")] + pub lmgkmaoicgc: ::core::option::Option, + #[prost(message, optional, tag = "14")] + pub aabchfbkpeg: ::core::option::Option, + #[prost(message, optional, tag = "13")] + pub opakjjmagph: ::core::option::Option, + #[prost(message, optional, tag = "3")] + pub chmhpcngfao: ::core::option::Option, + #[prost(message, repeated, tag = "9")] pub biphngcadde: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Jacmenokjfm { - #[prost(message, optional, tag = "9")] - pub bbcpoebnanc: ::core::option::Option, - #[prost(message, optional, tag = "1")] - pub talent_info: ::core::option::Option, #[prost(message, optional, tag = "13")] - pub fiocabcbnkb: ::core::option::Option, - #[prost(uint32, repeated, tag = "5")] - pub cpbmapflplc: ::prost::alloc::vec::Vec, - #[prost(message, optional, tag = "2")] pub hlagjpbaeml: ::core::option::Option, + #[prost(uint32, repeated, tag = "11")] + pub cpbmapflplc: ::prost::alloc::vec::Vec, #[prost(uint32, repeated, tag = "6")] pub cmnnlmcemcg: ::prost::alloc::vec::Vec, + #[prost(message, optional, tag = "12")] + pub talent_info: ::core::option::Option, + #[prost(message, optional, tag = "1")] + pub fiocabcbnkb: ::core::option::Option, + #[prost(message, optional, tag = "2")] + pub bbcpoebnanc: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Bipddejaadc { - #[prost(message, repeated, tag = "14")] + #[prost(message, repeated, tag = "12")] pub biphngcadde: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "3")] - pub bngfaignphe: u32, + #[prost(uint32, tag = "15")] + pub rogue_sub_mode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Ihnjghalkjb { - #[prost(message, optional, tag = "15")] - pub hlagjpbaeml: ::core::option::Option, - #[prost(message, optional, tag = "11")] + #[prost(message, optional, tag = "2")] pub talent_info: ::core::option::Option, - #[prost(message, optional, tag = "13")] - pub fiocabcbnkb: ::core::option::Option, - #[prost(uint32, repeated, tag = "3")] - pub cmnnlmcemcg: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "9")] + #[prost(uint32, repeated, tag = "5")] pub cpbmapflplc: ::prost::alloc::vec::Vec, - #[prost(message, optional, tag = "6")] + #[prost(message, optional, tag = "9")] pub bbcpoebnanc: ::core::option::Option, + #[prost(message, optional, tag = "4")] + pub fiocabcbnkb: ::core::option::Option, + #[prost(uint32, repeated, tag = "12")] + pub cmnnlmcemcg: ::prost::alloc::vec::Vec, + #[prost(message, optional, tag = "13")] + pub hlagjpbaeml: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Ccodjoaholb { - #[prost(uint32, tag = "320")] + #[prost(message, optional, tag = "12")] + pub eeppkmpajoh: ::core::option::Option, + #[prost(uint32, tag = "6")] + pub fgomiplmeic: u32, + #[prost(message, optional, tag = "14")] + pub lgopnbhhhbg: ::core::option::Option, + #[prost(uint32, tag = "709")] + pub score: u32, + #[prost(uint32, tag = "843")] + pub rogue_sub_mode: u32, + #[prost(uint32, tag = "260")] pub egpcibjiajd: u32, - #[prost(message, optional, tag = "3")] - pub anniaoidado: ::core::option::Option, + #[prost(enumeration = "Kfhlbkccaco", tag = "2")] + pub gmolnjibnja: i32, + #[prost(message, optional, tag = "1748")] + pub opakjjmagph: ::core::option::Option, #[prost(uint32, tag = "1")] pub dmbdnaicpfb: u32, - #[prost(uint32, tag = "10")] - pub fgomiplmeic: u32, - #[prost(uint32, tag = "14")] - pub plbcdiaadkd: u32, - #[prost(uint32, tag = "1004")] - pub bngfaignphe: u32, - #[prost(message, optional, tag = "1807")] - pub opakjjmagph: ::core::option::Option, - #[prost(enumeration = "Kfhlbkccaco", tag = "4")] - pub gmolnjibnja: i32, - #[prost(message, optional, tag = "7")] - pub bgpeckfdeld: ::core::option::Option, - #[prost(uint32, tag = "1841")] + #[prost(uint32, tag = "11")] + pub blbbokogfda: u32, + #[prost(uint32, tag = "7")] + pub ipojmmgoopj: u32, + #[prost(message, optional, tag = "9")] + pub anniaoidado: ::core::option::Option, + #[prost(uint32, tag = "1121")] pub opoimhhafjo: u32, #[prost(bool, tag = "5")] pub hlnfbgacnpo: bool, - #[prost(uint32, tag = "2016")] + #[prost(uint32, tag = "182")] pub abehkcjhceh: u32, - #[prost(uint32, tag = "8")] - pub blbbokogfda: u32, - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "13")] pub pbalfienefo: u32, - #[prost(message, optional, tag = "12")] - pub lgopnbhhhbg: ::core::option::Option, - #[prost(uint32, tag = "9")] - pub ipojmmgoopj: u32, - #[prost(uint32, tag = "811")] - pub score: u32, - #[prost(uint32, repeated, tag = "13")] + #[prost(message, optional, tag = "3")] + pub bgpeckfdeld: ::core::option::Option, + #[prost(uint32, tag = "8")] + pub plbcdiaadkd: u32, + #[prost(uint32, repeated, tag = "4")] pub ojggmoopgil: ::prost::alloc::vec::Vec, - #[prost(message, optional, tag = "6")] - pub eeppkmpajoh: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Ojleefjelap { - #[prost(message, repeated, tag = "3")] - pub iafbijekkpg: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "6")] pub hbcmgiicjmk: u32, + #[prost(message, repeated, tag = "1")] + pub iafbijekkpg: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Lahjpfooheb { - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "5")] pub kenpckfonok: u32, - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "8")] pub fgomiplmeic: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Dipmfomgcgl { - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "2")] pub fahihdjfohm: u32, - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "10")] pub cfibpmkaino: u32, } /// Obf: DFPMEHBDAFP #[derive(proto_derive::CmdID)] -#[cmdid(5595)] +#[cmdid(5541)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ChessRogueQueryCsReq {} /// Obf: FFICMOGJCGL #[derive(proto_derive::CmdID)] -#[cmdid(5447)] +#[cmdid(5412)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ChessRogueQueryScRsp { - #[prost(message, optional, tag = "1")] - pub hndlhicdnpc: ::core::option::Option, - #[prost(message, optional, tag = "10")] - pub blndmfgkpmj: ::core::option::Option, - #[prost(message, optional, tag = "15")] - pub boikablfkec: ::core::option::Option, - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "11")] pub retcode: u32, - #[prost(message, optional, tag = "14")] + #[prost(message, optional, tag = "6")] + pub hndlhicdnpc: ::core::option::Option, + #[prost(message, optional, tag = "12")] + pub boikablfkec: ::core::option::Option, + #[prost(message, optional, tag = "4")] pub lagbgldlgcb: ::core::option::Option, + #[prost(message, optional, tag = "13")] + pub blndmfgkpmj: ::core::option::Option, } /// Obf: GFFNDENCOPM #[derive(proto_derive::CmdID)] -#[cmdid(5472)] +#[cmdid(5519)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ChessRogueEnterCellCsReq { - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "9")] pub femgpnlfagc: u32, - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "1")] pub hhcbjghkcpc: u32, } /// Obf: FLGHAEAHAIE #[derive(proto_derive::CmdID)] -#[cmdid(5518)] +#[cmdid(5579)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ChessRogueEnterCellScRsp { - #[prost(message, optional, tag = "7")] - pub story_info: ::core::option::Option, - #[prost(uint32, tag = "2")] - pub retcode: u32, - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "12")] pub hhcbjghkcpc: u32, - #[prost(message, optional, tag = "8")] + #[prost(message, optional, tag = "11")] + pub stage_info: ::core::option::Option, + #[prost(uint32, tag = "1")] + pub retcode: u32, + #[prost(message, optional, tag = "15")] pub hndlhicdnpc: ::core::option::Option, } /// Obf: ADCOMLGAENP #[derive(proto_derive::CmdID)] -#[cmdid(5414)] +#[cmdid(5490)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ChessRogueEnterCsReq { - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "1")] pub id: u32, } /// Obf: DGLBNHHIPFH #[derive(proto_derive::CmdID)] -#[cmdid(5457)] +#[cmdid(5526)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ChessRogueEnterScRsp { - #[prost(message, optional, tag = "6")] - pub story_info: ::core::option::Option, - #[prost(uint32, tag = "13")] - pub retcode: u32, - #[prost(uint32, tag = "5")] - pub id: u32, - #[prost(message, optional, tag = "2")] + #[prost(message, optional, tag = "13")] pub hndlhicdnpc: ::core::option::Option, + #[prost(message, optional, tag = "10")] + pub stage_info: ::core::option::Option, + #[prost(uint32, tag = "15")] + pub id: u32, + #[prost(uint32, tag = "8")] + pub retcode: u32, } /// Obf: MGMMCBBIKMO #[derive(proto_derive::CmdID)] -#[cmdid(5573)] +#[cmdid(5476)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ChessRogueLeaveCsReq {} /// Obf: MFDMEODLBJI #[derive(proto_derive::CmdID)] -#[cmdid(5531)] +#[cmdid(5469)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ChessRogueLeaveScRsp { - #[prost(message, optional, tag = "3")] - pub story_info: ::core::option::Option, - #[prost(uint32, tag = "12")] - pub retcode: u32, #[prost(message, optional, tag = "13")] - pub blndmfgkpmj: ::core::option::Option, - #[prost(message, optional, tag = "4")] pub chmhpcngfao: ::core::option::Option, - #[prost(message, optional, tag = "5")] + #[prost(message, optional, tag = "12")] pub lagbgldlgcb: ::core::option::Option, + #[prost(uint32, tag = "5")] + pub retcode: u32, + #[prost(message, optional, tag = "4")] + pub stage_info: ::core::option::Option, + #[prost(message, optional, tag = "10")] + pub blndmfgkpmj: ::core::option::Option, } /// Obf: ODPOLCDMIHM #[derive(proto_derive::CmdID)] -#[cmdid(5529)] +#[cmdid(5407)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ChessRogueGiveUpCsReq {} /// Obf: EFFDKLFNALG #[derive(proto_derive::CmdID)] -#[cmdid(5436)] +#[cmdid(5505)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ChessRogueGiveUpScRsp { - #[prost(message, optional, tag = "5")] + #[prost(message, optional, tag = "6")] pub lagbgldlgcb: ::core::option::Option, - #[prost(message, optional, tag = "2")] - pub chmhpcngfao: ::core::option::Option, - #[prost(message, optional, tag = "10")] - pub blndmfgkpmj: ::core::option::Option, - #[prost(message, optional, tag = "14")] - pub story_info: ::core::option::Option, - #[prost(message, optional, tag = "13")] + #[prost(message, optional, tag = "15")] pub boikablfkec: ::core::option::Option, - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "8")] pub retcode: u32, + #[prost(message, optional, tag = "9")] + pub chmhpcngfao: ::core::option::Option, + #[prost(message, optional, tag = "13")] + pub stage_info: ::core::option::Option, + #[prost(message, optional, tag = "12")] + pub blndmfgkpmj: ::core::option::Option, } /// Obf: OJEFOAPJBNN #[derive(proto_derive::CmdID)] -#[cmdid(5471)] +#[cmdid(5488)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ChessRogueStartCsReq { - #[prost(uint32, tag = "3")] - pub elappcmeloa: u32, - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "8")] pub dhndampbhpp: u32, - #[prost(uint32, repeated, tag = "6")] - pub avatar_id_list: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "4")] - pub ahiibhkdfjb: ::prost::alloc::vec::Vec, #[prost(uint32, repeated, tag = "14")] pub trial_avatar_id_list: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "5")] - pub hjgndhlmmib: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "5")] + pub aeon_id: u32, + #[prost(uint32, repeated, tag = "2")] + pub ahiibhkdfjb: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "7")] + pub avatar_id_list: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "13")] + pub base_avatar_id_list: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "3")] pub id: u32, } /// Obf: DCLBJGFLPGI #[derive(proto_derive::CmdID)] -#[cmdid(5441)] +#[cmdid(5436)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ChessRogueStartScRsp { - #[prost(message, optional, tag = "7")] + #[prost(message, optional, tag = "2")] pub hndlhicdnpc: ::core::option::Option, - #[prost(message, optional, tag = "8")] - pub story_info: ::core::option::Option, + #[prost(message, optional, tag = "14")] + pub stage_info: ::core::option::Option, #[prost(message, optional, tag = "9")] pub dbdgahblgbb: ::core::option::Option, - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "10")] pub retcode: u32, } /// Obf: KKEIBLACBDH #[derive(proto_derive::CmdID)] -#[cmdid(5578)] +#[cmdid(5535)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ChessRogueQueryAeonDimensionsCsReq {} /// Obf: LKOPLOODPAL #[derive(proto_derive::CmdID)] -#[cmdid(5413)] +#[cmdid(5423)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ChessRogueQueryAeonDimensionsScRsp { - #[prost(message, optional, tag = "3")] - pub hndlhicdnpc: ::core::option::Option, - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "3")] pub retcode: u32, + #[prost(message, optional, tag = "2")] + pub hndlhicdnpc: ::core::option::Option, } /// Obf: MCMOFBLFAJA #[derive(proto_derive::CmdID)] -#[cmdid(5486)] +#[cmdid(5533)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ChessRogueChangeyAeonDimensionNotify { - #[prost(message, optional, tag = "14")] + #[prost(message, optional, tag = "11")] pub hndlhicdnpc: ::core::option::Option, } /// Obf: FBOAJCKGDEN #[derive(proto_derive::CmdID)] -#[cmdid(5528)] +#[cmdid(5459)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ChessRogueSelectCellCsReq { - #[prost(uint32, tag = "6")] - pub femgpnlfagc: u32, - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "9")] pub hhcbjghkcpc: u32, + #[prost(uint32, tag = "5")] + pub femgpnlfagc: u32, } /// Obf: HMICABPCDCP #[derive(proto_derive::CmdID)] -#[cmdid(5422)] +#[cmdid(5508)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ChessRogueSelectCellScRsp { - #[prost(uint32, tag = "2")] - pub femgpnlfagc: u32, - #[prost(uint32, tag = "7")] - pub retcode: u32, - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "9")] pub hhcbjghkcpc: u32, #[prost(message, optional, tag = "8")] pub kajafnpekaj: ::core::option::Option, + #[prost(uint32, tag = "5")] + pub retcode: u32, + #[prost(uint32, tag = "2")] + pub femgpnlfagc: u32, } /// Obf: ILGKMJJPAAM #[derive(proto_derive::CmdID)] -#[cmdid(5555)] +#[cmdid(5413)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ChessRogueLayerAccountInfoNotify { - #[prost(uint32, tag = "4")] - pub pbalfienefo: u32, - #[prost(message, optional, tag = "8")] - pub boikablfkec: ::core::option::Option, - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "14")] pub ppjbgnbmkpm: u32, + #[prost(message, optional, tag = "12")] + pub boikablfkec: ::core::option::Option, + #[prost(uint32, tag = "15")] + pub pbalfienefo: u32, } /// Obf: JOJNOKAGLPI #[derive(proto_derive::CmdID)] -#[cmdid(5525)] +#[cmdid(5448)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetChessRogueBuffEnhanceInfoCsReq {} /// Obf: GPKDBFDBOBH #[derive(proto_derive::CmdID)] -#[cmdid(5586)] +#[cmdid(5520)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetChessRogueBuffEnhanceInfoScRsp { - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "2")] pub retcode: u32, #[prost(message, optional, tag = "9")] pub buff_enhance_info: ::core::option::Option, } /// Obf: NPEHJAHJEPA #[derive(proto_derive::CmdID)] -#[cmdid(5551)] +#[cmdid(5564)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct EnhanceChessRogueBuffCsReq { - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "8")] pub ojeblmkkmgo: u32, } /// Obf: AFNJNBKBABB #[derive(proto_derive::CmdID)] -#[cmdid(5419)] +#[cmdid(5500)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct EnhanceChessRogueBuffScRsp { - #[prost(message, optional, tag = "3")] - pub buff_enhance_info: ::core::option::Option, - #[prost(message, optional, tag = "10")] - pub anagcoddmom: ::core::option::Option, - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "9")] pub retcode: u32, - #[prost(bool, tag = "4")] + #[prost(message, optional, tag = "6")] + pub rogue_buff: ::core::option::Option, + #[prost(message, optional, tag = "2")] + pub buff_enhance_info: ::core::option::Option, + #[prost(bool, tag = "10")] pub is_success: bool, } /// Obf: JGHADCEKFGG #[derive(proto_derive::CmdID)] -#[cmdid(5590)] +#[cmdid(5506)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ChessRoguePickAvatarCsReq { - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "3")] pub prop_entity_id: u32, - #[prost(uint32, repeated, tag = "9")] + #[prost(uint32, repeated, tag = "10")] pub avatar_id_list: ::prost::alloc::vec::Vec, } /// Obf: FEPOEPBDPPM #[derive(proto_derive::CmdID)] -#[cmdid(5568)] +#[cmdid(5561)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ChessRoguePickAvatarScRsp { - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "10")] pub retcode: u32, - #[prost(message, optional, tag = "10")] + #[prost(message, optional, tag = "11")] pub embagmmhipa: ::core::option::Option, - #[prost(uint32, repeated, tag = "5")] + #[prost(uint32, repeated, tag = "9")] pub avatar_id_list: ::prost::alloc::vec::Vec, } /// Obf: DHDPCOIJBGJ #[derive(proto_derive::CmdID)] -#[cmdid(5465)] +#[cmdid(5551)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ChessRogueReviveAvatarCsReq { + #[prost(uint32, repeated, tag = "3")] + pub avatar_id_list: ::prost::alloc::vec::Vec, #[prost(uint32, tag = "6")] pub interacted_prop_entity_id: u32, - #[prost(uint32, repeated, tag = "14")] - pub avatar_id_list: ::prost::alloc::vec::Vec, } /// Obf: KEHIIMHCHLI #[derive(proto_derive::CmdID)] -#[cmdid(5516)] +#[cmdid(5543)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ChessRogueReviveAvatarScRsp { - #[prost(message, optional, tag = "15")] + #[prost(message, optional, tag = "2")] pub fpjckpnlnfm: ::core::option::Option, - #[prost(uint32, repeated, tag = "14")] - pub avatar_id_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "15")] pub retcode: u32, + #[prost(uint32, repeated, tag = "10")] + pub avatar_id_list: ::prost::alloc::vec::Vec, } /// Obf: GOAMHGNKPJM #[derive(proto_derive::CmdID)] -#[cmdid(5598)] +#[cmdid(5547)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ChessRogueUpdateReviveInfoScNotify { - #[prost(message, optional, tag = "2")] + #[prost(message, optional, tag = "1")] pub fpjckpnlnfm: ::core::option::Option, } /// Obf: CEMBPPNNHBN #[derive(proto_derive::CmdID)] -#[cmdid(5484)] +#[cmdid(5534)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ChessRogueUpdateMoneyInfoScNotify { - #[prost(message, optional, tag = "15")] + #[prost(message, optional, tag = "6")] pub aabchfbkpeg: ::core::option::Option, } /// Obf: PFDMKAMINEM #[derive(proto_derive::CmdID)] -#[cmdid(5514)] +#[cmdid(5473)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ChessRogueUpdateDiceInfoScNotify { - #[prost(message, optional, tag = "5")] + #[prost(message, optional, tag = "6")] pub aiaonpfbgng: ::core::option::Option, } /// Obf: KCKJOLHPNEE #[derive(proto_derive::CmdID)] -#[cmdid(5461)] +#[cmdid(5555)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ChessRogueUpdateLevelBaseInfoScNotify { - #[prost(enumeration = "Ibmlfggingp", tag = "13")] + #[prost(enumeration = "Ibmlfggingp", tag = "3")] pub eehkfnkhnbi: i32, #[prost(enumeration = "Mmkdkdgfblh", tag = "15")] pub reason: i32, } /// Obf: HFINFFLLHOC #[derive(proto_derive::CmdID)] -#[cmdid(5495)] +#[cmdid(5538)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ChessRogueUpdateAllowedSelectCellScNotify { - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "5")] pub eamgahffeco: u32, - #[prost(uint32, repeated, tag = "10")] + #[prost(uint32, repeated, tag = "12")] pub ingagmmhmjc: ::prost::alloc::vec::Vec, } /// Obf: DMAGHPKHLBO #[derive(proto_derive::CmdID)] -#[cmdid(5580)] +#[cmdid(5481)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ChessRogueUpdateBoardScNotify { - #[prost(message, optional, tag = "11")] + #[prost(message, optional, tag = "3")] pub dhdknmfmgbc: ::core::option::Option, } /// Obf: BOLPCHMMDHM #[derive(proto_derive::CmdID)] -#[cmdid(5574)] +#[cmdid(5404)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ChessRogueUpdateAeonModifierValueScNotify { - #[prost(uint32, tag = "13")] - pub elappcmeloa: u32, - #[prost(int32, tag = "6")] + #[prost(int32, tag = "15")] pub icjabpgmacj: i32, + #[prost(uint32, tag = "10")] + pub aeon_id: u32, } /// Obf: ACIENOHKCOG #[derive(proto_derive::CmdID)] -#[cmdid(5415)] +#[cmdid(5569)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ChessRogueUpdateDicePassiveAccumulateValueScNotify { - #[prost(int32, tag = "4")] + #[prost(int32, tag = "9")] pub cblaememmig: i32, } /// Obf: MLLPACPPJBB #[derive(proto_derive::CmdID)] -#[cmdid(5418)] +#[cmdid(5453)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ChessRogueSkipTeachingLevelCsReq {} /// Obf: ChessRogueSkipTeachingLevelScRsp #[derive(proto_derive::CmdID)] -#[cmdid(5600)] +#[cmdid(5438)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ChessRogueSkipTeachingLevelScRsp { - #[prost(message, optional, tag = "4")] - pub skip_reward_list: ::core::option::Option, - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "14")] pub retcode: u32, + #[prost(message, optional, tag = "8")] + pub skip_reward_list: ::core::option::Option, } /// Obf: OAPHEAMIIFF #[derive(proto_derive::CmdID)] -#[cmdid(5527)] +#[cmdid(5537)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ChessRogueUpdateUnlockLevelScNotify { - #[prost(uint32, repeated, tag = "9")] + #[prost(uint32, repeated, tag = "3")] pub cpbmapflplc: ::prost::alloc::vec::Vec, } /// Obf: BIHDFJFHHMA #[derive(proto_derive::CmdID)] -#[cmdid(5460)] +#[cmdid(5546)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ChessRogueEnterNextLayerCsReq {} /// Obf: PFJHDBLEKHD #[derive(proto_derive::CmdID)] -#[cmdid(5501)] +#[cmdid(5521)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ChessRogueEnterNextLayerScRsp { - #[prost(message, optional, tag = "5")] + #[prost(message, optional, tag = "14")] pub dbdgahblgbb: ::core::option::Option, + #[prost(uint32, tag = "12")] + pub retcode: u32, + #[prost(message, optional, tag = "5")] + pub stage_info: ::core::option::Option, #[prost(message, optional, tag = "7")] pub rogue_info: ::core::option::Option, - #[prost(message, optional, tag = "11")] - pub story_info: ::core::option::Option, - #[prost(uint32, tag = "10")] - pub retcode: u32, } /// Obf: APNIJKHIJDD #[derive(proto_derive::CmdID)] -#[cmdid(5587)] +#[cmdid(5576)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ChessRogueReRollDiceCsReq { - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "2")] pub kchfjdajecm: u32, } /// Obf: JBHIKPPOCBH #[derive(proto_derive::CmdID)] -#[cmdid(5445)] +#[cmdid(5487)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ChessRogueReRollDiceScRsp { - #[prost(message, optional, tag = "10")] - pub aiaonpfbgng: ::core::option::Option, #[prost(uint32, tag = "9")] pub retcode: u32, + #[prost(message, optional, tag = "6")] + pub aiaonpfbgng: ::core::option::Option, } /// Obf: CAEECAHOEOL #[derive(proto_derive::CmdID)] -#[cmdid(5448)] +#[cmdid(5571)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ChessRogueConfirmRollCsReq { - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "1")] pub kchfjdajecm: u32, } /// Obf: FDMLPJGLCLF #[derive(proto_derive::CmdID)] -#[cmdid(5542)] +#[cmdid(5422)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ChessRogueConfirmRollScRsp { - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "7")] pub retcode: u32, - #[prost(message, optional, tag = "2")] + #[prost(message, optional, tag = "14")] pub aiaonpfbgng: ::core::option::Option, } /// Obf: KJNFLIGHDII #[derive(proto_derive::CmdID)] -#[cmdid(5512)] +#[cmdid(5485)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ChessRogueCheatRollCsReq { - #[prost(uint32, tag = "8")] - pub kchfjdajecm: u32, - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "10")] pub eooadpocphd: u32, + #[prost(uint32, tag = "4")] + pub kchfjdajecm: u32, } /// Obf: PENOIKKIHPB #[derive(proto_derive::CmdID)] -#[cmdid(5473)] +#[cmdid(5560)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ChessRogueCheatRollScRsp { - #[prost(uint32, tag = "15")] - pub retcode: u32, - #[prost(uint32, tag = "6")] - pub nljoldmcgai: u32, - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "9")] pub eooadpocphd: u32, - #[prost(message, optional, tag = "12")] + #[prost(uint32, tag = "1")] + pub nljoldmcgai: u32, + #[prost(message, optional, tag = "10")] pub aiaonpfbgng: ::core::option::Option, + #[prost(uint32, tag = "13")] + pub retcode: u32, } /// Obf: KMFHMGOABIP #[derive(proto_derive::CmdID)] -#[cmdid(5547)] +#[cmdid(5590)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ChessRogueGiveUpRollCsReq {} /// Obf: OHJANOLOLLE #[derive(proto_derive::CmdID)] -#[cmdid(5408)] +#[cmdid(5403)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ChessRogueGiveUpRollScRsp { - #[prost(message, optional, tag = "6")] - pub aiaonpfbgng: ::core::option::Option, - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "14")] pub retcode: u32, - #[prost(message, optional, tag = "10")] + #[prost(message, optional, tag = "13")] pub nkmjhejcolp: ::core::option::Option, + #[prost(message, optional, tag = "7")] + pub aiaonpfbgng: ::core::option::Option, } /// Obf: GDAIDHNKFCG #[derive(proto_derive::CmdID)] -#[cmdid(5492)] +#[cmdid(5511)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ChessRogueQuitCsReq {} /// Obf: HFGHFCGANCF #[derive(proto_derive::CmdID)] -#[cmdid(5521)] +#[cmdid(5542)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ChessRogueQuitScRsp { - #[prost(message, optional, tag = "12")] - pub story_info: ::core::option::Option, - #[prost(uint32, tag = "1")] - pub retcode: u32, - #[prost(message, optional, tag = "9")] - pub blndmfgkpmj: ::core::option::Option, #[prost(message, optional, tag = "7")] - pub chmhpcngfao: ::core::option::Option, - #[prost(message, optional, tag = "15")] + pub stage_info: ::core::option::Option, + #[prost(message, optional, tag = "11")] pub lagbgldlgcb: ::core::option::Option, #[prost(message, optional, tag = "3")] - pub lmgkmaoicgc: ::core::option::Option, - #[prost(message, optional, tag = "8")] pub boikablfkec: ::core::option::Option, + #[prost(message, optional, tag = "9")] + pub chmhpcngfao: ::core::option::Option, + #[prost(message, optional, tag = "4")] + pub lmgkmaoicgc: ::core::option::Option, + #[prost(uint32, tag = "14")] + pub retcode: u32, + #[prost(message, optional, tag = "13")] + pub blndmfgkpmj: ::core::option::Option, } /// Obf: GPJCDDBBMCB #[derive(proto_derive::CmdID)] -#[cmdid(5490)] +#[cmdid(5558)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ChessRogueCellUpdateNotify { - #[prost(enumeration = "Aebjegdpong", tag = "1")] + #[prost(uint32, tag = "10")] + pub eamgahffeco: u32, + #[prost(enumeration = "Aebjegdpong", tag = "4")] pub reason: i32, + #[prost(enumeration = "Lgmdbcffjof", tag = "8")] + pub dniibbhllnb: i32, #[prost(message, repeated, tag = "13")] pub iafbijekkpg: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "4")] - pub eamgahffeco: u32, - #[prost(enumeration = "Lgmdbcffjof", tag = "3")] - pub dniibbhllnb: i32, } /// Obf: JGJNNDHAAIC #[derive(proto_derive::CmdID)] -#[cmdid(5526)] +#[cmdid(5482)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ChessRogueQuestFinishNotify { - #[prost(uint32, tag = "2")] - pub nnjccfeindo: u32, - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "13")] pub jlfabhhnhcm: u32, + #[prost(uint32, tag = "12")] + pub nnjccfeindo: u32, } /// Obf: AEHKPMIEHJI #[derive(proto_derive::CmdID)] -#[cmdid(5570)] +#[cmdid(5446)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetChessRogueStoryInfoCsReq {} /// Obf: CHNCADPNMIB #[derive(proto_derive::CmdID)] -#[cmdid(5481)] +#[cmdid(5402)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetChessRogueStoryInfoScRsp { #[prost(uint32, tag = "6")] pub retcode: u32, - #[prost(message, repeated, tag = "5")] + #[prost(message, repeated, tag = "3")] pub idgiahopgaj: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "1")] + #[prost(message, repeated, tag = "13")] pub mnhmekkhkna: ::prost::alloc::vec::Vec, } /// Obf: GGIDCJDDGGP #[derive(proto_derive::CmdID)] -#[cmdid(5535)] +#[cmdid(5592)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SelectChessRogueSubStoryCsReq { + #[prost(uint32, tag = "15")] + pub ikmnamkjafa: u32, + #[prost(uint32, tag = "12")] + pub rogue_dialogue_event_id: u32, #[prost(uint32, tag = "14")] pub fahihdjfohm: u32, - #[prost(uint32, tag = "13")] - pub ikmnamkjafa: u32, - #[prost(uint32, tag = "5")] - pub rogue_dialogue_event_id: u32, - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "10")] pub ifiijgngogp: u32, } /// Obf: IMHNNPFBGPI #[derive(proto_derive::CmdID)] -#[cmdid(5496)] +#[cmdid(5406)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SelectChessRogueSubStoryScRsp { - #[prost(uint32, tag = "7")] - pub ifiijgngogp: u32, - #[prost(uint32, tag = "9")] - pub retcode: u32, - #[prost(uint32, tag = "13")] - pub ikmnamkjafa: u32, - #[prost(uint32, tag = "15")] - pub fahihdjfohm: u32, #[prost(uint32, tag = "12")] + pub ikmnamkjafa: u32, + #[prost(uint32, tag = "10")] + pub retcode: u32, + #[prost(uint32, tag = "7")] pub rogue_dialogue_event_id: u32, + #[prost(uint32, tag = "6")] + pub ifiijgngogp: u32, + #[prost(uint32, tag = "5")] + pub fahihdjfohm: u32, } /// Obf: GIEFBJHKBOK #[derive(proto_derive::CmdID)] -#[cmdid(5520)] +#[cmdid(5454)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct FinishChessRogueSubStoryCsReq { - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "14")] pub ikmnamkjafa: u32, } /// Obf: IEJBFANAEMO #[derive(proto_derive::CmdID)] -#[cmdid(5504)] +#[cmdid(5442)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct FinishChessRogueSubStoryScRsp { - #[prost(uint32, tag = "4")] - pub fgomiplmeic: u32, - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "3")] pub ikmnamkjafa: u32, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "13")] pub retcode: u32, + #[prost(uint32, tag = "7")] + pub fgomiplmeic: u32, } /// Obf: KGDAGPJHBMJ #[derive(proto_derive::CmdID)] -#[cmdid(5468)] +#[cmdid(5499)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ChessRogueUpdateActionPointScNotify { - #[prost(int32, tag = "5")] + #[prost(int32, tag = "3")] pub ljffcnbpjdd: i32, } /// Obf: HFEOILGGHKA #[derive(proto_derive::CmdID)] -#[cmdid(5585)] +#[cmdid(5455)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct EnterChessRogueAeonRoomCsReq {} /// Obf: PEDBKMGBGEK #[derive(proto_derive::CmdID)] -#[cmdid(5417)] +#[cmdid(5410)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct EnterChessRogueAeonRoomScRsp { - #[prost(uint32, tag = "5")] + #[prost(message, optional, tag = "13")] + pub stage_info: ::core::option::Option, + #[prost(uint32, tag = "15")] pub retcode: u32, - #[prost(message, optional, tag = "14")] - pub story_info: ::core::option::Option, } /// Obf: CIHFECGBLCP #[derive(proto_derive::CmdID)] -#[cmdid(5588)] +#[cmdid(5474)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetChessRogueStoryAeonTalkInfoCsReq { - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "11")] pub cdjecokfiof: u32, } /// Obf: NEHFFDDBJJP #[derive(proto_derive::CmdID)] -#[cmdid(5449)] +#[cmdid(5553)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetChessRogueStoryAeonTalkInfoScRsp { - #[prost(map = "uint32, uint32", tag = "7")] - pub kjcbneindhl: ::std::collections::HashMap, - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "10")] pub retcode: u32, - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "15")] pub cdjecokfiof: u32, + #[prost(map = "uint32, uint32", tag = "2")] + pub kjcbneindhl: ::std::collections::HashMap, } /// Obf: CNFKEJPJDCI #[derive(proto_derive::CmdID)] -#[cmdid(5477)] +#[cmdid(5441)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SyncChessRogueMainStoryFinishScNotify { #[prost(uint32, tag = "1")] - pub kenpckfonok: u32, - #[prost(uint32, tag = "12")] pub fgomiplmeic: u32, + #[prost(uint32, tag = "13")] + pub kenpckfonok: u32, } /// Obf: MJGHIBKOCAA #[derive(proto_derive::CmdID)] -#[cmdid(5506)] +#[cmdid(5513)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SyncChessRogueNousValueScNotify { #[prost(message, optional, tag = "11")] @@ -6409,604 +6589,604 @@ pub struct SyncChessRogueNousValueScNotify { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Gbeejnbebep { - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "8")] pub fgomiplmeic: u32, - #[prost(enumeration = "Cdoegmdjgoc", tag = "14")] + #[prost(enumeration = "Cdoegmdjgoc", tag = "4")] pub status: i32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Diecddgebnb { - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "13")] pub ikmnamkjafa: u32, } /// Obf: CLNPFNGPJMM #[derive(proto_derive::CmdID)] -#[cmdid(5474)] +#[cmdid(5461)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetChessRogueNousStoryInfoCsReq {} /// Obf: NLJCLCHNAFB #[derive(proto_derive::CmdID)] -#[cmdid(5594)] +#[cmdid(5570)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetChessRogueNousStoryInfoScRsp { - #[prost(uint32, tag = "10")] - pub retcode: u32, - #[prost(message, repeated, tag = "1")] + #[prost(message, repeated, tag = "2")] pub idgiahopgaj: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "8")] + #[prost(uint32, tag = "15")] + pub retcode: u32, + #[prost(message, repeated, tag = "3")] pub mnhmekkhkna: ::prost::alloc::vec::Vec, } /// Obf: CLNNAJGNMAF #[derive(proto_derive::CmdID)] -#[cmdid(5497)] +#[cmdid(5424)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SyncChessRogueNousSubStoryScNotify { - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "8")] pub ikmnamkjafa: u32, } /// Obf: NGGNCMHBNPE #[derive(proto_derive::CmdID)] -#[cmdid(5510)] +#[cmdid(5574)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SyncChessRogueNousMainStoryScNotify { - #[prost(message, repeated, tag = "3")] + #[prost(message, repeated, tag = "13")] pub idgiahopgaj: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Imnpeajajjo { - #[prost(uint32, repeated, tag = "8")] - pub emllecgepck: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "15")] + pub ikmnamkjafa: u32, + #[prost(uint32, repeated, tag = "6")] + pub oblhboeolaf: ::prost::alloc::vec::Vec, #[prost(uint32, tag = "1")] pub fgomiplmeic: u32, - #[prost(bool, tag = "6")] - pub ffheeidbhea: bool, - #[prost(uint32, tag = "5")] - pub ikmnamkjafa: u32, - #[prost(bool, tag = "13")] - pub fjkgkaekbkj: bool, - #[prost(uint32, repeated, tag = "11")] - pub oblhboeolaf: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "14")] - pub ilmookbjhhc: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "9")] + #[prost(uint32, repeated, tag = "5")] + pub emllecgepck: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "7")] pub ffmdbdehheg: u32, + #[prost(uint32, repeated, tag = "12")] + pub ilmookbjhhc: ::prost::alloc::vec::Vec, + #[prost(bool, tag = "2")] + pub fjkgkaekbkj: bool, + #[prost(bool, tag = "8")] + pub ffheeidbhea: bool, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Hngihjjiaco { - #[prost(uint32, tag = "15")] - pub slot_id: u32, - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "8")] pub eooadpocphd: u32, + #[prost(uint32, tag = "9")] + pub slot_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Kjehfkbjphd { - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "1")] pub dhndampbhpp: u32, - #[prost(uint32, tag = "15")] - pub oabliofcofo: u32, - #[prost(uint32, tag = "2")] - pub hmkebdlflpg: u32, - #[prost(message, repeated, tag = "11")] + #[prost(message, repeated, tag = "10")] pub igbcacgfckb: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "8")] + pub oabliofcofo: u32, + #[prost(uint32, tag = "5")] + pub hmkebdlflpg: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Dffjcmlaicl { - #[prost(enumeration = "Faohejiddhj", tag = "14")] - pub hdmpbpoffdk: i32, - #[prost(map = "uint32, bool", tag = "6")] - pub nbcmaknlphg: ::std::collections::HashMap, - #[prost(message, repeated, tag = "9")] + #[prost(message, repeated, tag = "10")] pub alehdaaohoe: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "10")] + #[prost(map = "uint32, bool", tag = "2")] + pub nbcmaknlphg: ::std::collections::HashMap, + #[prost(uint32, repeated, tag = "1")] pub jkmimlbajbl: ::prost::alloc::vec::Vec, + #[prost(enumeration = "Faohejiddhj", tag = "5")] + pub hdmpbpoffdk: i32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Lgeljhjomlo { - #[prost(message, optional, tag = "5")] + #[prost(message, optional, tag = "12")] pub jmgipebloge: ::core::option::Option, - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "3")] pub pofmjblmbji: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Afaghelicpd { - #[prost(uint32, repeated, tag = "6")] + #[prost(uint32, repeated, tag = "2")] pub gihdmhdadon: ::prost::alloc::vec::Vec, } /// Obf: GLIGOBEJCEE #[derive(proto_derive::CmdID)] -#[cmdid(5571)] +#[cmdid(5428)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ChessRogueNousEditDiceCsReq { - #[prost(message, optional, tag = "4")] + #[prost(message, optional, tag = "12")] pub bbcpoebnanc: ::core::option::Option, } /// Obf: CGHIHPAIEGL #[derive(proto_derive::CmdID)] -#[cmdid(5557)] +#[cmdid(5515)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ChessRogueNousEditDiceScRsp { - #[prost(uint32, tag = "2")] - pub retcode: u32, - #[prost(message, optional, tag = "10")] + #[prost(message, optional, tag = "15")] pub bbcpoebnanc: ::core::option::Option, + #[prost(uint32, tag = "6")] + pub retcode: u32, } /// Obf: HPGJGJBCEEF #[derive(proto_derive::CmdID)] -#[cmdid(5597)] +#[cmdid(5462)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ChessRogueNousDiceUpdateNotify { - #[prost(message, optional, tag = "5")] + #[prost(message, optional, tag = "1")] pub mbibkhkkefb: ::core::option::Option, } /// Obf: BLNHPBNMGND #[derive(proto_derive::CmdID)] -#[cmdid(5538)] +#[cmdid(5540)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ChessRogueNousDiceSurfaceUnlockNotify { - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "1")] pub caphiddhlfg: u32, } /// Obf: CKPGAINGLAN #[derive(proto_derive::CmdID)] -#[cmdid(5505)] +#[cmdid(5495)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ChessRogueNousGetRogueTalentInfoCsReq {} /// Obf: FFFAADGCBIO #[derive(proto_derive::CmdID)] -#[cmdid(5552)] +#[cmdid(5554)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ChessRogueNousGetRogueTalentInfoScRsp { - #[prost(uint32, tag = "8")] - pub pofmjblmbji: u32, #[prost(uint32, tag = "2")] pub retcode: u32, - #[prost(message, optional, tag = "14")] + #[prost(message, optional, tag = "15")] pub talent_info: ::core::option::Option, + #[prost(uint32, tag = "12")] + pub pofmjblmbji: u32, } /// Obf: GGLPHNHLGOA #[derive(proto_derive::CmdID)] -#[cmdid(5433)] +#[cmdid(5449)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ChessRogueNousEnableRogueTalentCsReq { - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "8")] pub talent_id: u32, } /// Obf: EONJEJPDIBH #[derive(proto_derive::CmdID)] -#[cmdid(5523)] +#[cmdid(5486)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ChessRogueNousEnableRogueTalentScRsp { - #[prost(uint32, tag = "12")] - pub pofmjblmbji: u32, - #[prost(message, optional, tag = "2")] + #[prost(message, optional, tag = "1")] pub talent_info: ::core::option::Option, - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "11")] + pub pofmjblmbji: u32, + #[prost(uint32, tag = "2")] pub retcode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Aacofikdcpl { - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "7")] pub ienpelbphdp: u32, - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "1")] pub progress: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Odnnkbimefh { - #[prost(message, repeated, tag = "6")] + #[prost(message, repeated, tag = "12")] pub keedplpaclp: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Eadganmjipk { - #[prost(uint32, repeated, tag = "5")] + #[prost(uint32, repeated, tag = "8")] pub ibpfgebmilb: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Jcnjdffcldg { #[prost(int32, tag = "15")] - pub hp: i32, - #[prost(bool, tag = "9")] - pub jnboonpdoce: bool, - #[prost(int32, tag = "10")] pub lkeblpijmgb: i32, #[prost(uint32, repeated, tag = "7")] pub oopkikmbbhh: ::prost::alloc::vec::Vec, + #[prost(bool, tag = "10")] + pub jnboonpdoce: bool, #[prost(uint32, tag = "2")] pub id: u32, - #[prost(message, optional, tag = "3")] + #[prost(int32, tag = "6")] + pub hp: i32, + #[prost(message, optional, tag = "13")] pub keedplpaclp: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Mpjdibccohf { - #[prost(uint32, repeated, tag = "5")] - pub obcpgobaede: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "13")] pub miaiopgiphh: u32, + #[prost(uint32, repeated, tag = "14")] + pub obcpgobaede: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Difpdplcigd { - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "14")] pub goneakbdgek: u32, - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "5")] pub jfpnmoonlnj: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Jmaanmpanhm { - #[prost(uint32, tag = "4")] - pub clpmibdfpjc: u32, - #[prost(uint32, tag = "3")] - pub noeimmhckpm: u32, - #[prost(uint32, tag = "15")] - pub nhjalpdbogn: u32, - #[prost(uint32, tag = "7")] - pub index: u32, - #[prost(uint32, tag = "12")] - pub fpaibldakli: u32, - #[prost(uint32, tag = "14")] - pub nkoffbmhapi: u32, - #[prost(int32, tag = "9")] + #[prost(int32, tag = "1")] pub attack: i32, - #[prost(int32, tag = "5")] + #[prost(int32, tag = "2")] pub hp: i32, + #[prost(uint32, tag = "7")] + pub noeimmhckpm: u32, + #[prost(uint32, tag = "5")] + pub index: u32, + #[prost(uint32, tag = "6")] + pub fpaibldakli: u32, + #[prost(uint32, tag = "9")] + pub clpmibdfpjc: u32, + #[prost(uint32, tag = "8")] + pub nkoffbmhapi: u32, + #[prost(uint32, tag = "11")] + pub nhjalpdbogn: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Egdghfllmgn { - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "15")] pub lcjhgdjdeng: u32, - #[prost(uint32, tag = "7")] - pub total_turns: u32, - #[prost(uint32, tag = "1")] - pub cfijipchhgo: u32, - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "5")] pub bclnmidffoh: u32, - #[prost(uint32, tag = "14")] - pub total_damage: u32, - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "7")] pub khkfkdnbhpe: u32, + #[prost(uint32, tag = "4")] + pub total_turns: u32, + #[prost(uint32, tag = "6")] + pub cfijipchhgo: u32, + #[prost(uint32, tag = "3")] + pub total_damage: u32, } /// Obf: CHDKEPCOKNK #[derive(proto_derive::CmdID)] -#[cmdid(8174)] +#[cmdid(8178)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ChimeraGetDataCsReq {} /// Obf: DPLGEGIJCEF #[derive(proto_derive::CmdID)] -#[cmdid(8173)] +#[cmdid(8169)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ChimeraGetDataScRsp { - #[prost(uint32, repeated, tag = "8")] - pub mfafnncjjng: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "301")] + #[prost(uint32, tag = "1507")] pub olldkajoajd: u32, - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "8")] pub bbbgkchnock: u32, - #[prost(uint32, tag = "4")] - pub eaiojcnlmng: u32, - #[prost(enumeration = "Oapdmkkkeol", tag = "2")] - pub bbmgiimecel: i32, - #[prost(uint32, tag = "10")] - pub retcode: u32, - #[prost(uint32, tag = "220")] + #[prost(uint32, tag = "687")] pub cpbdbaidaeh: u32, - #[prost(uint32, tag = "3")] - pub lfkfocjfncj: u32, - #[prost(uint32, tag = "1095")] - pub kilpnhjbpdb: u32, - #[prost(uint32, tag = "7")] - pub cjekjhpibjl: u32, - #[prost(message, repeated, tag = "13")] - pub ncdaoblmhhp: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "1")] - pub ijeiommfpka: u32, - #[prost(uint32, tag = "788")] + #[prost(uint32, tag = "352")] pub cagaplnhabb: u32, - #[prost(uint32, tag = "12")] - pub cjkcnhclmgd: u32, - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "13")] + pub eaiojcnlmng: u32, + #[prost(uint32, tag = "1")] pub jfpnmoonlnj: u32, - #[prost(uint32, tag = "11")] - pub gbemdnckkba: u32, + #[prost(uint32, tag = "1877")] + pub kilpnhjbpdb: u32, + #[prost(uint32, tag = "3")] + pub cjkcnhclmgd: u32, + #[prost(message, optional, tag = "10")] + pub lineup: ::core::option::Option, + #[prost(uint32, tag = "7")] + pub ijeiommfpka: u32, + #[prost(enumeration = "Oapdmkkkeol", tag = "6")] + pub bbmgiimecel: i32, #[prost(message, repeated, tag = "15")] pub kiimkaeajal: ::prost::alloc::vec::Vec, - #[prost(message, optional, tag = "9")] - pub lineup: ::core::option::Option, + #[prost(uint32, tag = "4")] + pub gbemdnckkba: u32, + #[prost(uint32, tag = "9")] + pub cjekjhpibjl: u32, + #[prost(uint32, tag = "14")] + pub lfkfocjfncj: u32, + #[prost(message, repeated, tag = "2")] + pub ncdaoblmhhp: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "11")] + pub mfafnncjjng: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "5")] + pub retcode: u32, } /// Obf: NHENNNBHLCA #[derive(proto_derive::CmdID)] -#[cmdid(8168)] +#[cmdid(8170)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ChimeraSetLineupCsReq { - #[prost(message, optional, tag = "14")] + #[prost(message, optional, tag = "6")] pub lineup: ::core::option::Option, } /// Obf: IGCADEMMOKK #[derive(proto_derive::CmdID)] -#[cmdid(8170)] +#[cmdid(8176)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ChimeraSetLineupScRsp { - #[prost(message, optional, tag = "8")] - pub lineup: ::core::option::Option, - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "7")] pub retcode: u32, + #[prost(message, optional, tag = "4")] + pub lineup: ::core::option::Option, } /// Obf: BKHCMDINFJN #[derive(proto_derive::CmdID)] -#[cmdid(8164)] +#[cmdid(8167)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ChimeraFinishRoundCsReq { - #[prost(message, optional, tag = "14")] - pub stt: ::core::option::Option, - #[prost(message, repeated, tag = "2")] - pub opamaeijcoh: ::prost::alloc::vec::Vec, - #[prost(bool, tag = "3")] - pub molidikifgb: bool, - #[prost(uint32, tag = "13")] - pub hjoeamdlbpl: u32, - #[prost(message, optional, tag = "1")] - pub lineup: ::core::option::Option, - #[prost(map = "uint32, message", tag = "5")] - pub mlbaljkcmcg: ::std::collections::HashMap, - #[prost(uint32, repeated, tag = "15")] - pub hgodgdeaajo: ::prost::alloc::vec::Vec, - #[prost(map = "uint32, uint32", tag = "4")] - pub bahhnmlhalj: ::std::collections::HashMap, #[prost(enumeration = "Biakdfeljfm", tag = "8")] pub hbgclmcgnfm: i32, + #[prost(message, optional, tag = "5")] + pub stt: ::core::option::Option, + #[prost(map = "uint32, uint32", tag = "9")] + pub bahhnmlhalj: ::std::collections::HashMap, + #[prost(uint32, repeated, tag = "2")] + pub hgodgdeaajo: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "4")] + pub hjoeamdlbpl: u32, + #[prost(message, repeated, tag = "12")] + pub opamaeijcoh: ::prost::alloc::vec::Vec, + #[prost(message, optional, tag = "3")] + pub lineup: ::core::option::Option, + #[prost(map = "uint32, message", tag = "10")] + pub mlbaljkcmcg: ::std::collections::HashMap, + #[prost(bool, tag = "14")] + pub molidikifgb: bool, } /// Obf: MBPCAMJPKMA #[derive(proto_derive::CmdID)] -#[cmdid(8162)] +#[cmdid(8171)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ChimeraFinishRoundScRsp { - #[prost(bool, tag = "2")] + #[prost(uint32, tag = "15")] + pub olldkajoajd: u32, + #[prost(uint32, tag = "11")] + pub retcode: u32, + #[prost(bool, tag = "10")] pub molidikifgb: bool, - #[prost(uint32, repeated, tag = "12")] + #[prost(uint32, tag = "14")] + pub ijeiommfpka: u32, + #[prost(uint32, tag = "1")] + pub cjkcnhclmgd: u32, + #[prost(message, repeated, tag = "7")] + pub goiakpgjlcb: ::prost::alloc::vec::Vec, + #[prost(map = "uint32, message", tag = "6")] + pub nahpkppmdkk: ::std::collections::HashMap, + #[prost(enumeration = "Oapdmkkkeol", tag = "2")] + pub bbmgiimecel: i32, + #[prost(message, repeated, tag = "12")] + pub ncdaoblmhhp: ::prost::alloc::vec::Vec, + #[prost(enumeration = "Biakdfeljfm", tag = "4")] + pub hbgclmcgnfm: i32, + #[prost(uint32, repeated, tag = "13")] pub mfafnncjjng: ::prost::alloc::vec::Vec, + #[prost(map = "uint32, message", tag = "8")] + pub ghkgcfclabf: ::std::collections::HashMap, + #[prost(bool, tag = "9")] + pub jieifdocohe: bool, + #[prost(uint32, tag = "5")] + pub eaiojcnlmng: u32, #[prost(uint32, tag = "3")] pub jfpnmoonlnj: u32, - #[prost(enumeration = "Biakdfeljfm", tag = "5")] - pub hbgclmcgnfm: i32, - #[prost(bool, tag = "13")] - pub jieifdocohe: bool, - #[prost(uint32, tag = "7")] - pub eaiojcnlmng: u32, - #[prost(uint32, tag = "1")] - pub retcode: u32, - #[prost(map = "uint32, message", tag = "8")] - pub nahpkppmdkk: ::std::collections::HashMap, - #[prost(message, repeated, tag = "6")] - pub goiakpgjlcb: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "15")] - pub ijeiommfpka: u32, - #[prost(enumeration = "Oapdmkkkeol", tag = "9")] - pub bbmgiimecel: i32, - #[prost(uint32, tag = "10")] - pub olldkajoajd: u32, - #[prost(message, repeated, tag = "14")] - pub ncdaoblmhhp: ::prost::alloc::vec::Vec, - #[prost(map = "uint32, message", tag = "4")] - pub ghkgcfclabf: ::std::collections::HashMap, - #[prost(uint32, tag = "11")] - pub cjkcnhclmgd: u32, } /// Obf: AMCAGDKFNLA #[derive(proto_derive::CmdID)] -#[cmdid(8180)] +#[cmdid(8165)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ChimeraStartEndlessCsReq {} /// Obf: AIFMPIGKCGP #[derive(proto_derive::CmdID)] -#[cmdid(8169)] +#[cmdid(8163)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ChimeraStartEndlessScRsp { - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "13")] pub retcode: u32, } /// Obf: IMAACGNDEDK #[derive(proto_derive::CmdID)] -#[cmdid(8167)] +#[cmdid(8174)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ChimeraFinishEndlessRoundCsReq { - #[prost(uint32, tag = "13")] - pub cpbdbaidaeh: u32, - #[prost(message, optional, tag = "1")] - pub lineup: ::core::option::Option, - #[prost(message, optional, tag = "15")] - pub stt: ::core::option::Option, - #[prost(uint32, repeated, tag = "11")] + #[prost(uint32, repeated, tag = "7")] pub hgodgdeaajo: ::prost::alloc::vec::Vec, - #[prost(bool, tag = "14")] + #[prost(bool, tag = "3")] pub pahmagpfddj: bool, - #[prost(message, repeated, tag = "2")] + #[prost(message, optional, tag = "12")] + pub stt: ::core::option::Option, + #[prost(message, repeated, tag = "4")] pub opamaeijcoh: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "6")] + pub cpbdbaidaeh: u32, + #[prost(message, optional, tag = "8")] + pub lineup: ::core::option::Option, } /// Obf: FKGECNEDFJB #[derive(proto_derive::CmdID)] -#[cmdid(8163)] +#[cmdid(8179)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ChimeraFinishEndlessRoundScRsp { - #[prost(uint32, tag = "2")] - pub lfkfocjfncj: u32, + #[prost(uint32, tag = "9")] + pub gbemdnckkba: u32, + #[prost(uint32, tag = "7")] + pub retcode: u32, + #[prost(uint32, tag = "14")] + pub cpbdbaidaeh: u32, + #[prost(uint32, tag = "12")] + pub bbbgkchnock: u32, #[prost(message, repeated, tag = "15")] pub igagibnelck: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "5")] - pub retcode: u32, - #[prost(uint32, tag = "9")] - pub cpbdbaidaeh: u32, - #[prost(uint32, tag = "8")] - pub bbbgkchnock: u32, - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "13")] pub aebjngimhcj: u32, - #[prost(bool, tag = "11")] + #[prost(bool, tag = "10")] pub pahmagpfddj: bool, #[prost(uint32, tag = "1")] - pub gbemdnckkba: u32, + pub lfkfocjfncj: u32, } /// Obf: GIGMKHMONPI #[derive(proto_derive::CmdID)] -#[cmdid(8165)] +#[cmdid(8172)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ChimeraQuitEndlessCsReq {} /// Obf: HAPEJPNCICF #[derive(proto_derive::CmdID)] -#[cmdid(8161)] +#[cmdid(8166)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ChimeraQuitEndlessScRsp { - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "1")] pub retcode: u32, } /// Obf: LCBCPIPHIMN #[derive(proto_derive::CmdID)] -#[cmdid(8171)] +#[cmdid(8173)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ChimeraDoFinalRoundCsReq { - #[prost(bool, tag = "12")] - pub pahmagpfddj: bool, - #[prost(uint32, repeated, tag = "7")] - pub hgodgdeaajo: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "3")] + #[prost(message, repeated, tag = "6")] pub opamaeijcoh: ::prost::alloc::vec::Vec, - #[prost(message, optional, tag = "14")] - pub stt: ::core::option::Option, - #[prost(message, optional, tag = "1")] - pub lineup: ::core::option::Option, + #[prost(uint32, repeated, tag = "8")] + pub hgodgdeaajo: ::prost::alloc::vec::Vec, #[prost(uint32, tag = "9")] pub cpbdbaidaeh: u32, + #[prost(message, optional, tag = "5")] + pub lineup: ::core::option::Option, + #[prost(bool, tag = "2")] + pub pahmagpfddj: bool, + #[prost(message, optional, tag = "15")] + pub stt: ::core::option::Option, } /// Obf: CLKGPDAIAME #[derive(proto_derive::CmdID)] -#[cmdid(8179)] +#[cmdid(8175)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ChimeraDoFinalRoundScRsp { - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "14")] pub cpbdbaidaeh: u32, - #[prost(message, repeated, tag = "2")] - pub igagibnelck: ::prost::alloc::vec::Vec, - #[prost(bool, tag = "5")] - pub pahmagpfddj: bool, - #[prost(message, repeated, tag = "9")] - pub ncdaoblmhhp: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "4")] - pub jfpnmoonlnj: u32, #[prost(uint32, tag = "15")] - pub olldkajoajd: u32, - #[prost(uint32, tag = "8")] - pub eaiojcnlmng: u32, - #[prost(uint32, tag = "3")] - pub index: u32, - #[prost(uint32, tag = "6")] - pub cagaplnhabb: u32, - #[prost(uint32, tag = "11")] + pub jfpnmoonlnj: u32, + #[prost(bool, tag = "8")] + pub pahmagpfddj: bool, + #[prost(uint32, tag = "7")] pub retcode: u32, + #[prost(uint32, tag = "2")] + pub cagaplnhabb: u32, + #[prost(uint32, tag = "9")] + pub eaiojcnlmng: u32, + #[prost(message, repeated, tag = "5")] + pub igagibnelck: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "12")] + pub ncdaoblmhhp: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "11")] + pub index: u32, + #[prost(uint32, tag = "4")] + pub olldkajoajd: u32, } /// Obf: HMLGEPFNKDJ #[derive(proto_derive::CmdID)] -#[cmdid(8172)] +#[cmdid(8162)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ChimeraRoundWorkStartCsReq { - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "5")] pub flgjpheopaa: u32, + #[prost(uint32, tag = "13")] + pub mdfeekikbmj: u32, + #[prost(message, optional, tag = "7")] + pub lineup: ::core::option::Option, #[prost(message, repeated, tag = "11")] pub opamaeijcoh: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "15")] - pub mdfeekikbmj: u32, - #[prost(message, optional, tag = "4")] - pub lineup: ::core::option::Option, } /// Obf: MKGBDLADHNK #[derive(proto_derive::CmdID)] -#[cmdid(8166)] +#[cmdid(8161)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ChimeraRoundWorkStartScRsp { - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "3")] pub retcode: u32, } /// Obf: PHNFMMBJABG #[derive(proto_derive::CmdID)] -#[cmdid(7204)] +#[cmdid(7249)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ClockParkGetInfoCsReq {} #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Nlljbbcjiam { - #[prost(uint32, repeated, tag = "11")] - pub odogfhenjep: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "9")] pub clkeoehplng: u32, + #[prost(uint32, repeated, tag = "2")] + pub odogfhenjep: ::prost::alloc::vec::Vec, } /// Obf: FFOPBLNLPGI #[derive(proto_derive::CmdID)] -#[cmdid(7246)] +#[cmdid(7227)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ClockParkGetInfoScRsp { - #[prost(uint32, repeated, tag = "8")] - pub ibjpcofdlji: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "3")] - pub retcode: u32, - #[prost(uint32, tag = "14")] - pub gfadcahlkfp: u32, - #[prost(message, repeated, tag = "4")] - pub bnfhfhefmem: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "12")] - pub ediajgcbpfo: u32, #[prost(uint32, tag = "11")] pub progress: u32, + #[prost(uint32, repeated, tag = "2")] + pub ibjpcofdlji: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "5")] + pub gfadcahlkfp: u32, + #[prost(uint32, tag = "3")] + pub ediajgcbpfo: u32, + #[prost(message, repeated, tag = "7")] + pub bnfhfhefmem: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "13")] + pub retcode: u32, } /// Obf: POHKPBOBJEA #[derive(proto_derive::CmdID)] -#[cmdid(7236)] +#[cmdid(7211)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ClockParkUnlockTalentCsReq { - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "6")] pub talent_id: u32, } /// Obf: EPOOLCKMMKB #[derive(proto_derive::CmdID)] -#[cmdid(7217)] +#[cmdid(7237)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ClockParkUnlockTalentScRsp { - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "14")] pub talent_id: u32, - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "12")] pub retcode: u32, } /// Obf: IKMEOFEDGFD #[derive(proto_derive::CmdID)] -#[cmdid(7227)] +#[cmdid(7217)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ClockParkStartScriptCsReq { - #[prost(uint32, repeated, tag = "2")] + #[prost(uint32, repeated, tag = "1")] pub jmojeoalclo: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "3")] pub clkeoehplng: u32, } /// Obf: ELDBJPOGEIF #[derive(proto_derive::CmdID)] -#[cmdid(7215)] +#[cmdid(7239)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ClockParkStartScriptScRsp { - #[prost(uint32, tag = "15")] - pub retcode: u32, - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "7")] pub clkeoehplng: u32, + #[prost(uint32, tag = "12")] + pub retcode: u32, } /// Obf: HMODIPBDAMG #[derive(proto_derive::CmdID)] -#[cmdid(7243)] +#[cmdid(7212)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ClockParkGetOngoingScriptInfoCsReq {} #[derive(proto_derive::CmdID)] @@ -7015,67 +7195,67 @@ pub struct Lnihjdaildj {} #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Accbigfanoa { - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "14")] pub card_id: u32, - #[prost(uint32, tag = "9")] - pub bjkhpadclhi: u32, - #[prost(uint32, repeated, tag = "2")] + #[prost(uint32, repeated, tag = "6")] pub pneoolflnlk: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "7")] + pub bjkhpadclhi: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Hdckchpdmmi { - #[prost(message, repeated, tag = "7")] + #[prost(message, repeated, tag = "5")] pub card_data_list: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "12")] + #[prost(uint32, repeated, tag = "8")] pub pneoolflnlk: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Nnccfpoockh { - #[prost(message, optional, tag = "12")] + #[prost(message, optional, tag = "8")] pub ancpcpcljed: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Machndhamnm { - #[prost(message, optional, tag = "7")] + #[prost(message, optional, tag = "2")] pub ancpcpcljed: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Ifbdbdccopo { - #[prost(message, optional, tag = "13")] + #[prost(message, optional, tag = "8")] pub ancpcpcljed: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Glijklooapa { - #[prost(message, optional, tag = "14")] - pub ancpcpcljed: ::core::option::Option, - #[prost(uint32, tag = "8")] - pub ecfagnkdaef: u32, - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "11")] pub gacha_random: u32, + #[prost(message, optional, tag = "7")] + pub ancpcpcljed: ::core::option::Option, + #[prost(uint32, tag = "2")] + pub ecfagnkdaef: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Anbankmlclh { - #[prost(message, optional, tag = "15")] + #[prost(message, optional, tag = "12")] pub ancpcpcljed: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Eppnkgolaap { - #[prost(bool, tag = "14")] + #[prost(bool, tag = "15")] pub bgdoijphfdb: bool, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Lkbbkojddpd { - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "6")] pub ahidjbjggpp: u32, - #[prost(oneof = "lkbbkojddpd::Nkpnkgiahip", tags = "5, 3, 1, 15, 6, 13, 4, 12")] + #[prost(oneof = "lkbbkojddpd::Nkpnkgiahip", tags = "10, 13, 9, 5, 15, 11, 12, 2")] pub nkpnkgiahip: ::core::option::Option, } /// Nested message and enum types in `LKBBKOJDDPD`. @@ -7083,79 +7263,79 @@ pub mod lkbbkojddpd { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] pub enum Nkpnkgiahip { - #[prost(message, tag = "5")] + #[prost(message, tag = "10")] Pnimpjfilgf(super::Lnihjdaildj), - #[prost(message, tag = "3")] - Dhleejmiimo(super::Nnccfpoockh), - #[prost(message, tag = "1")] - Oeofnnbljik(super::Machndhamnm), - #[prost(message, tag = "15")] - Gpbgdcmjhln(super::Ifbdbdccopo), - #[prost(message, tag = "6")] - Lnkpgggkmnk(super::Glijklooapa), #[prost(message, tag = "13")] + Dhleejmiimo(super::Nnccfpoockh), + #[prost(message, tag = "9")] + Oeofnnbljik(super::Machndhamnm), + #[prost(message, tag = "5")] + Gpbgdcmjhln(super::Ifbdbdccopo), + #[prost(message, tag = "15")] + Lnkpgggkmnk(super::Glijklooapa), + #[prost(message, tag = "11")] Aenefmcbfgm(super::Anbankmlclh), - #[prost(message, tag = "4")] + #[prost(message, tag = "12")] Bciighioapl(super::Eppnkgolaap), - #[prost(bool, tag = "12")] + #[prost(bool, tag = "2")] Gneooaifkib(bool), } } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Bmlofpcngkn { - #[prost(int32, tag = "11")] - pub ihlhdpnaekc: i32, - #[prost(int32, tag = "9")] + #[prost(int32, tag = "3")] pub ofcndemappl: i32, - #[prost(int32, tag = "8")] + #[prost(int32, tag = "7")] pub djfhcddifmi: i32, + #[prost(int32, tag = "2")] + pub ihlhdpnaekc: i32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Ioncppdejej { - #[prost(uint32, tag = "6")] - pub buff_id: u32, - #[prost(uint64, tag = "11")] - pub unique_id: u64, - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "14")] pub feonehhcjjm: u32, + #[prost(uint32, tag = "11")] + pub buff_id: u32, + #[prost(uint64, tag = "15")] + pub unique_id: u64, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Ecmilhckomo { - #[prost(message, repeated, tag = "13")] + #[prost(message, repeated, tag = "10")] pub buff_list: ::prost::alloc::vec::Vec, } /// Obf: EHPCJHHNFAJ #[derive(proto_derive::CmdID)] -#[cmdid(7209)] +#[cmdid(7210)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ClockParkGetOngoingScriptInfoScRsp { - #[prost(uint32, tag = "6")] - pub obpfblnbfki: u32, - #[prost(uint32, tag = "3")] - pub retcode: u32, - #[prost(message, optional, tag = "9")] + #[prost(message, optional, tag = "5")] pub mjdogpbojip: ::core::option::Option, - #[prost(message, optional, tag = "7")] + #[prost(uint32, tag = "3")] + pub obpfblnbfki: u32, + #[prost(uint32, tag = "4")] + pub retcode: u32, + #[prost(message, optional, tag = "6")] pub lgopnbhhhbg: ::core::option::Option, - #[prost(uint32, repeated, tag = "11")] - pub eidlleolfgm: ::prost::alloc::vec::Vec, - #[prost(message, optional, tag = "1")] - pub ienphefangl: ::core::option::Option, + #[prost(uint32, tag = "7")] + pub kiekjeffphk: u32, + #[prost(uint32, tag = "2")] + pub clkeoehplng: u32, + #[prost(uint32, tag = "13")] + pub aigehhnhkpm: u32, #[prost(uint32, tag = "15")] pub chobaogmlfn: u32, - #[prost(string, tag = "5")] - pub cmgkeolcbip: ::prost::alloc::string::String, - #[prost(uint32, tag = "14")] - pub kiekjeffphk: u32, - #[prost(uint32, tag = "8")] - pub aigehhnhkpm: u32, - #[prost(uint32, tag = "10")] - pub clkeoehplng: u32, #[prost(uint32, tag = "12")] pub blhgbednfib: u32, + #[prost(message, optional, tag = "1")] + pub ienphefangl: ::core::option::Option, + #[prost(uint32, repeated, tag = "8")] + pub eidlleolfgm: ::prost::alloc::vec::Vec, + #[prost(string, tag = "10")] + pub cmgkeolcbip: ::prost::alloc::string::String, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] @@ -7163,37 +7343,37 @@ pub struct Obnonmhmeck {} #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Ffomibncfki { - #[prost(message, optional, tag = "11")] + #[prost(message, optional, tag = "14")] pub ancpcpcljed: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Ajehamdabna { - #[prost(uint32, tag = "14")] - pub omddfkmaape: u32, - #[prost(bool, tag = "8")] + #[prost(bool, tag = "15")] pub is_win: bool, + #[prost(uint32, tag = "9")] + pub omddfkmaape: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Amghdcabjmj { - #[prost(uint32, repeated, tag = "2")] + #[prost(uint32, repeated, tag = "13")] pub avatar_id_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Innnicfolii { - #[prost(bool, tag = "2")] - pub jcnodamfffc: bool, - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "15")] pub gacha_random: u32, + #[prost(bool, tag = "11")] + pub jcnodamfffc: bool, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Ceoonflondj { - #[prost(bool, tag = "11")] + #[prost(bool, tag = "12")] pub is_win: bool, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "3")] pub omddfkmaape: u32, } #[derive(proto_derive::CmdID)] @@ -7206,11 +7386,11 @@ pub struct Helnoihmdha {} pub struct ClockParkHandleWaitOperationCsReq { #[prost(uint32, tag = "1")] pub clkeoehplng: u32, - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "11")] pub ahidjbjggpp: u32, #[prost( oneof = "clock_park_handle_wait_operation_cs_req::Nomemjfhdib", - tags = "9, 8, 7, 13, 6, 5, 11, 12" + tags = "6, 5, 15, 14, 9, 4, 3, 7" )] pub nomemjfhdib: ::core::option::Option< clock_park_handle_wait_operation_cs_req::Nomemjfhdib, @@ -7221,114 +7401,114 @@ pub mod clock_park_handle_wait_operation_cs_req { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] pub enum Nomemjfhdib { - #[prost(message, tag = "9")] - Jfbckclpako(super::Obnonmhmeck), - #[prost(message, tag = "8")] - Ipikflcefla(super::Ffomibncfki), - #[prost(message, tag = "7")] - Megnbbfilnl(super::Ajehamdabna), - #[prost(message, tag = "13")] - Abkkdhapchn(super::Amghdcabjmj), #[prost(message, tag = "6")] - Lihjmeingik(super::Innnicfolii), + Jfbckclpako(super::Obnonmhmeck), #[prost(message, tag = "5")] + Ipikflcefla(super::Ffomibncfki), + #[prost(message, tag = "15")] + Megnbbfilnl(super::Ajehamdabna), + #[prost(message, tag = "14")] + Abkkdhapchn(super::Amghdcabjmj), + #[prost(message, tag = "9")] + Lihjmeingik(super::Innnicfolii), + #[prost(message, tag = "4")] Lmgglcncdhf(super::Ceoonflondj), - #[prost(message, tag = "11")] + #[prost(message, tag = "3")] Fngfoaepfjn(super::Helnoihmdha), - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "7")] Obpfblnbfki(u32), } } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Mdjlojfmemc { - #[prost(bool, tag = "2")] - pub eeehghkocji: bool, #[prost(uint32, tag = "11")] - pub progress: u32, - #[prost(uint32, tag = "9")] pub aigehhnhkpm: u32, - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "1")] pub kiekjeffphk: u32, - #[prost(message, optional, tag = "14")] + #[prost(message, optional, tag = "10")] pub reward: ::core::option::Option, - #[prost(uint32, tag = "3")] - pub clkeoehplng: u32, - #[prost(bool, tag = "5")] + #[prost(uint32, tag = "5")] + pub progress: u32, + #[prost(bool, tag = "14")] pub kfdaicilnmb: bool, + #[prost(bool, tag = "9")] + pub eeehghkocji: bool, + #[prost(uint32, tag = "13")] + pub clkeoehplng: u32, } /// Obf: LBGJOELCNHC #[derive(proto_derive::CmdID)] -#[cmdid(7207)] +#[cmdid(7206)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ClockParkHandleWaitOperationScRsp { - #[prost(uint32, tag = "11")] - pub retcode: u32, - #[prost(message, optional, tag = "12")] - pub battle_info: ::core::option::Option, - #[prost(uint32, tag = "3")] - pub ahidjbjggpp: u32, - #[prost(uint32, tag = "15")] - pub ficfgdnhnge: u32, - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "13")] pub koijfoffjnj: u32, - #[prost(enumeration = "Egblomhgijm", tag = "6")] + #[prost(uint32, tag = "10")] + pub ficfgdnhnge: u32, + #[prost(uint32, tag = "14")] + pub ahidjbjggpp: u32, + #[prost(uint32, tag = "2")] + pub retcode: u32, + #[prost(message, optional, tag = "5")] + pub battle_info: ::core::option::Option, + #[prost(enumeration = "Egblomhgijm", tag = "4")] pub jfkdbmdomnk: i32, } /// Obf: HAEOGLJFLGE #[derive(proto_derive::CmdID)] -#[cmdid(7250)] +#[cmdid(7228)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ClockParkQuitScriptCsReq { - #[prost(bool, tag = "11")] + #[prost(bool, tag = "10")] pub khnhpgdeimm: bool, - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "2")] pub clkeoehplng: u32, } /// Obf: FAPAGKJIBAJ #[derive(proto_derive::CmdID)] -#[cmdid(7240)] +#[cmdid(7219)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ClockParkQuitScriptScRsp { - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "1")] pub retcode: u32, } /// Obf: LJMIHCBEGLJ #[derive(proto_derive::CmdID)] -#[cmdid(7232)] +#[cmdid(7246)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ClockParkBattleEndScNotify { - #[prost(uint32, tag = "15")] - pub ahidjbjggpp: u32, #[prost(uint32, tag = "10")] pub retcode: u32, + #[prost(uint32, tag = "13")] + pub ahidjbjggpp: u32, } /// Obf: AKIGDDCAHOL #[derive(proto_derive::CmdID)] -#[cmdid(7226)] +#[cmdid(7225)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ClockParkUseBuffCsReq { - #[prost(uint64, tag = "15")] + #[prost(uint64, tag = "13")] pub unique_id: u64, - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "3")] pub ahidjbjggpp: u32, - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "5")] pub clkeoehplng: u32, } /// Obf: LEOEDAODJNM #[derive(proto_derive::CmdID)] -#[cmdid(7222)] +#[cmdid(7243)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ClockParkUseBuffScRsp { #[prost(uint32, tag = "13")] - pub clkeoehplng: u32, - #[prost(uint32, tag = "14")] pub ahidjbjggpp: u32, - #[prost(uint32, tag = "4")] - pub retcode: u32, - #[prost(message, optional, tag = "9")] + #[prost(uint32, tag = "12")] + pub clkeoehplng: u32, + #[prost(message, optional, tag = "11")] pub lgopnbhhhbg: ::core::option::Option, - #[prost(oneof = "clock_park_use_buff_sc_rsp::Ifllbcfgbdm", tags = "1841, 805")] + #[prost(uint32, tag = "14")] + pub retcode: u32, + #[prost(oneof = "clock_park_use_buff_sc_rsp::Ifllbcfgbdm", tags = "223, 1911")] pub ifllbcfgbdm: ::core::option::Option, } /// Nested message and enum types in `ClockParkUseBuffScRsp`. @@ -7336,56 +7516,56 @@ pub mod clock_park_use_buff_sc_rsp { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] pub enum Ifllbcfgbdm { - #[prost(message, tag = "1841")] + #[prost(message, tag = "223")] Ancpcpcljed(super::Hdckchpdmmi), - #[prost(message, tag = "805")] + #[prost(message, tag = "1911")] Mjdogpbojip(super::Bmlofpcngkn), } } /// Obf: GFGGJLLCNIB #[derive(proto_derive::CmdID)] -#[cmdid(7216)] +#[cmdid(7230)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ClockParkFinishScriptScNotify { - #[prost(message, optional, tag = "1")] + #[prost(message, optional, tag = "4")] pub finish_info: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Item { - #[prost(uint32, tag = "7")] - pub unique_id: u32, - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "14")] pub level: u32, - #[prost(uint32, tag = "13")] - pub main_affix_id: u32, - #[prost(uint32, tag = "1")] - pub num: u32, - #[prost(uint32, tag = "5")] - pub promotion: u32, - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "15")] pub rank: u32, - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "13")] + pub unique_id: u32, + #[prost(uint32, tag = "9")] pub item_id: u32, + #[prost(uint32, tag = "1")] + pub promotion: u32, + #[prost(uint32, tag = "2")] + pub main_affix_id: u32, + #[prost(uint32, tag = "3")] + pub num: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ItemList { - #[prost(message, repeated, tag = "10")] + #[prost(message, repeated, tag = "7")] pub item_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct PileItem { - #[prost(uint32, tag = "11")] - pub item_num: u32, - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "4")] pub item_id: u32, + #[prost(uint32, tag = "3")] + pub item_num: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ItemCost { - #[prost(oneof = "item_cost::ItemCase", tags = "6, 13, 12")] + #[prost(oneof = "item_cost::ItemCase", tags = "11, 2, 6")] pub item_case: ::core::option::Option, } /// Nested message and enum types in `ItemCost`. @@ -7393,60 +7573,60 @@ pub mod item_cost { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Oneof)] pub enum ItemCase { - #[prost(message, tag = "6")] + #[prost(message, tag = "11")] PileItem(super::PileItem), - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "2")] EquipmentUniqueId(u32), - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "6")] RelicUniqueId(u32), } } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ItemCostList { - #[prost(message, repeated, tag = "10")] + #[prost(message, repeated, tag = "1")] pub item_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Iekhjdecape { - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "7")] pub item_id: u32, - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "6")] pub mbejblfhcbh: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Akcpalgemol { - #[prost(uint32, tag = "14")] - pub rank: u32, #[prost(uint32, tag = "2")] - pub tid: u32, - #[prost(uint32, tag = "11")] + pub rank: u32, + #[prost(uint32, tag = "12")] pub level: u32, - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "8")] pub promotion: u32, - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "14")] pub exp: u32, + #[prost(uint32, tag = "13")] + pub tid: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Nhdbofcfcjm { - #[prost(message, repeated, tag = "15")] - pub sub_affix_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "12")] - pub tid: u32, - #[prost(uint32, tag = "8")] - pub main_affix_id: u32, - #[prost(uint32, tag = "13")] - pub exp: u32, - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "6")] pub level: u32, + #[prost(message, repeated, tag = "9")] + pub sub_affix_list: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "1")] + pub main_affix_id: u32, + #[prost(uint32, tag = "14")] + pub exp: u32, + #[prost(uint32, tag = "13")] + pub tid: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Ndhopedofoc { - #[prost(oneof = "ndhopedofoc::Lagnobaolij", tags = "14, 3, 13")] + #[prost(oneof = "ndhopedofoc::Lagnobaolij", tags = "2, 3, 5")] pub lagnobaolij: ::core::option::Option, } /// Nested message and enum types in `NDHOPEDOFOC`. @@ -7454,889 +7634,885 @@ pub mod ndhopedofoc { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] pub enum Lagnobaolij { - #[prost(message, tag = "14")] + #[prost(message, tag = "2")] Oekhngffgkb(super::Iekhjdecape), #[prost(message, tag = "3")] Adeoigebmdf(super::Akcpalgemol), - #[prost(message, tag = "13")] + #[prost(message, tag = "5")] Fhgafcjcaoa(super::Nhdbofcfcjm), } } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Aodidfnpicf { - #[prost(message, repeated, tag = "1")] + #[prost(message, repeated, tag = "7")] pub item_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Vector { - #[prost(sint32, tag = "15")] + #[prost(int32, tag = "13")] pub y: i32, - #[prost(sint32, tag = "8")] - pub z: i32, - #[prost(sint32, tag = "11")] + #[prost(int32, tag = "2")] pub x: i32, + #[prost(int32, tag = "5")] + pub z: i32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MotionInfo { - #[prost(message, optional, tag = "13")] - pub pos: ::core::option::Option, - #[prost(message, optional, tag = "5")] + #[prost(message, optional, tag = "3")] pub rot: ::core::option::Option, + #[prost(message, optional, tag = "15")] + pub pos: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RotateVector { - #[prost(float, tag = "4")] - pub rotate: f32, - #[prost(float, tag = "2")] - pub z: f32, - #[prost(float, tag = "15")] - pub x: f32, #[prost(float, tag = "6")] + pub z: f32, + #[prost(float, tag = "9")] + pub rotate: f32, + #[prost(float, tag = "3")] + pub x: f32, + #[prost(float, tag = "5")] pub y: f32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SceneMonsterWaveParam { #[prost(uint32, tag = "7")] - pub dneampllfme: u32, - #[prost(uint32, tag = "15")] pub level: u32, #[prost(uint32, tag = "9")] pub hard_level_group: u32, - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "2")] + pub dneampllfme: u32, + #[prost(uint32, tag = "5")] pub elite_group: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SceneMonster { - #[prost(uint32, tag = "7")] - pub cur_hp: u32, - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "13")] pub max_hp: u32, - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "8")] + pub cur_hp: u32, + #[prost(uint32, tag = "11")] pub monster_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SceneMonsterWave { - #[prost(uint32, tag = "2")] - pub wave_id: u32, - #[prost(message, repeated, tag = "14")] - pub monster_list: ::prost::alloc::vec::Vec, - #[prost(message, optional, tag = "12")] - pub wave_param: ::core::option::Option, - #[prost(message, repeated, tag = "9")] + #[prost(message, repeated, tag = "1")] pub jcdljghhaof: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "1")] + #[prost(message, repeated, tag = "11")] + pub monster_list: ::prost::alloc::vec::Vec, + #[prost(message, optional, tag = "7")] + pub wave_param: ::core::option::Option, + #[prost(uint32, tag = "5")] + pub wave_id: u32, + #[prost(uint32, tag = "12")] pub stage_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SceneBattleInfo { - #[prost(message, optional, tag = "657")] - pub jpgifchjdlk: ::core::option::Option, - #[prost(message, repeated, tag = "1390")] - pub event_battle_info_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "2")] - pub battle_id: u32, - #[prost(message, repeated, tag = "3")] - pub battle_avatar_list: ::prost::alloc::vec::Vec, - #[prost(message, optional, tag = "988")] - pub rogue_magic_battle_info: ::core::option::Option, - #[prost(map = "uint32, message", tag = "1855")] - pub battle_target_info: ::std::collections::HashMap, - #[prost(message, optional, tag = "435")] + #[prost(message, optional, tag = "874")] pub mfkjokajjmj: ::core::option::Option, - #[prost(message, repeated, tag = "9")] - pub monster_wave_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "1")] - pub wave_count: u32, - #[prost(uint32, tag = "4")] - pub stage_id: u32, - #[prost(uint32, tag = "6")] - pub world_level: u32, - #[prost(message, optional, tag = "1508")] - pub ajgpjglpmio: ::core::option::Option, - #[prost(uint32, tag = "10")] - pub logic_random_seed: u32, - #[prost(bool, tag = "11")] - pub nbckfdgmfdb: bool, - #[prost(uint32, tag = "8")] - pub rounds_limit: u32, - #[prost(message, repeated, tag = "7")] + #[prost(message, repeated, tag = "12")] + pub battle_avatar_list: ::prost::alloc::vec::Vec, + #[prost(message, optional, tag = "1202")] + pub rogue_magic_battle_info: ::core::option::Option, + #[prost(map = "uint32, message", tag = "476")] + pub battle_target_info: ::std::collections::HashMap, + #[prost(message, optional, tag = "1846")] + pub jpgifchjdlk: ::core::option::Option, + #[prost(message, repeated, tag = "3")] pub buff_list: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "8")] + pub monster_wave_list: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "1904")] + pub event_battle_info_list: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "1")] + pub logic_random_seed: u32, + #[prost(uint32, tag = "5")] + pub world_level: u32, + #[prost(uint32, tag = "11")] + pub battle_id: u32, + #[prost(uint32, tag = "9")] + pub wave_count: u32, + #[prost(uint32, tag = "15")] + pub stage_id: u32, + #[prost(message, optional, tag = "1531")] + pub ajgpjglpmio: ::core::option::Option, + #[prost(uint32, tag = "13")] + pub rounds_limit: u32, + #[prost(message, optional, tag = "991")] + pub gegdpnkkakg: ::core::option::Option, + #[prost(bool, tag = "2")] + pub nbckfdgmfdb: bool, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Bbdikgejbmp { + #[prost(message, repeated, tag = "7")] + pub buff_list: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "14")] + pub battle_avatar_list: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "6")] + pub logic_random_seed: u32, + #[prost(uint32, tag = "1")] + pub battle_id: u32, #[prost(uint32, tag = "10")] pub stage_id: u32, - #[prost(message, repeated, tag = "7")] - pub monster_wave_list: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "6")] - pub buff_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "1")] - pub logic_random_seed: u32, - #[prost(uint32, tag = "5")] - pub battle_id: u32, - #[prost(bool, tag = "11")] + #[prost(bool, tag = "13")] pub nbckfdgmfdb: bool, - #[prost(message, repeated, tag = "13")] - pub battle_avatar_list: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "11")] + pub monster_wave_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Phhkombgppk { - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "9")] pub assist_uid: u32, - #[prost(enumeration = "AvatarType", tag = "13")] - pub avatar_type: i32, #[prost(uint32, tag = "11")] pub id: u32, + #[prost(enumeration = "AvatarType", tag = "13")] + pub avatar_type: i32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Mbkocmmicpg { - #[prost(message, optional, tag = "4")] + #[prost(message, optional, tag = "12")] pub return_item_list: ::core::option::Option, - #[prost(bool, tag = "13")] - pub ebnkeiehnha: bool, - #[prost(uint32, repeated, tag = "12")] + #[prost(uint32, repeated, tag = "7")] pub locked_relic_id_list: ::prost::alloc::vec::Vec, + #[prost(bool, tag = "1")] + pub ebnkeiehnha: bool, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Khocchabnmn { - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "10")] pub key: u32, - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "11")] pub value: u32, } /// Obf: NGJLLIPIIEA #[derive(proto_derive::CmdID)] -#[cmdid(7504)] +#[cmdid(7549)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ContentPackageGetDataCsReq {} /// Obf: OMIGANNPOJA #[derive(proto_derive::CmdID)] -#[cmdid(7546)] +#[cmdid(7527)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ContentPackageGetDataScRsp { - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "6")] pub retcode: u32, - #[prost(message, optional, tag = "1")] + #[prost(message, optional, tag = "15")] pub data: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ContentInfo { - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "15")] pub content_id: u32, - #[prost(enumeration = "ContentPackageStatus", tag = "9")] + #[prost(enumeration = "ContentPackageStatus", tag = "10")] pub status: i32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct PackageData { - #[prost(uint32, tag = "1")] - pub nklobnhgfhb: u32, - #[prost(message, repeated, tag = "10")] + #[prost(message, repeated, tag = "11")] pub info_list: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "9")] + pub nklobnhgfhb: u32, } /// Obf: BAFENJAPGCK #[derive(proto_derive::CmdID)] -#[cmdid(7502)] +#[cmdid(7518)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ContentPackageSyncDataScNotify { - #[prost(message, optional, tag = "2")] + #[prost(message, optional, tag = "7")] pub data: ::core::option::Option, } /// Obf: PGBAFKCKDMJ #[derive(proto_derive::CmdID)] -#[cmdid(7537)] +#[cmdid(7536)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ContentPackageUnlockCsReq { - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "4")] pub content_id: u32, } /// Obf: PEDJDFLKFLL #[derive(proto_derive::CmdID)] -#[cmdid(7536)] +#[cmdid(7511)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ContentPackageUnlockScRsp { - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "7")] pub retcode: u32, - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "3")] pub content_id: u32, } /// Obf: CJKIDMMIHKB #[derive(proto_derive::CmdID)] -#[cmdid(7517)] +#[cmdid(7537)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ContentPackageTransferScNotify {} #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct DailyActivityInfo { - #[prost(bool, tag = "11")] - pub is_has_taken: bool, - #[prost(uint32, tag = "6")] - pub daily_active_point: u32, #[prost(uint32, tag = "13")] + pub daily_active_point: u32, + #[prost(uint32, tag = "14")] pub level: u32, - #[prost(uint32, tag = "8")] + #[prost(bool, tag = "2")] + pub is_has_taken: bool, + #[prost(uint32, tag = "11")] pub world_level: u32, } /// Obf: KLEJANCIKIG #[derive(proto_derive::CmdID)] -#[cmdid(3395)] +#[cmdid(3320)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TakeApRewardCsReq { - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "9")] pub level: u32, } /// Obf: DFANCHBCHGC #[derive(proto_derive::CmdID)] -#[cmdid(3332)] +#[cmdid(3391)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TakeApRewardScRsp { - #[prost(message, optional, tag = "3")] - pub reward: ::core::option::Option, - #[prost(uint32, tag = "5")] - pub level: u32, - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "10")] pub retcode: u32, + #[prost(message, optional, tag = "12")] + pub reward: ::core::option::Option, + #[prost(uint32, tag = "13")] + pub level: u32, } /// Obf: EKGDCAICJPH #[derive(proto_derive::CmdID)] -#[cmdid(3331)] +#[cmdid(3367)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetDailyActiveInfoCsReq {} /// Obf: COPNLCKMLEC #[derive(proto_derive::CmdID)] -#[cmdid(3340)] +#[cmdid(3339)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetDailyActiveInfoScRsp { - #[prost(message, repeated, tag = "1")] - pub daily_active_level_list: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "15")] - pub daily_active_quest_id_list: ::prost::alloc::vec::Vec, #[prost(uint32, tag = "8")] pub daily_active_point: u32, - #[prost(uint32, tag = "5")] + #[prost(message, repeated, tag = "11")] + pub daily_active_level_list: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "1")] + pub daily_active_quest_id_list: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "13")] pub retcode: u32, } /// Obf: BLOBJAJFLKH #[derive(proto_derive::CmdID)] -#[cmdid(3376)] +#[cmdid(3327)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct DailyActiveInfoNotify { - #[prost(uint32, repeated, tag = "5")] + #[prost(uint32, tag = "3")] + pub daily_active_point: u32, + #[prost(uint32, repeated, tag = "4")] pub daily_active_quest_id_list: ::prost::alloc::vec::Vec, #[prost(message, repeated, tag = "15")] pub daily_active_level_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "3")] - pub daily_active_point: u32, } /// Obf: HPAJNLOKJNA #[derive(proto_derive::CmdID)] -#[cmdid(3348)] +#[cmdid(3321)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TakeAllApRewardCsReq {} /// Obf: KJECLEPJJCE #[derive(proto_derive::CmdID)] -#[cmdid(3371)] +#[cmdid(3370)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TakeAllApRewardScRsp { - #[prost(uint32, repeated, tag = "10")] + #[prost(uint32, repeated, tag = "13")] pub fbkccpkieia: ::prost::alloc::vec::Vec, - #[prost(message, optional, tag = "11")] - pub reward: ::core::option::Option, #[prost(uint32, tag = "15")] pub retcode: u32, + #[prost(message, optional, tag = "14")] + pub reward: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ServerLogSettings { - #[prost(enumeration = "ServerLogTag", repeated, tag = "10")] + #[prost(enumeration = "ServerLogTag", repeated, tag = "1")] pub notify_tag_list: ::prost::alloc::vec::Vec, - #[prost(enumeration = "ServerLogLevel", tag = "14")] + #[prost(enumeration = "ServerLogLevel", tag = "13")] pub notify_level: i32, } /// Obf: GetServerLogSettingsCsReq #[derive(proto_derive::CmdID)] -#[cmdid(2454)] +#[cmdid(2499)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetServerLogSettingsCsReq {} /// Obf: GetServerLogSettingsScRsp #[derive(proto_derive::CmdID)] -#[cmdid(2496)] +#[cmdid(2477)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetServerLogSettingsScRsp { - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "2")] pub retcode: u32, - #[prost(message, optional, tag = "1")] + #[prost(message, optional, tag = "12")] pub settings: ::core::option::Option, } /// Obf: UpdateServerLogSettingsCsReq #[derive(proto_derive::CmdID)] -#[cmdid(2452)] +#[cmdid(2468)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct UpdateServerLogSettingsCsReq { - #[prost(message, optional, tag = "14")] + #[prost(message, optional, tag = "7")] pub settings: ::core::option::Option, } /// Obf: GGJGIALJNFF #[derive(proto_derive::CmdID)] -#[cmdid(2487)] +#[cmdid(2486)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct UpdateServerLogSettingsScRsp { - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "7")] pub retcode: u32, } /// Obf: IPLBBNKGJAE #[derive(proto_derive::CmdID)] -#[cmdid(2486)] +#[cmdid(2461)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ServerLogScNotify { - #[prost(enumeration = "ServerLogLevel", tag = "9")] - pub level: i32, - #[prost(string, tag = "15")] - pub hkligchhieg: ::prost::alloc::string::String, - #[prost(enumeration = "ServerLogTag", tag = "7")] - pub eamajgpcgfd: i32, - #[prost(string, tag = "3")] + #[prost(string, tag = "1")] pub lcpllgnjnaj: ::prost::alloc::string::String, + #[prost(string, tag = "6")] + pub hkligchhieg: ::prost::alloc::string::String, + #[prost(enumeration = "ServerLogLevel", tag = "2")] + pub level: i32, + #[prost(enumeration = "ServerLogTag", tag = "5")] + pub eamajgpcgfd: i32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Lcmjfehmcnf { - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "5")] pub group_id: u32, - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "13")] pub config_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Oeddoijlgfg { - #[prost(oneof = "oeddoijlgfg::Buff", tags = "3, 6, 9")] - pub buff: ::core::option::Option, + #[prost(oneof = "oeddoijlgfg::Info", tags = "5, 15, 3")] + pub info: ::core::option::Option, } /// Nested message and enum types in `OEDDOIJLGFG`. pub mod oeddoijlgfg { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Oneof)] - pub enum Buff { - #[prost(uint32, tag = "3")] + pub enum Info { + #[prost(uint32, tag = "5")] Ffbfcclodkk(u32), - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "15")] Kacelkgcnei(u32), - #[prost(message, tag = "9")] + #[prost(message, tag = "3")] Faomfmmlmhd(super::Lcmjfehmcnf), } } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Cfcajkfepao { - #[prost(string, tag = "9")] + #[prost(string, tag = "13")] pub msg: ::prost::alloc::string::String, - #[prost(enumeration = "Ojidjndhdga", tag = "10")] + #[prost(enumeration = "Ojidjndhdga", tag = "11")] pub state: i32, - #[prost(string, tag = "6")] + #[prost(string, tag = "3")] pub benanabppjn: ::prost::alloc::string::String, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Kdoejmhbbgi { - #[prost(message, repeated, tag = "10")] - pub lopbajpaemi: ::prost::alloc::vec::Vec, - #[prost(message, optional, tag = "6")] + #[prost(message, optional, tag = "12")] pub dbgfaodbefc: ::core::option::Option, + #[prost(message, repeated, tag = "3")] + pub lopbajpaemi: ::prost::alloc::vec::Vec, } /// Obf: HGBPELEILPA #[derive(proto_derive::CmdID)] -#[cmdid(2467)] +#[cmdid(2487)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetServerGraphDataCsReq { - #[prost(message, repeated, tag = "4")] + #[prost(message, repeated, tag = "8")] pub eofciildilf: ::prost::alloc::vec::Vec, } /// Obf: GDKMFOCGPIF #[derive(proto_derive::CmdID)] -#[cmdid(2477)] +#[cmdid(2467)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetServerGraphDataScRsp { - #[prost(uint32, tag = "9")] - pub retcode: u32, - #[prost(message, repeated, tag = "2")] + #[prost(message, repeated, tag = "15")] pub dcoihamjkhj: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "7")] + pub retcode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct DrinkMakerGuest { - #[prost(uint32, repeated, tag = "13")] + #[prost(uint32, repeated, tag = "3")] pub unlocked_favor_tag_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "4")] pub guest_id: u32, - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "8")] pub faith: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Eekfecdihje { - #[prost(uint32, repeated, tag = "6")] - pub dbpgefglfjj: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "9")] pub jiblnlhcnkd: u32, - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "14")] pub odmphfaniee: u32, - #[prost(uint32, tag = "1")] - pub dgppffkihoc: u32, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "11")] pub kidbbfghecn: u32, + #[prost(uint32, tag = "5")] + pub dgppffkihoc: u32, + #[prost(uint32, repeated, tag = "3")] + pub dbpgefglfjj: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Mflpamafjnc { #[prost(bool, tag = "1")] pub is_success: bool, - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "4")] pub kcfpiecmgbd: u32, } /// Obf: CILOJNNLNFK #[derive(proto_derive::CmdID)] -#[cmdid(6994)] +#[cmdid(6998)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetDrinkMakerDataCsReq {} /// Obf: AHKIKIHJOOP #[derive(proto_derive::CmdID)] -#[cmdid(6993)] +#[cmdid(6989)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetDrinkMakerDataScRsp { - #[prost(uint32, tag = "1")] - pub level: u32, - #[prost(message, optional, tag = "2")] - pub boinombhpcl: ::core::option::Option, - #[prost(uint32, tag = "15")] - pub dhakofagdof: u32, - #[prost(uint32, tag = "13")] - pub retcode: u32, - #[prost(uint32, tag = "6")] - pub hepalniojnp: u32, - #[prost(uint32, tag = "12")] - pub amefgbicgdi: u32, - #[prost(uint32, tag = "8")] - pub eaolmhoaaml: u32, - #[prost(message, repeated, tag = "3")] + #[prost(message, repeated, tag = "5")] pub pjkibodpcki: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "4")] - pub pcnnpejegef: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "6")] + pub eaolmhoaaml: u32, + #[prost(message, optional, tag = "11")] + pub boinombhpcl: ::core::option::Option, + #[prost(uint32, tag = "13")] + pub amefgbicgdi: u32, + #[prost(uint32, tag = "12")] + pub hepalniojnp: u32, + #[prost(uint32, tag = "9")] pub exp: u32, + #[prost(uint32, tag = "7")] + pub retcode: u32, + #[prost(uint32, tag = "8")] + pub level: u32, + #[prost(uint32, repeated, tag = "3")] + pub pcnnpejegef: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "10")] + pub dhakofagdof: u32, } /// Obf: KBFOHKHKANJ #[derive(proto_derive::CmdID)] -#[cmdid(6988)] +#[cmdid(6990)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MakeDrinkCsReq { - #[prost(message, optional, tag = "5")] + #[prost(message, optional, tag = "3")] pub lpmcgnjlbgd: ::core::option::Option, - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "13")] pub eaolmhoaaml: u32, } /// Obf: MakeDrinkScRsp #[derive(proto_derive::CmdID)] -#[cmdid(6990)] +#[cmdid(6996)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MakeDrinkScRsp { - #[prost(uint32, tag = "1")] - pub next_chat_id: u32, - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "15")] pub retcode: u32, - #[prost(bool, tag = "5")] + #[prost(uint32, tag = "3")] + pub next_chat_id: u32, + #[prost(bool, tag = "7")] pub is_succ: bool, } /// Obf: MIBAMEIGMED #[derive(proto_derive::CmdID)] -#[cmdid(6984)] +#[cmdid(6987)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct EndDrinkMakerSequenceCsReq {} /// Obf: EndDrinkMakerSequenceScRsp #[derive(proto_derive::CmdID)] -#[cmdid(6982)] +#[cmdid(6991)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct EndDrinkMakerSequenceScRsp { - #[prost(uint32, tag = "9")] - pub next_sequence_id: u32, #[prost(uint32, tag = "11")] - pub level: u32, + pub next_sequence_id: u32, #[prost(uint32, tag = "2")] - pub exp: u32, - #[prost(message, repeated, tag = "8")] - pub request_list: ::prost::alloc::vec::Vec, - #[prost(message, optional, tag = "4")] - pub guest: ::core::option::Option, - #[prost(uint32, tag = "3")] - pub tips: u32, - #[prost(uint32, tag = "6")] pub retcode: u32, + #[prost(uint32, tag = "5")] + pub tips: u32, #[prost(message, optional, tag = "10")] pub reward: ::core::option::Option, + #[prost(message, optional, tag = "15")] + pub guest: ::core::option::Option, + #[prost(uint32, tag = "13")] + pub level: u32, + #[prost(message, repeated, tag = "8")] + pub request_list: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "7")] + pub exp: u32, } /// Obf: OHIGLDPPJHI #[derive(proto_derive::CmdID)] -#[cmdid(7000)] +#[cmdid(6985)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MakeMissionDrinkCsReq { - #[prost(uint32, tag = "3")] - pub kcfpiecmgbd: u32, - #[prost(message, optional, tag = "15")] - pub lpmcgnjlbgd: ::core::option::Option, - #[prost(bool, tag = "9")] + #[prost(bool, tag = "11")] pub jgeaegmhdoc: bool, + #[prost(message, optional, tag = "12")] + pub lpmcgnjlbgd: ::core::option::Option, + #[prost(uint32, tag = "7")] + pub kcfpiecmgbd: u32, } /// Obf: MakeMissionDrinkScRsp #[derive(proto_derive::CmdID)] -#[cmdid(6989)] +#[cmdid(6983)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MakeMissionDrinkScRsp { - #[prost(uint32, tag = "10")] - pub retcode: u32, - #[prost(bool, tag = "13")] - pub is_save: bool, - #[prost(bool, tag = "14")] + #[prost(bool, tag = "7")] pub is_succ: bool, - #[prost(message, optional, tag = "2")] + #[prost(uint32, tag = "8")] + pub retcode: u32, + #[prost(message, optional, tag = "11")] pub custom_drink: ::core::option::Option, + #[prost(bool, tag = "9")] + pub is_save: bool, } /// Obf: DLDNKDIKPBO #[derive(proto_derive::CmdID)] -#[cmdid(6987)] +#[cmdid(6994)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct DrinkMakerDayEndScNotify { - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "12")] pub ecilicnolfn: u32, } /// Obf: MIGGMONDLHO #[derive(proto_derive::CmdID)] -#[cmdid(6983)] +#[cmdid(6999)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct DrinkMakerChallengeCsReq { - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "5")] pub challenge_id: u32, - #[prost(message, optional, tag = "15")] + #[prost(message, optional, tag = "10")] pub lpmcgnjlbgd: ::core::option::Option, } /// Obf: BKMIEADDANJ #[derive(proto_derive::CmdID)] -#[cmdid(6985)] +#[cmdid(6992)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct DrinkMakerChallengeScRsp { - #[prost(uint32, tag = "8")] - pub challenge_id: u32, - #[prost(bool, tag = "1")] - pub is_success: bool, - #[prost(message, optional, tag = "14")] - pub reward: ::core::option::Option, - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "15")] pub retcode: u32, + #[prost(message, optional, tag = "13")] + pub reward: ::core::option::Option, + #[prost(bool, tag = "4")] + pub is_success: bool, + #[prost(uint32, tag = "7")] + pub challenge_id: u32, } /// Obf: KEAHBLFMMAB #[derive(proto_derive::CmdID)] -#[cmdid(6981)] +#[cmdid(6986)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct DrinkMakerUpdateTipsNotify { - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "9")] pub amefgbicgdi: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Goahfmlpdmf { - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "14")] pub acnpbbnlmie: u32, - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "3")] pub state: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Kkeaenndmkb { - #[prost(message, repeated, tag = "5")] + #[prost(message, repeated, tag = "15")] pub ndpgblaaghk: ::prost::alloc::vec::Vec, } /// Obf: IFBIEEKFDJM #[derive(proto_derive::CmdID)] -#[cmdid(6561)] +#[cmdid(6559)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetEraFlipperDataCsReq {} /// Obf: MGOGBDBOKFB #[derive(proto_derive::CmdID)] -#[cmdid(6570)] +#[cmdid(6561)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetEraFlipperDataScRsp { - #[prost(uint32, tag = "1")] - pub retcode: u32, - #[prost(message, optional, tag = "7")] + #[prost(message, optional, tag = "2")] pub data: ::core::option::Option, + #[prost(uint32, tag = "12")] + pub retcode: u32, } /// Obf: AAMKEPIPNGO #[derive(proto_derive::CmdID)] -#[cmdid(6559)] +#[cmdid(6555)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ChangeEraFlipperDataCsReq { - #[prost(message, optional, tag = "8")] + #[prost(message, optional, tag = "14")] pub data: ::core::option::Option, } /// Obf: MEHGKNJPOJE #[derive(proto_derive::CmdID)] -#[cmdid(6569)] +#[cmdid(6560)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ChangeEraFlipperDataScRsp { - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "13")] pub retcode: u32, - #[prost(message, optional, tag = "14")] + #[prost(message, optional, tag = "5")] pub data: ::core::option::Option, } /// Obf: FFFNNIALANO #[derive(proto_derive::CmdID)] -#[cmdid(6574)] +#[cmdid(6570)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ResetEraFlipperDataCsReq { - #[prost(bool, tag = "3")] + #[prost(bool, tag = "10")] pub pahmagpfddj: bool, } /// Obf: JIOJIJLGGOD #[derive(proto_derive::CmdID)] -#[cmdid(6551)] +#[cmdid(6557)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ResetEraFlipperDataScRsp { - #[prost(message, optional, tag = "10")] + #[prost(message, optional, tag = "2")] pub data: ::core::option::Option, - #[prost(uint32, tag = "15")] - pub retcode: u32, - #[prost(bool, tag = "9")] + #[prost(bool, tag = "15")] pub pahmagpfddj: bool, + #[prost(uint32, tag = "3")] + pub retcode: u32, } /// Obf: MCDHIAJANIH #[derive(proto_derive::CmdID)] -#[cmdid(6553)] +#[cmdid(6562)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct EnterEraFlipperRegionCsReq { - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "12")] pub state: u32, - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "15")] pub acnpbbnlmie: u32, } /// Obf: CEPMIOIMPAP #[derive(proto_derive::CmdID)] -#[cmdid(6558)] +#[cmdid(6568)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct EnterEraFlipperRegionScRsp { - #[prost(uint32, tag = "14")] - pub acnpbbnlmie: u32, - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "12")] pub retcode: u32, + #[prost(uint32, tag = "6")] + pub acnpbbnlmie: u32, } /// Obf: JPPIMNMMJFB #[derive(proto_derive::CmdID)] -#[cmdid(6554)] +#[cmdid(6566)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct EraFlipperDataChangeScNotify { - #[prost(message, optional, tag = "13")] - pub data: ::core::option::Option, - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "4")] pub floor_id: u32, + #[prost(message, optional, tag = "1")] + pub data: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct EvolveBuildAvatar { - #[prost(double, tag = "3")] - pub damage: f64, - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "10")] pub avatar_id: u32, - #[prost(enumeration = "AvatarType", tag = "6")] + #[prost(double, tag = "14")] + pub damage: f64, + #[prost(enumeration = "AvatarType", tag = "8")] pub avatar_type: i32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct EvolveBuildLevelInfo { - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "2")] pub cur_game_exp: u32, + #[prost(message, repeated, tag = "9")] + pub battle_target_list: ::prost::alloc::vec::Vec, + #[prost(enumeration = "Klnipnjcnmj", tag = "13")] + pub season: i32, + #[prost(uint32, tag = "8")] + pub round_cnt: u32, + #[prost(message, optional, tag = "11")] + pub battle_info: ::core::option::Option, #[prost(uint32, repeated, tag = "4")] pub period_id_list: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "3")] + #[prost(message, repeated, tag = "5")] pub avatar_list: ::prost::alloc::vec::Vec, - #[prost(enumeration = "Klnipnjcnmj", tag = "14")] - pub season: i32, - #[prost(message, repeated, tag = "8")] - pub battle_target_list: ::prost::alloc::vec::Vec, - #[prost(message, optional, tag = "15")] - pub battle_info: ::core::option::Option, - #[prost(uint32, tag = "7")] - pub round_cnt: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Ceenlalpdmk { - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "15")] pub acjcphifmln: u32, #[prost(uint32, tag = "2")] - pub ceadmdamhmo: u32, - #[prost(uint32, tag = "12")] pub stage_score: u32, + #[prost(uint32, tag = "3")] + pub ceadmdamhmo: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Imgjiebfgpf { - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "9")] pub level: u32, - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "14")] pub neciljojgan: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Ecmmjllhpmd { - #[prost(bool, tag = "8")] - pub najohihmabc: bool, - #[prost(uint32, tag = "13")] - pub acjcphifmln: u32, - #[prost(bool, tag = "12")] + #[prost(bool, tag = "9")] pub cadmfghaljg: bool, - #[prost(uint32, repeated, tag = "6")] + #[prost(uint32, tag = "8")] + pub acjcphifmln: u32, + #[prost(bool, tag = "11")] + pub najohihmabc: bool, + #[prost(uint32, repeated, tag = "7")] pub lgdniigephh: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Pdfhjmmdgae { - #[prost(message, repeated, tag = "7")] - pub cokdnpeemag: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "2")] - pub item_value: u32, - #[prost(enumeration = "Klnipnjcnmj", tag = "15")] + #[prost(enumeration = "Klnipnjcnmj", tag = "9")] pub mdcjfoafdjk: i32, + #[prost(uint32, tag = "14")] + pub item_value: u32, + #[prost(message, repeated, tag = "3")] + pub cokdnpeemag: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Pdicnbbkfnp { - #[prost(uint32, tag = "14")] - pub eodgcnafiac: u32, - #[prost(uint32, tag = "2")] - pub item_value: u32, - #[prost(message, repeated, tag = "6")] - pub lcjnndgkidp: ::prost::alloc::vec::Vec, - #[prost(bool, tag = "3")] - pub oofhjahfidh: bool, - #[prost(bool, tag = "1")] - pub dehghedinih: bool, - #[prost(message, repeated, tag = "10")] - pub cokdnpeemag: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "12")] + #[prost(message, repeated, tag = "9")] pub klgheccbhcg: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "5")] - pub fejgmnnfflg: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "15")] - pub fjocdkifppc: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "12")] pub exp: u32, - #[prost(uint32, repeated, tag = "9")] + #[prost(message, repeated, tag = "4")] + pub lcjnndgkidp: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "14")] + pub fejgmnnfflg: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "10")] + pub item_value: u32, + #[prost(uint32, tag = "5")] + pub eodgcnafiac: u32, + #[prost(uint32, repeated, tag = "6")] + pub fjocdkifppc: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "3")] + pub cokdnpeemag: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "8")] pub lmeljcifbdf: ::prost::alloc::vec::Vec, } /// Obf: LAMIFJCNFHH #[derive(proto_derive::CmdID)] -#[cmdid(7104)] +#[cmdid(7149)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct EvolveBuildQueryInfoCsReq {} /// Obf: KHDHBJJEOKB #[derive(proto_derive::CmdID)] -#[cmdid(7146)] +#[cmdid(7127)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct EvolveBuildQueryInfoScRsp { - #[prost(message, optional, tag = "10")] + #[prost(message, optional, tag = "4")] pub omcbcgchlgn: ::core::option::Option, - #[prost(message, optional, tag = "9")] - pub lmgkmaoicgc: ::core::option::Option, - #[prost(message, repeated, tag = "8")] - pub dhmbdiibklm: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "12")] pub retcode: u32, + #[prost(message, repeated, tag = "14")] + pub dhmbdiibklm: ::prost::alloc::vec::Vec, } /// Obf: DNHBALAHPBG #[derive(proto_derive::CmdID)] -#[cmdid(7102)] +#[cmdid(7118)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct EvolveBuildStartLevelCsReq { - #[prost(message, optional, tag = "5")] - pub jiapjhdlfbj: ::core::option::Option, - #[prost(message, repeated, tag = "3")] + #[prost(message, repeated, tag = "1")] pub avatar_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "15")] + #[prost(message, optional, tag = "15")] + pub jiapjhdlfbj: ::core::option::Option, + #[prost(uint32, tag = "11")] pub acjcphifmln: u32, } /// Obf: BFIEPMAPCME #[derive(proto_derive::CmdID)] -#[cmdid(7137)] +#[cmdid(7136)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct EvolveBuildStartLevelScRsp { - #[prost(uint32, tag = "12")] - pub retcode: u32, - #[prost(message, optional, tag = "11")] + #[prost(message, optional, tag = "14")] pub lmgkmaoicgc: ::core::option::Option, - #[prost(message, optional, tag = "8")] + #[prost(message, optional, tag = "15")] pub nopheehjhek: ::core::option::Option, + #[prost(uint32, tag = "7")] + pub retcode: u32, } /// Obf: LEAGCOGMOJM #[derive(proto_derive::CmdID)] -#[cmdid(7136)] +#[cmdid(7111)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct EvolveBuildStartStageCsReq { - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "3")] pub acjcphifmln: u32, } /// Obf: FBEAPHBAIFP #[derive(proto_derive::CmdID)] -#[cmdid(7117)] +#[cmdid(7137)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct EvolveBuildStartStageScRsp { - #[prost(message, optional, tag = "5")] - pub lmgkmaoicgc: ::core::option::Option, - #[prost(message, optional, tag = "1")] - pub nopheehjhek: ::core::option::Option, - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "1")] pub retcode: u32, + #[prost(message, optional, tag = "3")] + pub nopheehjhek: ::core::option::Option, + #[prost(message, optional, tag = "15")] + pub lmgkmaoicgc: ::core::option::Option, } /// Obf: BCGILDDNIIH #[derive(proto_derive::CmdID)] -#[cmdid(7127)] +#[cmdid(7117)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct EvolveBuildGiveupCsReq { - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "13")] pub acjcphifmln: u32, } /// Obf: MENHNDFMFKL #[derive(proto_derive::CmdID)] -#[cmdid(7115)] +#[cmdid(7139)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct EvolveBuildGiveupScRsp { - #[prost(uint32, tag = "4")] - pub retcode: u32, - #[prost(message, optional, tag = "3")] + #[prost(message, optional, tag = "13")] pub lmgkmaoicgc: ::core::option::Option, + #[prost(uint32, tag = "2")] + pub retcode: u32, } /// Obf: KJHBEPOJJCO #[derive(proto_derive::CmdID)] -#[cmdid(7143)] +#[cmdid(7112)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct EvolveBuildLeaveCsReq {} /// Obf: HAEDIEJIDGC #[derive(proto_derive::CmdID)] -#[cmdid(7109)] +#[cmdid(7110)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct EvolveBuildLeaveScRsp { - #[prost(message, optional, tag = "14")] + #[prost(message, optional, tag = "13")] pub lmgkmaoicgc: ::core::option::Option, - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "9")] pub retcode: u32, } /// Obf: EvolveBuildFinishScNotify @@ -8344,246 +8520,229 @@ pub struct EvolveBuildLeaveScRsp { #[cmdid(7145)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct EvolveBuildFinishScNotify { - #[prost(uint32, tag = "6")] - pub coin: u32, - #[prost(uint32, tag = "15")] - pub cur_period_type: u32, + #[prost(message, optional, tag = "10")] + pub level_info: ::core::option::Option, #[prost(uint32, tag = "5")] - pub exp: u32, - #[prost(enumeration = "Dlhcmcnihii", tag = "3")] + pub level_id: u32, + #[prost(enumeration = "Dlhcmcnihii", tag = "14")] pub battle_result_type: i32, + #[prost(uint32, tag = "2")] + pub wave: u32, + #[prost(uint32, tag = "4")] + pub cur_period_type: u32, #[prost(bool, tag = "7")] pub is_lose: bool, #[prost(uint32, tag = "9")] - pub level_id: u32, - #[prost(uint32, tag = "4")] - pub wave: u32, - #[prost(uint32, tag = "2")] + pub exp: u32, + #[prost(uint32, tag = "3")] + pub coin: u32, + #[prost(uint32, tag = "11")] pub score: u32, - #[prost(message, optional, tag = "14")] - pub level_info: ::core::option::Option, } /// Obf: BKBIPBBOBIO #[derive(proto_derive::CmdID)] -#[cmdid(7107)] +#[cmdid(7106)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct EvolveBuildReRandomStageCsReq { - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "8")] pub acjcphifmln: u32, } /// Obf: BPKNBKMPCFG #[derive(proto_derive::CmdID)] -#[cmdid(7150)] +#[cmdid(7128)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct EvolveBuildReRandomStageScRsp { - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "6")] pub retcode: u32, - #[prost(message, optional, tag = "9")] + #[prost(message, optional, tag = "14")] pub jgpbflccijp: ::core::option::Option, } /// Obf: IENKMECLNJM #[derive(proto_derive::CmdID)] -#[cmdid(7144)] +#[cmdid(7134)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct EvolveBuildShopAbilityUpCsReq { - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "15")] pub neciljojgan: u32, - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "5")] pub level: u32, } /// Obf: EPFGDIPDKAO #[derive(proto_derive::CmdID)] -#[cmdid(7132)] +#[cmdid(7146)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct EvolveBuildShopAbilityUpScRsp { - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "8")] pub neciljojgan: u32, #[prost(uint32, tag = "12")] pub level: u32, - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "6")] pub retcode: u32, } /// Obf: JKBPDBKBNHB #[derive(proto_derive::CmdID)] -#[cmdid(7123)] +#[cmdid(7122)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct EvolveBuildShopAbilityDownCsReq { - #[prost(uint32, tag = "4")] - pub level: u32, - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "12")] pub neciljojgan: u32, + #[prost(uint32, tag = "9")] + pub level: u32, } /// Obf: MFFCJHKLKBP #[derive(proto_derive::CmdID)] -#[cmdid(7126)] +#[cmdid(7125)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct EvolveBuildShopAbilityDownScRsp { - #[prost(uint32, tag = "12")] - pub neciljojgan: u32, - #[prost(uint32, tag = "2")] - pub retcode: u32, - #[prost(uint32, tag = "3")] - pub level: u32, -} -/// Obf: JNMGLOFJJPM -#[derive(proto_derive::CmdID)] -#[cmdid(7122)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct EvolveBuildTakeExpRewardCsReq {} -/// Obf: LEAJAJBIMIO -#[derive(proto_derive::CmdID)] -#[cmdid(7116)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct EvolveBuildTakeExpRewardScRsp { #[prost(uint32, tag = "1")] + pub level: u32, + #[prost(uint32, tag = "6")] pub retcode: u32, - #[prost(message, optional, tag = "12")] - pub reward: ::core::option::Option, - #[prost(uint32, tag = "3")] - pub eodgcnafiac: u32, + #[prost(uint32, tag = "10")] + pub neciljojgan: u32, } /// Obf: PBKJMDMFLNN #[derive(proto_derive::CmdID)] -#[cmdid(7142)] +#[cmdid(7103)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct EvolveBuildShopAbilityResetCsReq { - #[prost(enumeration = "Klnipnjcnmj", tag = "10")] + #[prost(enumeration = "Klnipnjcnmj", tag = "11")] pub mdcjfoafdjk: i32, } /// Obf: NMGLNOLFPMI #[derive(proto_derive::CmdID)] -#[cmdid(7129)] +#[cmdid(7113)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct EvolveBuildShopAbilityResetScRsp { - #[prost(message, repeated, tag = "7")] - pub cokdnpeemag: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "12")] pub retcode: u32, - #[prost(uint32, tag = "8")] - pub item_value: u32, - #[prost(enumeration = "Klnipnjcnmj", tag = "10")] + #[prost(enumeration = "Klnipnjcnmj", tag = "3")] pub mdcjfoafdjk: i32, + #[prost(uint32, tag = "15")] + pub item_value: u32, + #[prost(message, repeated, tag = "9")] + pub cokdnpeemag: ::prost::alloc::vec::Vec, } /// Obf: IHNIHBPEKDK #[derive(proto_derive::CmdID)] -#[cmdid(7134)] +#[cmdid(7140)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct EvolveBuildCoinNotify { - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "6")] pub item_value: u32, - #[prost(enumeration = "Klnipnjcnmj", tag = "8")] + #[prost(enumeration = "Klnipnjcnmj", tag = "12")] pub mdcjfoafdjk: i32, } /// Obf: LCAOFIDPICA #[derive(proto_derive::CmdID)] -#[cmdid(7101)] +#[cmdid(7114)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct EvolveBuildSkipTeachLevelCsReq { - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "5")] pub acjcphifmln: u32, } /// Obf: OBBGCAMDHFG #[derive(proto_derive::CmdID)] -#[cmdid(7105)] +#[cmdid(7101)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct EvolveBuildSkipTeachLevelScRsp { - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "8")] pub retcode: u32, - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "1")] pub acjcphifmln: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Fjibdhhohmh { - #[prost(int64, tag = "9")] - pub ponadanoaln: i64, - #[prost(uint32, tag = "10")] - pub id: u32, - #[prost(uint32, repeated, tag = "5")] - pub avatar_id_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "7")] pub aoedghmhgjj: u32, + #[prost(int64, tag = "15")] + pub ponadanoaln: i64, + #[prost(uint32, tag = "6")] + pub id: u32, + #[prost(uint32, repeated, tag = "1")] + pub avatar_id_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Kimnfbjceol { - #[prost(uint32, tag = "4")] - pub ojfnlmhmlof: u32, - #[prost(uint32, tag = "14")] - pub ipgeclelhgj: u32, - #[prost(uint32, tag = "2")] - pub id: u32, - #[prost(int64, tag = "1")] + #[prost(int64, tag = "14")] pub ponadanoaln: i64, - #[prost(uint32, tag = "8")] - pub fnggnbmofaa: u32, - #[prost(uint32, repeated, tag = "5")] + #[prost(uint32, tag = "11")] + pub ojfnlmhmlof: u32, + #[prost(uint32, repeated, tag = "10")] pub avatar_id_list: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "12")] + pub fnggnbmofaa: u32, + #[prost(uint32, tag = "8")] + pub ipgeclelhgj: u32, + #[prost(uint32, tag = "4")] + pub id: u32, } /// Obf: OIEKBHIHCIJ #[derive(proto_derive::CmdID)] -#[cmdid(2595)] +#[cmdid(2520)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetExpeditionDataCsReq {} /// Obf: OGHFHDGNKEK #[derive(proto_derive::CmdID)] -#[cmdid(2532)] +#[cmdid(2591)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetExpeditionDataScRsp { - #[prost(uint32, tag = "11")] - pub retcode: u32, - #[prost(uint32, repeated, tag = "9")] - pub fnalloldglm: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "5")] - pub fjgimkepjob: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "6")] - pub pageieobhbp: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "8")] - pub hjbkdbmgmbd: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "2")] pub dipkgomgmoa: u32, #[prost(uint32, repeated, tag = "12")] + pub fnalloldglm: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "4")] + pub retcode: u32, + #[prost(message, repeated, tag = "1")] + pub pageieobhbp: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "6")] + pub fjgimkepjob: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "9")] + pub hjbkdbmgmbd: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "5")] pub jfjpadlalmd: ::prost::alloc::vec::Vec, } /// Obf: KPECCFNGJKH #[derive(proto_derive::CmdID)] -#[cmdid(2531)] +#[cmdid(2567)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct AcceptExpeditionCsReq { - #[prost(message, optional, tag = "10")] + #[prost(message, optional, tag = "8")] pub pmhmlhlfgae: ::core::option::Option, } /// Obf: MKOOBKEONFO #[derive(proto_derive::CmdID)] -#[cmdid(2540)] +#[cmdid(2539)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct AcceptExpeditionScRsp { - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "4")] pub retcode: u32, - #[prost(message, optional, tag = "6")] + #[prost(message, optional, tag = "2")] pub pmhmlhlfgae: ::core::option::Option, } /// Obf: BKPNMEKHABD #[derive(proto_derive::CmdID)] -#[cmdid(2560)] +#[cmdid(2598)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct AcceptMultipleExpeditionCsReq { - #[prost(message, repeated, tag = "4")] + #[prost(message, repeated, tag = "7")] pub egnpoofacdb: ::prost::alloc::vec::Vec, } /// Obf: JBJJBMLBAEE #[derive(proto_derive::CmdID)] -#[cmdid(2502)] +#[cmdid(2585)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct AcceptMultipleExpeditionScRsp { - #[prost(message, repeated, tag = "1")] - pub ohhgihlnepk: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "4")] pub retcode: u32, + #[prost(message, repeated, tag = "12")] + pub ohhgihlnepk: ::prost::alloc::vec::Vec, } /// Obf: MLLMLDEONPD #[derive(proto_derive::CmdID)] -#[cmdid(2576)] +#[cmdid(2527)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct CancelExpeditionCsReq { #[prost(uint32, tag = "9")] @@ -8591,727 +8750,1620 @@ pub struct CancelExpeditionCsReq { } /// Obf: CKFBOEBNOFJ #[derive(proto_derive::CmdID)] -#[cmdid(2548)] +#[cmdid(2521)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct CancelExpeditionScRsp { - #[prost(uint32, tag = "9")] - pub nnmlockecka: u32, - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "10")] pub retcode: u32, + #[prost(uint32, tag = "7")] + pub nnmlockecka: u32, } /// Obf: CICAAONIKLP #[derive(proto_derive::CmdID)] -#[cmdid(2571)] +#[cmdid(2570)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TakeExpeditionRewardCsReq { - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "11")] pub nnmlockecka: u32, } /// Obf: MJAPIHCEOJM #[derive(proto_derive::CmdID)] -#[cmdid(2552)] +#[cmdid(2559)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TakeExpeditionRewardScRsp { - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "5")] pub nnmlockecka: u32, - #[prost(uint32, tag = "15")] - pub retcode: u32, - #[prost(message, optional, tag = "13")] + #[prost(message, optional, tag = "10")] pub reward: ::core::option::Option, - #[prost(message, optional, tag = "14")] + #[prost(message, optional, tag = "9")] pub pehcdfaeefk: ::core::option::Option, + #[prost(uint32, tag = "2")] + pub retcode: u32, } /// Obf: KLPCGCINMKC #[derive(proto_derive::CmdID)] -#[cmdid(2539)] +#[cmdid(2538)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TakeMultipleExpeditionRewardCsReq { - #[prost(uint32, repeated, tag = "12")] + #[prost(uint32, repeated, tag = "7")] pub ijajdhkgnkl: ::prost::alloc::vec::Vec, } /// Obf: IKDCPJGPIFK #[derive(proto_derive::CmdID)] -#[cmdid(2543)] +#[cmdid(2552)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TakeMultipleExpeditionRewardScRsp { - #[prost(uint32, tag = "1")] - pub retcode: u32, + #[prost(message, optional, tag = "1")] + pub pehcdfaeefk: ::core::option::Option, + #[prost(message, repeated, tag = "11")] + pub lfbfmochjbl: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "12")] + pub pppbklohckk: ::prost::alloc::vec::Vec, #[prost(message, repeated, tag = "15")] pub lblidldbobm: ::prost::alloc::vec::Vec, - #[prost(message, optional, tag = "11")] - pub pehcdfaeefk: ::core::option::Option, - #[prost(message, repeated, tag = "2")] - pub lfbfmochjbl: ::prost::alloc::vec::Vec, - #[prost(message, optional, tag = "5")] + #[prost(uint32, tag = "3")] + pub retcode: u32, + #[prost(message, optional, tag = "2")] pub reward: ::core::option::Option, - #[prost(uint32, repeated, tag = "10")] - pub pppbklohckk: ::prost::alloc::vec::Vec, } /// Obf: BODEAMBDFDH #[derive(proto_derive::CmdID)] -#[cmdid(2522)] +#[cmdid(2554)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ExpeditionDataChangeScNotify { - #[prost(uint32, tag = "3")] - pub dipkgomgmoa: u32, - #[prost(uint32, repeated, tag = "7")] - pub fnalloldglm: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "4")] - pub jfjpadlalmd: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "1")] + #[prost(message, repeated, tag = "3")] pub hjbkdbmgmbd: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "6")] + #[prost(message, repeated, tag = "9")] pub pageieobhbp: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "14")] + pub jfjpadlalmd: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "5")] + pub dipkgomgmoa: u32, + #[prost(uint32, repeated, tag = "11")] + pub fnalloldglm: ::prost::alloc::vec::Vec, } /// Obf: MPIHHIBDOHO #[derive(proto_derive::CmdID)] -#[cmdid(2556)] +#[cmdid(2577)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct AcceptActivityExpeditionCsReq { - #[prost(message, optional, tag = "12")] + #[prost(message, optional, tag = "13")] pub lgkjlfjgoje: ::core::option::Option, } /// Obf: OMDOBPBPOLA #[derive(proto_derive::CmdID)] -#[cmdid(2572)] +#[cmdid(2580)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct AcceptActivityExpeditionScRsp { - #[prost(uint32, tag = "14")] - pub retcode: u32, - #[prost(message, optional, tag = "5")] + #[prost(message, optional, tag = "14")] pub lgkjlfjgoje: ::core::option::Option, + #[prost(uint32, tag = "4")] + pub retcode: u32, } /// Obf: JMFIHJAIMAD #[derive(proto_derive::CmdID)] -#[cmdid(2585)] +#[cmdid(2502)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct CancelActivityExpeditionCsReq { - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "11")] pub mpgemlglhbh: u32, } /// Obf: LNBBELACOID #[derive(proto_derive::CmdID)] -#[cmdid(2516)] +#[cmdid(2505)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct CancelActivityExpeditionScRsp { - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "7")] pub retcode: u32, - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "9")] pub mpgemlglhbh: u32, } /// Obf: PNOEHDKCDCP #[derive(proto_derive::CmdID)] -#[cmdid(2546)] +#[cmdid(2574)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TakeActivityExpeditionRewardCsReq { - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "1")] pub mpgemlglhbh: u32, } /// Obf: LOAMIMDLJNC #[derive(proto_derive::CmdID)] -#[cmdid(2583)] +#[cmdid(2573)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TakeActivityExpeditionRewardScRsp { - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "13")] pub mpgemlglhbh: u32, - #[prost(message, optional, tag = "1")] - pub pehcdfaeefk: ::core::option::Option, - #[prost(uint32, tag = "9")] - pub retcode: u32, - #[prost(message, optional, tag = "10")] - pub reward: ::core::option::Option, #[prost(uint32, tag = "7")] pub score: u32, + #[prost(uint32, tag = "14")] + pub retcode: u32, + #[prost(message, optional, tag = "12")] + pub pehcdfaeefk: ::core::option::Option, + #[prost(message, optional, tag = "9")] + pub reward: ::core::option::Option, } /// Obf: MAFGCPMGAII #[derive(proto_derive::CmdID)] -#[cmdid(2533)] +#[cmdid(2568)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TakeMultipleActivityExpeditionRewardCsReq { - #[prost(uint32, repeated, tag = "8")] + #[prost(uint32, repeated, tag = "15")] pub gomdmnhmmnh: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Mmnjmingahj { - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "5")] pub mpgemlglhbh: u32, - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "4")] pub score: u32, - #[prost(message, optional, tag = "8")] - pub reward: ::core::option::Option, - #[prost(message, optional, tag = "9")] + #[prost(message, optional, tag = "13")] pub pehcdfaeefk: ::core::option::Option, + #[prost(message, optional, tag = "15")] + pub reward: ::core::option::Option, } /// Obf: ACBFOFDKOFJ #[derive(proto_derive::CmdID)] -#[cmdid(2542)] +#[cmdid(2594)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TakeMultipleActivityExpeditionRewardScRsp { #[prost(uint32, tag = "12")] pub retcode: u32, - #[prost(uint32, repeated, tag = "6")] + #[prost(uint32, repeated, tag = "9")] pub jieeelikijm: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "15")] + #[prost(message, repeated, tag = "14")] pub cdndfceedco: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Gcaiemmcpdh { - #[prost(uint32, repeated, tag = "6")] + #[prost(uint32, repeated, tag = "4")] pub buff_list: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "10")] + #[prost(message, repeated, tag = "14")] pub avatar_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Fhblgmpmiie { - #[prost(map = "uint32, uint32", tag = "1")] - pub jgajkoefgpc: ::std::collections::HashMap, - #[prost(uint32, repeated, tag = "2")] - pub hkmmnfghfpb: ::prost::alloc::vec::Vec, - #[prost(map = "uint32, message", tag = "15")] - pub gblooeppgdm: ::std::collections::HashMap, - #[prost(uint32, tag = "3")] - pub bejcaldilnc: u32, - #[prost(uint32, repeated, tag = "10")] - pub edhnakfofgj: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "12")] - pub amdhncjjoph: ::prost::alloc::vec::Vec, #[prost(uint32, repeated, tag = "9")] + pub hkmmnfghfpb: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "2")] + pub edhnakfofgj: ::prost::alloc::vec::Vec, + #[prost(map = "uint32, message", tag = "14")] + pub gblooeppgdm: ::std::collections::HashMap, + #[prost(uint32, tag = "7")] + pub bejcaldilnc: u32, + #[prost(uint32, repeated, tag = "1")] pub njngbpjemcl: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "4")] + pub amdhncjjoph: ::prost::alloc::vec::Vec, + #[prost(map = "uint32, uint32", tag = "3")] + pub jgajkoefgpc: ::std::collections::HashMap, } /// Obf: CLJEPFDCHON #[derive(proto_derive::CmdID)] -#[cmdid(4995)] +#[cmdid(4920)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetFantasticStoryActivityDataCsReq { - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "2")] pub bejcaldilnc: u32, } /// Obf: NAOJJABOCOJ #[derive(proto_derive::CmdID)] -#[cmdid(4932)] +#[cmdid(4991)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetFantasticStoryActivityDataScRsp { #[prost(message, optional, tag = "11")] pub fpepicfcffm: ::core::option::Option, - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "3")] pub retcode: u32, } /// Obf: BFBBJFNLFDF #[derive(proto_derive::CmdID)] -#[cmdid(4931)] +#[cmdid(4967)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct FinishChapterScNotify { - #[prost(message, optional, tag = "1")] + #[prost(message, optional, tag = "13")] pub fpepicfcffm: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Kjmfeockcml { - #[prost(uint32, tag = "12")] - pub avatar_id: u32, - #[prost(enumeration = "AvatarType", tag = "10")] + #[prost(enumeration = "AvatarType", tag = "2")] pub avatar_type: i32, + #[prost(uint32, tag = "13")] + pub avatar_id: u32, } /// Obf: LAHJHNKHPMD #[derive(proto_derive::CmdID)] -#[cmdid(4940)] +#[cmdid(4939)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct EnterFantasticStoryActivityStageCsReq { - #[prost(uint32, tag = "11")] - pub bejcaldilnc: u32, + #[prost(uint32, repeated, tag = "14")] + pub buff_list: ::prost::alloc::vec::Vec, #[prost(message, repeated, tag = "8")] pub avatar_list: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "4")] - pub buff_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "15")] + pub bejcaldilnc: u32, + #[prost(uint32, tag = "13")] pub battle_id: u32, } /// Obf: MCHENFGFKNN #[derive(proto_derive::CmdID)] -#[cmdid(4976)] +#[cmdid(4927)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct EnterFantasticStoryActivityStageScRsp { - #[prost(uint32, tag = "14")] - pub bejcaldilnc: u32, - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "10")] pub retcode: u32, - #[prost(message, optional, tag = "11")] + #[prost(message, optional, tag = "2")] pub battle_info: ::core::option::Option, - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "1")] pub battle_id: u32, + #[prost(uint32, tag = "12")] + pub bejcaldilnc: u32, } /// Obf: AOJIAEAKEBH #[derive(proto_derive::CmdID)] -#[cmdid(4948)] +#[cmdid(4921)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct FantasticStoryActivityBattleEndScNotify { - #[prost(uint32, tag = "5")] - pub pkklpbbnnce: u32, - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "11")] pub bejcaldilnc: u32, - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "10")] + pub pkklpbbnnce: u32, + #[prost(uint32, tag = "13")] pub battle_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ehfogjkjmef { + #[prost(uint32, tag = "11")] + pub imfcimkmjpl: u32, + #[prost(enumeration = "Dlbfahoagph", tag = "8")] + pub hhmabjdimgm: i32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Maaolkgllbi { + #[prost(uint32, tag = "1")] + pub affix_id: u32, + #[prost(uint32, tag = "10")] + pub unique_id: u32, + #[prost(bool, tag = "6")] + pub hhenfgjpfoa: bool, + #[prost(bool, tag = "9")] + pub kkeaebagmke: bool, + #[prost(uint32, repeated, tag = "4")] + pub monster_list: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Nfkdaagbmpj { + #[prost(enumeration = "Mgpocjfmkpm", tag = "10")] + pub status: i32, + #[prost(int32, tag = "15")] + pub hp: i32, + #[prost(uint32, tag = "9")] + pub avatar_id: u32, + #[prost(message, repeated, tag = "4")] + pub mhgdggnijcg: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "13")] + pub rank: u32, + #[prost(int32, tag = "11")] + pub max_hp: i32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Fekfbaocgkp { + #[prost(uint32, tag = "1")] + pub avatar_id: u32, + #[prost(bool, tag = "7")] + pub hnjfffjdgne: bool, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Oiegknhnian { + #[prost(message, optional, tag = "6")] + pub jmjdbalgmhd: ::core::option::Option, + #[prost(message, optional, tag = "8")] + pub lghocabppeh: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Makgeehgpoh { + #[prost(message, repeated, tag = "13")] + pub gmmopdhdfci: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Gkicocclpmg { + #[prost(uint32, tag = "5")] + pub buff_id: u32, + #[prost(uint32, tag = "10")] + pub cnt: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Aogeppfcpin { + #[prost(uint32, tag = "15")] + pub cnt: u32, + #[prost(message, optional, tag = "8")] + pub source: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ahnnknpfagd { + #[prost(uint32, tag = "3")] + pub jhnkmohlbpj: u32, + #[prost(message, repeated, tag = "10")] + pub lfegonpnpkg: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Cahihnjiajb { + #[prost(message, repeated, tag = "1")] + pub buff_list: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "4")] + pub mkjlcadgmle: u32, + #[prost(uint32, repeated, tag = "2")] + pub dmhedhldhmo: ::prost::alloc::vec::Vec, + #[prost(map = "uint32, uint32", tag = "15")] + pub fajjeogkoon: ::std::collections::HashMap, + #[prost(uint32, repeated, tag = "3")] + pub aekjlhjopce: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "5")] + pub mialmmljbml: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Emnmliilkke { + #[prost(uint32, tag = "6")] + pub khckfbhcfpl: u32, + #[prost(bool, tag = "10")] + pub hdbbbggmfjp: bool, + #[prost(uint32, tag = "4")] + pub cnt: u32, + #[prost(uint32, tag = "7")] + pub buff_id: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Bmkfoiflble { + #[prost(uint32, tag = "15")] + pub item_value: u32, + #[prost(uint32, tag = "9")] + pub kmdeifbpncb: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Bmmlafjknlh { + #[prost(message, repeated, tag = "2")] + pub ppibbkhlmjc: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "13")] + pub akidclefpdk: u32, + #[prost(message, repeated, tag = "5")] + pub ihjifpphkjd: ::prost::alloc::vec::Vec, + #[prost(bool, tag = "1")] + pub dipjoiaclhn: bool, + #[prost(uint32, tag = "8")] + pub meecngkldjg: u32, + #[prost(bool, tag = "3")] + pub bcfaiijflfa: bool, + #[prost(uint32, tag = "10")] + pub item_value: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Mlkoinjenmh { + #[prost(uint32, tag = "10")] + pub ndbojandnjn: u32, + #[prost(uint32, tag = "15")] + pub nodmobecpeo: u32, + #[prost(uint32, tag = "1")] + pub hpljnilnick: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Mmefnocbbbc { + #[prost(uint32, repeated, tag = "14")] + pub pmaokeoobno: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Lomjkobdjfp { + #[prost(uint32, tag = "10")] + pub finbjpffdhi: u32, + #[prost(uint32, tag = "11")] + pub unique_id: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Mblnbbodell { + #[prost(int32, tag = "3")] + pub value: i32, + #[prost(uint32, tag = "7")] + pub hapeknjboje: u32, + #[prost(uint32, tag = "4")] + pub unique_id: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Hdhapalllmk { + #[prost(message, optional, tag = "9")] + pub dhcllaaneef: ::core::option::Option, + #[prost(message, optional, tag = "1")] + pub kndmeilhkej: ::core::option::Option, + #[prost(enumeration = "Ghhdmemlkpo", tag = "11")] + pub status: i32, + #[prost(message, repeated, tag = "6")] + pub nlmhpldmcmd: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "13")] + pub fbfjmpfbchb: ::prost::alloc::vec::Vec, + #[prost(message, optional, tag = "892")] + pub jcoodgoenpm: ::core::option::Option, + #[prost(message, optional, tag = "5")] + pub cjcdndkhmnk: ::core::option::Option, + #[prost(uint32, tag = "4")] + pub pbalfienefo: u32, + #[prost(uint32, tag = "3")] + pub cbfhidmkflb: u32, + #[prost(message, optional, tag = "12")] + pub deajilaeako: ::core::option::Option, + #[prost(uint32, tag = "15")] + pub area_id: u32, + #[prost(message, optional, tag = "8")] + pub dpjegibddpc: ::core::option::Option, + #[prost(message, optional, tag = "415")] + pub dgnamoelmgk: ::core::option::Option, + #[prost(message, optional, tag = "2")] + pub jbpmibfmcpl: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Kadinmkcjbh { + #[prost(uint32, tag = "5")] + pub hbapccegnme: u32, + #[prost(message, optional, tag = "15")] + pub kiabcfhdgbk: ::core::option::Option, +} +/// Obf: JCECEDFJDGO +#[derive(proto_derive::CmdID)] +#[cmdid(5975)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct FateHandlePendingActionCsReq { + #[prost(uint32, tag = "5")] + pub hbapccegnme: u32, + #[prost(oneof = "fate_handle_pending_action_cs_req::Ejbibnpggbl", tags = "4, 13")] + pub ejbibnpggbl: ::core::option::Option< + fate_handle_pending_action_cs_req::Ejbibnpggbl, + >, +} +/// Nested message and enum types in `FateHandlePendingActionCsReq`. +pub mod fate_handle_pending_action_cs_req { + #[derive(proto_derive::CmdID)] + #[derive(Clone, Copy, PartialEq, ::prost::Oneof)] + pub enum Ejbibnpggbl { + #[prost(message, tag = "4")] + Bamnojkmbmn(super::Licmpolbcfj), + #[prost(message, tag = "13")] + Fjgmnioilok(super::Danemlljaco), + } +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Licmpolbcfj { + #[prost(uint32, tag = "11")] + pub nojipbnofep: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Danemlljaco { + #[prost(bool, tag = "3")] + pub lecdhddceia: bool, + #[prost(uint32, tag = "12")] + pub bcoleedgcpk: u32, +} +/// Obf: OIPFGJIKAIJ +#[derive(proto_derive::CmdID)] +#[cmdid(5993)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct FateHandlePendingActionScRsp { + #[prost(uint32, tag = "1")] + pub hbapccegnme: u32, + #[prost(uint32, tag = "5")] + pub retcode: u32, +} +/// Obf: LKOFMHMKFDA +#[derive(proto_derive::CmdID)] +#[cmdid(5980)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct FateSyncActionResultScNotify { + #[prost(message, repeated, tag = "15")] + pub action_result_list: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ibeiihldkan { + #[prost( + oneof = "ibeiihldkan::Item", + tags = "15, 11, 5, 8, 9, 7, 2, 12, 6, 13, 4, 3, 10, 1, 14, 304, 140, 680, 34, 205, 1968, 1517" + )] + pub item: ::core::option::Option, +} +/// Nested message and enum types in `IBEIIHLDKAN`. +pub mod ibeiihldkan { + #[derive(proto_derive::CmdID)] + #[derive(Clone, PartialEq, ::prost::Oneof)] + pub enum Item { + #[prost(message, tag = "15")] + Dpbgpfadpjb(super::Jkpnbbiibnp), + #[prost(message, tag = "11")] + Apoaajehefa(super::Cifdfldeokc), + #[prost(message, tag = "5")] + Mheagdglgcd(super::Kojppiagbdf), + #[prost(message, tag = "8")] + Ljoikifpdkd(super::Hifebjcjlcn), + #[prost(message, tag = "9")] + Jfcopcfmobc(super::Jbhpfnnfkip), + #[prost(message, tag = "7")] + Oodnpibegcf(super::Hmcapgmlpob), + #[prost(message, tag = "2")] + Ofjfladagpg(super::Ohcmfggbjcj), + #[prost(message, tag = "12")] + Clmcjcoahja(super::Lolenbeahbi), + #[prost(message, tag = "6")] + Ilpmcfeplhd(super::Igkeehmgcpa), + #[prost(message, tag = "13")] + Eabfcllkpja(super::Algenlcoggi), + #[prost(message, tag = "4")] + Gdfapbiomgp(super::Aifkhomfglf), + #[prost(message, tag = "3")] + Jgblimaookd(super::Jpbjlkjbjoa), + #[prost(message, tag = "10")] + Epejbioejgh(super::Mfdalmkkhom), + #[prost(message, tag = "1")] + Lgkfigmhhog(super::Bhihnlgpffg), + #[prost(message, tag = "14")] + Khcdhcngffd(super::Homjemilmmf), + #[prost(message, tag = "304")] + Mbifdipfmdn(super::Eglbnljhbfj), + #[prost(message, tag = "140")] + Phfpngodbld(super::Oklhbcfmbbo), + #[prost(message, tag = "680")] + Ncffkkbbbof(super::Fajofmfcjem), + #[prost(message, tag = "34")] + Indjmlocfki(super::Oagaopcjdja), + #[prost(message, tag = "205")] + Mbampalalie(super::Iaknhmegiko), + #[prost(message, tag = "1968")] + Fneffjodfji(super::Limlkcfgkfa), + #[prost(message, tag = "1517")] + Pgcpaiccckh(super::Mkgohmihggj), + } +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Hmcapgmlpob { + #[prost(uint32, tag = "9")] + pub meecngkldjg: u32, + #[prost(uint32, tag = "10")] + pub akidclefpdk: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Homjemilmmf { + #[prost(message, optional, tag = "10")] + pub deajilaeako: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Limlkcfgkfa { + #[prost(bool, tag = "1")] + pub bcfaiijflfa: bool, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Mkgohmihggj { + #[prost(uint32, repeated, tag = "4")] + pub pmaokeoobno: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Jpbjlkjbjoa { + #[prost(message, repeated, tag = "6")] + pub ijombhbcgnn: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "3")] + pub inbadcfnjif: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Mfdalmkkhom { + #[prost(message, repeated, tag = "10")] + pub bjgmjngogjg: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "3")] + pub ieakbnhfnid: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Bhihnlgpffg { + #[prost(uint32, repeated, tag = "2")] + pub fndgcjhfcdg: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "3")] + pub icfpflmbjgp: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Oklhbcfmbbo { + #[prost(map = "uint32, uint32", tag = "2")] + pub nfbglbeeibm: ::std::collections::HashMap, + #[prost(uint32, repeated, tag = "14")] + pub mcpmijacmci: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Iaknhmegiko { + #[prost(uint32, repeated, tag = "9")] + pub aekjlhjopce: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Fajofmfcjem { + #[prost(message, optional, tag = "11")] + pub gakbpipldio: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Oagaopcjdja { + #[prost(message, optional, tag = "13")] + pub fhikihfleia: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Jkpnbbiibnp { + #[prost(message, optional, tag = "14")] + pub kfgjbiljgdp: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Cifdfldeokc { + #[prost(enumeration = "Ghhdmemlkpo", tag = "1")] + pub pjgbfknjpno: i32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Kclgbmfehbe { + #[prost(uint32, tag = "10")] + pub bamedjdaomc: u32, + #[prost(uint32, tag = "15")] + pub avatar_id: u32, + #[prost(bool, tag = "7")] + pub empljnhephc: bool, + #[prost(uint32, tag = "14")] + pub cblamaccepb: u32, + #[prost(double, tag = "11")] + pub kdgccomkipo: f64, + #[prost(uint32, tag = "9")] + pub nkbmebellfj: u32, + #[prost(uint32, tag = "4")] + pub nfkmddnpgbj: u32, + #[prost(bool, tag = "12")] + pub dcabnhjmmjg: bool, + #[prost(uint32, tag = "3")] + pub bpockmfjmek: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Kojppiagbdf { + #[prost(uint32, tag = "13")] + pub bilejkhihjl: u32, + #[prost(uint32, repeated, tag = "8")] + pub dkpdehndflh: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "11")] + pub cpcnmdejili: u32, + #[prost(uint32, tag = "7")] + pub imhhilcmmgi: u32, + #[prost(uint32, tag = "2")] + pub hahjhbfaefc: u32, + #[prost(message, repeated, tag = "14")] + pub amhblhcpcoh: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "5")] + pub gmmopdhdfci: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Hifebjcjlcn { + #[prost(message, repeated, tag = "8")] + pub fmllhlkojlj: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Jbhpfnnfkip { + #[prost(uint32, tag = "9")] + pub hhjocgomeco: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ohcmfggbjcj { + #[prost(uint32, tag = "14")] + pub mkjlcadgmle: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Lolenbeahbi { + #[prost(message, optional, tag = "9")] + pub gecnffhgiah: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Igkeehmgcpa { + #[prost(uint32, tag = "15")] + pub unique_id: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Algenlcoggi { + #[prost(message, optional, tag = "12")] + pub hkfhbakhnlh: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Aifkhomfglf { + #[prost(uint32, tag = "13")] + pub unique_id: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Eglbnljhbfj { + #[prost(message, optional, tag = "3")] + pub aimgdmfaahh: ::core::option::Option, +} +/// Obf: GHPEMHBJFIG +#[derive(proto_derive::CmdID)] +#[cmdid(5953)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct FateSyncPendingActionScNotify { + #[prost(message, optional, tag = "3")] + pub kndmeilhkej: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Peajladinfk { + #[prost(oneof = "peajladinfk::Item", tags = "5, 11")] + pub item: ::core::option::Option, +} +/// Nested message and enum types in `PEAJLADINFK`. +pub mod peajladinfk { + #[derive(proto_derive::CmdID)] + #[derive(Clone, PartialEq, ::prost::Oneof)] + pub enum Item { + #[prost(message, tag = "5")] + Bamnojkmbmn(super::Cmhmblalohn), + #[prost(message, tag = "11")] + Fjgmnioilok(super::Nlfdkoiodmd), + } +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Cmhmblalohn { + #[prost(uint32, repeated, tag = "3")] + pub gpbgbmaljkp: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Idmdlokhebj { + #[prost(uint32, tag = "3")] + pub appkeeobjkc: u32, + #[prost(uint32, tag = "1")] + pub hapeknjboje: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Nlfdkoiodmd { + #[prost(message, repeated, tag = "2")] + pub ipmajojkbdb: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Mgcehcmpahe { + #[prost(uint32, repeated, tag = "8")] + pub ngpigmbniac: ::prost::alloc::vec::Vec, + #[prost(message, optional, tag = "13")] + pub jjdoackkcbj: ::core::option::Option, + #[prost(message, optional, tag = "7")] + pub mfkjdoeblim: ::core::option::Option, + #[prost(uint32, repeated, tag = "14")] + pub ehbghcgkfbh: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Dlikbegadfp { + #[prost(uint32, tag = "2")] + pub kgffjfomcjh: u32, + #[prost(message, repeated, tag = "4")] + pub ajaoolenenn: ::prost::alloc::vec::Vec, + #[prost(map = "uint32, message", tag = "10")] + pub ognklcejpha: ::std::collections::HashMap, + #[prost(message, optional, tag = "15")] + pub hcnphhbabpi: ::core::option::Option, + #[prost(message, optional, tag = "13")] + pub ehmojbccemh: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Jgogdbmplcp { + #[prost(uint32, repeated, tag = "9")] + pub fmcdgpjfeaf: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "6")] + pub fjokplkodld: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "5")] + pub exp: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Okdbfbhkakk { + #[prost(uint32, repeated, tag = "13")] + pub ceihfokenob: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "1")] + pub lbbjimamcge: u32, + #[prost(map = "uint32, uint32", tag = "14")] + pub ljlkndjcbmf: ::std::collections::HashMap, + #[prost(uint32, tag = "6")] + pub blfaanhjpad: u32, +} +/// Obf: FNNHLADLMKI +#[derive(proto_derive::CmdID)] +#[cmdid(5999)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct FateQueryCsReq {} +/// Obf: MLALAGCOKGB +#[derive(proto_derive::CmdID)] +#[cmdid(5977)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct FateQueryScRsp { + #[prost(message, optional, tag = "4")] + pub lmgkmaoicgc: ::core::option::Option, + #[prost(uint32, tag = "9")] + pub retcode: u32, + #[prost(message, optional, tag = "10")] + pub lagbgldlgcb: ::core::option::Option, +} +/// Obf: HNMHJAPPEIH +#[derive(proto_derive::CmdID)] +#[cmdid(5968)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct FateStartCsReq { + #[prost(uint32, tag = "15")] + pub area_id: u32, + #[prost(uint32, tag = "8")] + pub pbalfienefo: u32, + #[prost(message, repeated, tag = "1")] + pub avatar_list: ::prost::alloc::vec::Vec, +} +/// Obf: BNOJIGOOFMJ +#[derive(proto_derive::CmdID)] +#[cmdid(5986)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct FateStartScRsp { + #[prost(message, optional, tag = "12")] + pub lmgkmaoicgc: ::core::option::Option, + #[prost(uint32, tag = "9")] + pub retcode: u32, +} +/// Obf: JHCNOBJJLHC +#[derive(proto_derive::CmdID)] +#[cmdid(5961)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct FateBattleStartCsReq {} +/// Obf: FPDPAHAHJJA +#[derive(proto_derive::CmdID)] +#[cmdid(5987)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct FateBattleStartScRsp { + #[prost(message, optional, tag = "12")] + pub battle_info: ::core::option::Option, + #[prost(uint32, tag = "8")] + pub retcode: u32, +} +/// Obf: FFHIKHDACJG +#[derive(proto_derive::CmdID)] +#[cmdid(5967)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct FateChangeLineupCsReq { + #[prost(message, repeated, tag = "9")] + pub avatar_list: ::prost::alloc::vec::Vec, +} +/// Obf: KNGMCHHDEEH +#[derive(proto_derive::CmdID)] +#[cmdid(5989)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct FateChangeLineupScRsp { + #[prost(uint32, tag = "9")] + pub retcode: u32, +} +/// Obf: FAONFKOLKHA +#[derive(proto_derive::CmdID)] +#[cmdid(5962)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct FateShopBuyGoodsCsReq { + #[prost(uint32, tag = "15")] + pub dbankkbmemm: u32, +} +/// Obf: CGFKBGODDBH +#[derive(proto_derive::CmdID)] +#[cmdid(5960)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct FateShopBuyGoodsScRsp { + #[prost(uint32, tag = "4")] + pub dbankkbmemm: u32, + #[prost(uint32, tag = "13")] + pub retcode: u32, +} +/// Obf: LIMBIABGFML +#[derive(proto_derive::CmdID)] +#[cmdid(5995)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct FateShopSellBuffCsReq { + #[prost(uint32, tag = "10")] + pub olpemmhkjpn: u32, + #[prost(uint32, tag = "7")] + pub imajoanakdc: u32, + #[prost(bool, tag = "12")] + pub pigdohejlmj: bool, +} +/// Obf: KBMEDCKINPF +#[derive(proto_derive::CmdID)] +#[cmdid(5956)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct FateShopSellBuffScRsp { + #[prost(uint32, tag = "4")] + pub imajoanakdc: u32, + #[prost(uint32, tag = "11")] + pub olpemmhkjpn: u32, + #[prost(bool, tag = "10")] + pub pigdohejlmj: bool, + #[prost(uint32, tag = "12")] + pub retcode: u32, +} +/// Obf: KOKPDLAHMGD +#[derive(proto_derive::CmdID)] +#[cmdid(5978)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct FateShopRefreshGoodsCsReq {} +/// Obf: IMEKJPIELCO +#[derive(proto_derive::CmdID)] +#[cmdid(5969)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct FateShopRefreshGoodsScRsp { + #[prost(bool, tag = "2")] + pub dipjoiaclhn: bool, + #[prost(message, repeated, tag = "7")] + pub ppibbkhlmjc: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "10")] + pub retcode: u32, +} +/// Obf: ILAHJPGGHJK +#[derive(proto_derive::CmdID)] +#[cmdid(5976)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct FateShopLockGoodsCsReq { + #[prost(bool, tag = "14")] + pub is_protected: bool, +} +/// Obf: MCGGPPKDBKL +#[derive(proto_derive::CmdID)] +#[cmdid(5984)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct FateShopLockGoodsScRsp { + #[prost(bool, tag = "8")] + pub is_protected: bool, + #[prost(uint32, tag = "14")] + pub retcode: u32, +} +/// Obf: KPOCKEFCLNC +#[derive(proto_derive::CmdID)] +#[cmdid(5996)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct FateShopLeaveCsReq {} +/// Obf: EKGELMFKDED +#[derive(proto_derive::CmdID)] +#[cmdid(5972)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct FateShopLeaveScRsp { + #[prost(uint32, tag = "4")] + pub retcode: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Fbfbmdepcbp { + #[prost(message, repeated, tag = "9")] + pub fmllhlkojlj: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Coieihnkcdk { + #[prost(message, optional, tag = "12")] + pub source: ::core::option::Option, + #[prost(map = "uint32, double", tag = "4")] + pub dfgdjmpmblf: ::std::collections::HashMap, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Pnnaeeakhof { + #[prost(message, repeated, tag = "2")] + pub jjboohnmpnb: ::prost::alloc::vec::Vec, +} +/// Obf: JHBCCJJBHPJ +#[derive(proto_derive::CmdID)] +#[cmdid(5963)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct FateSettleCsReq {} +/// Obf: HJBKPEJMPJE +#[derive(proto_derive::CmdID)] +#[cmdid(5990)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct FateSettleScRsp { + #[prost(uint32, tag = "5")] + pub retcode: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Bhmcfkhilfo { + #[prost(bool, tag = "11")] + pub chnpdajeipk: bool, + #[prost(uint32, tag = "9")] + pub id: u32, + #[prost(enumeration = "AvatarType", tag = "10")] + pub avatar_type: i32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ckfknbmhmhm { + #[prost(uint32, tag = "10")] + pub pbalfienefo: u32, + #[prost(map = "uint32, uint32", tag = "4")] + pub chcbopflici: ::std::collections::HashMap, + #[prost(uint32, tag = "3")] + pub obndmkngojj: u32, + #[prost(uint32, tag = "14")] + pub ndbojandnjn: u32, + #[prost(uint32, tag = "9")] + pub acjcphifmln: u32, + #[prost(uint32, repeated, tag = "7")] + pub nlmhpldmcmd: ::prost::alloc::vec::Vec, + #[prost(map = "uint32, uint32", tag = "820")] + pub gibchcagian: ::std::collections::HashMap, + #[prost(uint32, tag = "11")] + pub cbfhidmkflb: u32, + #[prost(uint32, repeated, tag = "12")] + pub fbfjmpfbchb: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "15")] + pub nodmobecpeo: u32, + #[prost(message, repeated, tag = "1")] + pub avatar_list: ::prost::alloc::vec::Vec, + #[prost(map = "uint32, uint32", tag = "5")] + pub eaefkgokfkh: ::std::collections::HashMap, + #[prost(uint32, tag = "13")] + pub hpljnilnick: u32, +} +/// Obf: KCOKPEBPOLL +#[derive(proto_derive::CmdID)] +#[cmdid(5974)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct FateSettleScNotify { + #[prost(message, optional, tag = "10")] + pub okecgddembl: ::core::option::Option, + #[prost(uint32, tag = "4")] + pub score: u32, + #[prost(message, optional, tag = "6")] + pub reward: ::core::option::Option, +} +/// Obf: DBPIEADFIEJ +#[derive(proto_derive::CmdID)] +#[cmdid(5964)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct FateTakeExpRewardCsReq {} +/// Obf: FBGCAPAJHBD +#[derive(proto_derive::CmdID)] +#[cmdid(5951)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct FateTakeExpRewardScRsp { + #[prost(uint32, repeated, tag = "6")] + pub jgfbcdoicjf: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "4")] + pub obgoboelefm: ::prost::alloc::vec::Vec, + #[prost(message, optional, tag = "1")] + pub reward: ::core::option::Option, + #[prost(uint32, tag = "2")] + pub retcode: u32, +} +/// Obf: JCOLHDMLMGH +#[derive(proto_derive::CmdID)] +#[cmdid(5970)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct FateDebugAutoPlayCsReq { + #[prost(uint32, tag = "4")] + pub area_id: u32, + #[prost(message, repeated, tag = "15")] + pub avatar_list: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "13")] + pub pbalfienefo: u32, + #[prost(uint32, tag = "7")] + pub falfkmgcdcm: u32, +} +/// Obf: OMIHDLIHEIK +#[derive(proto_derive::CmdID)] +#[cmdid(5966)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct FateDebugAutoPlayScRsp { + #[prost(uint32, tag = "11")] + pub retcode: u32, +} +/// Obf: JAEMODLEJGN +#[derive(proto_derive::CmdID)] +#[cmdid(5998)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct FateDebugAutoPlayFinishScNotify { + #[prost(bool, tag = "10")] + pub ddbcbinmfbe: bool, + #[prost(message, optional, tag = "9")] + pub okecgddembl: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Okcndieklpm { - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "4")] pub nlpklpccjpl: u32, - #[prost(uint32, tag = "12")] - pub jbolaafdkan: u32, - #[prost(enumeration = "Pmnfdjcllgb", tag = "8")] + #[prost(enumeration = "Pmnfdjcllgb", tag = "2")] pub plikadkklgd: i32, + #[prost(uint32, tag = "8")] + pub jbolaafdkan: u32, } /// Obf: OIMCKJDFFKE #[derive(proto_derive::CmdID)] -#[cmdid(7157)] +#[cmdid(7153)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetFeverTimeActivityDataCsReq {} /// Obf: FGENJLKFAAN #[derive(proto_derive::CmdID)] -#[cmdid(7151)] +#[cmdid(7156)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetFeverTimeActivityDataScRsp { - #[prost(message, repeated, tag = "4")] - pub caaejfijidj: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "7")] pub retcode: u32, + #[prost(message, repeated, tag = "10")] + pub caaejfijidj: ::prost::alloc::vec::Vec, } /// Obf: KGMMHKFPJMG #[derive(proto_derive::CmdID)] -#[cmdid(7154)] +#[cmdid(7158)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct FeverTimeActivityBattleEndScNotify { - #[prost(uint32, tag = "12")] - pub fhfmfmlllgd: u32, - #[prost(uint32, tag = "2")] - pub id: u32, - #[prost(enumeration = "Pmnfdjcllgb", tag = "6")] + #[prost(enumeration = "Pmnfdjcllgb", tag = "4")] pub lfjkkfgpkdm: i32, + #[prost(uint32, tag = "10")] + pub fhfmfmlllgd: u32, #[prost(uint32, tag = "7")] + pub id: u32, + #[prost(uint32, tag = "11")] pub hoehiobiiej: u32, } /// Obf: IHBFKMBMBEE #[derive(proto_derive::CmdID)] -#[cmdid(7152)] +#[cmdid(7155)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct EnterFeverTimeActivityStageCsReq { - #[prost(uint32, tag = "2")] - pub ffinmbacahh: u32, - #[prost(uint32, tag = "5")] - pub id: u32, - #[prost(message, repeated, tag = "6")] + #[prost(uint32, tag = "8")] + pub gcjeicifjgi: u32, + #[prost(message, repeated, tag = "13")] pub avatar_list: ::prost::alloc::vec::Vec, #[prost(uint32, tag = "14")] - pub gcjeicifjgi: u32, + pub id: u32, + #[prost(uint32, tag = "3")] + pub ffinmbacahh: u32, } /// Obf: BJAHJOGMEND #[derive(proto_derive::CmdID)] -#[cmdid(7155)] +#[cmdid(7159)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct EnterFeverTimeActivityStageScRsp { - #[prost(uint32, tag = "8")] - pub retcode: u32, - #[prost(message, optional, tag = "7")] - pub battle_info: ::core::option::Option, - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "11")] pub id: u32, + #[prost(message, optional, tag = "15")] + pub battle_info: ::core::option::Option, + #[prost(uint32, tag = "6")] + pub retcode: u32, } /// Obf: IOENCAFKENL #[derive(proto_derive::CmdID)] -#[cmdid(30095)] +#[cmdid(30020)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct FightEnterCsReq { - #[prost(uint32, tag = "15")] - pub fgojlpaejec: u32, + #[prost(uint32, tag = "9")] + pub icmfpnpijjf: u32, + #[prost(uint32, tag = "10")] + pub client_res_version: u32, + #[prost(uint32, tag = "12")] + pub mkiniofgiag: u32, #[prost(uint32, tag = "8")] - pub uid: u32, + pub fgojlpaejec: u32, + #[prost(uint32, tag = "4")] + pub platform_type: u32, #[prost(string, tag = "3")] pub aokcmmpfgbc: ::prost::alloc::string::String, - #[prost(uint32, tag = "14")] - pub mkiniofgiag: u32, - #[prost(uint32, tag = "6")] - pub icmfpnpijjf: u32, - #[prost(uint32, tag = "9")] - pub client_res_version: u32, - #[prost(uint64, tag = "5")] + #[prost(uint64, tag = "13")] pub kpkdnmdajgl: u64, - #[prost(uint32, tag = "2")] - pub platform_type: u32, + #[prost(uint32, tag = "5")] + pub uid: u32, } /// Obf: AFCPBFPGGEI #[derive(proto_derive::CmdID)] -#[cmdid(30032)] +#[cmdid(30091)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct FightEnterScRsp { - #[prost(uint64, tag = "11")] + #[prost(uint64, tag = "5")] + pub server_timestamp_ms: u64, + #[prost(uint64, tag = "8")] pub secret_key_seed: u64, - #[prost(bool, tag = "5")] + #[prost(uint32, tag = "3")] + pub mkiniofgiag: u32, + #[prost(bool, tag = "1")] pub jlpkeobincp: bool, #[prost(uint32, tag = "4")] pub retcode: u32, - #[prost(uint32, tag = "13")] - pub mkiniofgiag: u32, - #[prost(uint64, tag = "15")] - pub server_timestamp_ms: u64, } /// Obf: NBMHOFJAPJO #[derive(proto_derive::CmdID)] -#[cmdid(30031)] +#[cmdid(30067)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct FightLeaveScNotify { - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "10")] pub cagjmmmfdli: u32, } /// Obf: FKGGCDCILNB #[derive(proto_derive::CmdID)] -#[cmdid(30040)] +#[cmdid(30039)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct FightKickOutScNotify { - #[prost(enumeration = "Dkiifbicieg", tag = "15")] + #[prost(enumeration = "Dkiifbicieg", tag = "14")] pub mglldoifgnd: i32, } /// Obf: EJLIFAJIAEF #[derive(proto_derive::CmdID)] -#[cmdid(30076)] +#[cmdid(30027)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct FightHeartBeatCsReq { - #[prost(uint64, tag = "3")] + #[prost(uint64, tag = "7")] pub client_time_ms: u64, } /// Obf: FOKGAFGKBHJ #[derive(proto_derive::CmdID)] -#[cmdid(30048)] +#[cmdid(30021)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct FightHeartBeatScRsp { - #[prost(uint64, tag = "9")] - pub client_time_ms: u64, - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "15")] pub retcode: u32, - #[prost(uint64, tag = "8")] + #[prost(uint64, tag = "10")] + pub client_time_ms: u64, + #[prost(uint64, tag = "7")] pub server_time_ms: u64, } /// Obf: GNFGCANGLHJ #[derive(proto_derive::CmdID)] -#[cmdid(30071)] +#[cmdid(30070)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct FightSessionStopScNotify { - #[prost(message, optional, tag = "11")] + #[prost(message, optional, tag = "8")] pub pfffjngnpom: ::core::option::Option, } /// Obf: KCPBMCNDJKE #[derive(proto_derive::CmdID)] -#[cmdid(30052)] +#[cmdid(30059)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct FightGeneralCsReq { - #[prost(uint32, tag = "9")] - pub jjcmfkjhcfa: u32, - #[prost(bytes = "vec", tag = "4")] + #[prost(bytes = "vec", tag = "2")] pub mbbdnlncejd: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "5")] + pub jjcmfkjhcfa: u32, } /// Obf: EKHLHJOIEMP #[derive(proto_derive::CmdID)] -#[cmdid(30022)] +#[cmdid(30054)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct FightGeneralScRsp { - #[prost(bytes = "vec", tag = "2")] + #[prost(bytes = "vec", tag = "15")] pub mbbdnlncejd: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "1")] pub retcode: u32, - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "11")] pub jjcmfkjhcfa: u32, } /// Obf: GCBMBGNKHGF #[derive(proto_derive::CmdID)] -#[cmdid(30056)] +#[cmdid(30077)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct FightGeneralScNotify { - #[prost(uint32, tag = "15")] - pub jjcmfkjhcfa: u32, - #[prost(bytes = "vec", tag = "11")] + #[prost(bytes = "vec", tag = "6")] pub mbbdnlncejd: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "13")] + pub jjcmfkjhcfa: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Jhpknhhnapp { - #[prost(uint32, tag = "13")] - pub elinmpkbefl: u32, - #[prost(message, repeated, tag = "14")] - pub ahmdobiceca: ::prost::alloc::vec::Vec, - #[prost(bytes = "vec", tag = "8")] - pub lbgdlhkeekc: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "3")] + #[prost(uint32, repeated, tag = "1")] pub jblecmapfdc: ::prost::alloc::vec::Vec, - #[prost(bytes = "vec", tag = "4")] + #[prost(uint32, tag = "8")] + pub elinmpkbefl: u32, + #[prost(bytes = "vec", tag = "15")] + pub lbgdlhkeekc: ::prost::alloc::vec::Vec, + /// repeated GCBMBGNKHGF AHMDOBICECA = 4; + #[prost(bytes = "vec", tag = "14")] pub kbjfonagbhk: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Aidoadpoofg { - #[prost(message, repeated, tag = "13")] + #[prost(message, repeated, tag = "11")] pub lipjdjpmokb: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct FightActivityGroup { - #[prost(uint32, repeated, tag = "10")] - pub taken_difficulty_level_reward_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "9")] - pub group_id: u32, - #[prost(uint32, tag = "14")] - pub passed_max_difficulty_level: u32, - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "13")] pub endless_max_wave: u32, + #[prost(uint32, repeated, tag = "9")] + pub taken_difficulty_level_reward_list: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "10")] + pub group_id: u32, + #[prost(uint32, tag = "6")] + pub passed_max_difficulty_level: u32, } /// Obf: NGCDAFKKFPC #[derive(proto_derive::CmdID)] -#[cmdid(3695)] +#[cmdid(3620)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetFightActivityDataCsReq {} /// Obf: HCKIMJDGKIG #[derive(proto_derive::CmdID)] -#[cmdid(3632)] +#[cmdid(3691)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetFightActivityDataScRsp { - #[prost(message, repeated, tag = "2")] - pub groups: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "3")] pub world_level: u32, - #[prost(bool, tag = "14")] + #[prost(message, repeated, tag = "7")] + pub groups: ::prost::alloc::vec::Vec, + #[prost(bool, tag = "6")] pub kaiompfbgkl: bool, - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "10")] pub retcode: u32, - #[prost(map = "uint32, uint32", tag = "12")] + #[prost(map = "uint32, uint32", tag = "9")] pub dgnfcmdjopa: ::std::collections::HashMap, } /// Obf: OBIEGBGBACI #[derive(proto_derive::CmdID)] -#[cmdid(3631)] +#[cmdid(3667)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct FightActivityDataChangeScNotify { - #[prost(map = "uint32, uint32", tag = "9")] - pub dgnfcmdjopa: ::std::collections::HashMap, - #[prost(message, repeated, tag = "7")] + #[prost(message, repeated, tag = "1")] pub groups: ::prost::alloc::vec::Vec, + #[prost(map = "uint32, uint32", tag = "3")] + pub dgnfcmdjopa: ::std::collections::HashMap, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Npedhhcklia { - #[prost(enumeration = "AvatarType", tag = "12")] + #[prost(enumeration = "AvatarType", tag = "3")] pub avatar_type: i32, - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "11")] pub avatar_id: u32, } /// Obf: GGFJFHPNCEJ #[derive(proto_derive::CmdID)] -#[cmdid(3640)] +#[cmdid(3639)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct EnterFightActivityStageCsReq { - #[prost(uint32, tag = "1")] - pub nedfibonlkb: u32, - #[prost(uint32, repeated, tag = "13")] - pub avatar_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "3")] - pub group_id: u32, - #[prost(uint32, repeated, tag = "5")] + #[prost(uint32, repeated, tag = "8")] pub item_list: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "8")] + #[prost(uint32, repeated, tag = "5")] + pub avatar_list: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "10")] + pub difficulty: u32, + #[prost(message, repeated, tag = "11")] pub fopnlgbgagh: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "9")] + pub group_id: u32, } /// Obf: HPKCEGKMPOI #[derive(proto_derive::CmdID)] -#[cmdid(3676)] +#[cmdid(3627)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct EnterFightActivityStageScRsp { - #[prost(uint32, tag = "5")] - pub retcode: u32, - #[prost(uint32, tag = "12")] - pub group_id: u32, - #[prost(message, optional, tag = "3")] + #[prost(message, optional, tag = "5")] pub battle_info: ::core::option::Option, - #[prost(uint32, tag = "11")] - pub nedfibonlkb: u32, + #[prost(uint32, tag = "15")] + pub retcode: u32, + #[prost(uint32, tag = "10")] + pub group_id: u32, + #[prost(uint32, tag = "8")] + pub difficulty: u32, } /// Obf: PLLLPGHMPNF #[derive(proto_derive::CmdID)] -#[cmdid(3648)] +#[cmdid(3621)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TakeFightActivityRewardCsReq { - #[prost(uint32, tag = "2")] - pub nedfibonlkb: u32, - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "9")] + pub difficulty: u32, + #[prost(uint32, tag = "3")] pub group_id: u32, } /// Obf: EJHMPNBEJLG #[derive(proto_derive::CmdID)] -#[cmdid(3671)] +#[cmdid(3670)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TakeFightActivityRewardScRsp { + #[prost(uint32, tag = "8")] + pub difficulty: u32, #[prost(uint32, tag = "6")] pub retcode: u32, - #[prost(uint32, tag = "9")] - pub nedfibonlkb: u32, #[prost(message, optional, tag = "2")] pub reward: ::core::option::Option, - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "5")] pub group_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Iklnilkpena { - #[prost(uint32, tag = "10")] - pub jbolaafdkan: u32, - #[prost(uint32, tag = "13")] - pub challenge_id: u32, - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "1")] pub aeieojgcmmo: u32, - #[prost(enumeration = "Hgdapjpkffb", tag = "3")] + #[prost(enumeration = "Hgdapjpkffb", tag = "10")] pub plikadkklgd: i32, + #[prost(uint32, tag = "14")] + pub jbolaafdkan: u32, + #[prost(uint32, tag = "12")] + pub challenge_id: u32, } /// Obf: OPIDGKKKBFP #[derive(proto_derive::CmdID)] -#[cmdid(7254)] +#[cmdid(7299)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetFightFestDataCsReq {} /// Obf: CKNPNLGPAPP #[derive(proto_derive::CmdID)] -#[cmdid(7296)] +#[cmdid(7277)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetFightFestDataScRsp { - #[prost(uint32, tag = "10")] - pub item_value: u32, - #[prost(uint32, tag = "14")] - pub retcode: u32, - #[prost(message, repeated, tag = "15")] - pub challenge_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "7")] - pub score: u32, - #[prost(uint32, repeated, tag = "12")] + #[prost(uint32, repeated, tag = "4")] pub mfgonhjgipp: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "11")] + pub challenge_list: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "12")] + pub item_value: u32, + #[prost(uint32, tag = "3")] + pub score: u32, + #[prost(uint32, tag = "10")] + pub retcode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Afodmejodlg { - #[prost(enumeration = "AvatarType", tag = "4")] + #[prost(enumeration = "AvatarType", tag = "5")] pub avatar_type: i32, - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "12")] pub id: u32, } /// Obf: IEGCIHAEMFK #[derive(proto_derive::CmdID)] -#[cmdid(7252)] +#[cmdid(7268)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct StartFightFestCsReq { - #[prost(uint32, tag = "10")] - pub id: u32, #[prost(uint32, repeated, tag = "15")] pub mfgonhjgipp: ::prost::alloc::vec::Vec, #[prost(uint32, tag = "8")] - pub event_id: u32, - #[prost(enumeration = "Aploagdibki", tag = "13")] - pub slot: i32, - #[prost(message, repeated, tag = "5")] - pub avatar_list: ::prost::alloc::vec::Vec, -} -/// Obf: JDJAJJGBGHA -#[derive(proto_derive::CmdID)] -#[cmdid(7287)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct StartFightFestScRsp { - #[prost(uint32, tag = "7")] - pub event_id: u32, - #[prost(uint32, tag = "9")] - pub retcode: u32, - #[prost(message, optional, tag = "11")] - pub battle_info: ::core::option::Option, - #[prost(uint32, tag = "10")] pub id: u32, + #[prost(uint32, tag = "6")] + pub event_id: u32, + #[prost(message, repeated, tag = "9")] + pub avatar_list: ::prost::alloc::vec::Vec, #[prost(enumeration = "Aploagdibki", tag = "1")] pub slot: i32, } -/// Obf: EEGLBGDIILH +/// Obf: JDJAJJGBGHA #[derive(proto_derive::CmdID)] #[cmdid(7286)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct StartFightFestScRsp { + #[prost(enumeration = "Aploagdibki", tag = "14")] + pub slot: i32, + #[prost(message, optional, tag = "11")] + pub battle_info: ::core::option::Option, + #[prost(uint32, tag = "3")] + pub id: u32, + #[prost(uint32, tag = "2")] + pub event_id: u32, + #[prost(uint32, tag = "6")] + pub retcode: u32, +} +/// Obf: EEGLBGDIILH +#[derive(proto_derive::CmdID)] +#[cmdid(7261)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct FightFestScoreUpdateNotify { + #[prost(uint32, tag = "8")] + pub score: u32, #[prost(uint32, tag = "3")] pub gnpkpljlabm: u32, - #[prost(uint32, tag = "2")] - pub score: u32, } /// Obf: DKGGEJBDFBO #[derive(proto_derive::CmdID)] -#[cmdid(7267)] +#[cmdid(7287)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct FightFestUnlockSkillNotify { - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "13")] pub ejjehjmmbgj: u32, } /// Obf: EMBLJKGDDMB #[derive(proto_derive::CmdID)] -#[cmdid(7277)] +#[cmdid(7267)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct FightFestUpdateChallengeRecordNotify { - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "3")] pub hoehiobiiej: u32, #[prost(enumeration = "Hgdapjpkffb", tag = "9")] pub fkpepbmjhkn: i32, - #[prost(enumeration = "Hgdapjpkffb", tag = "11")] - pub rank: i32, - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "6")] pub jbolaafdkan: u32, - #[prost(uint32, tag = "2")] + #[prost(enumeration = "Hgdapjpkffb", tag = "14")] + pub rank: i32, + #[prost(uint32, tag = "5")] pub challenge_id: u32, } /// Obf: ODLIIOLEIAK #[derive(proto_derive::CmdID)] -#[cmdid(7265)] +#[cmdid(7289)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct FightFestUpdateCoinNotify { - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "5")] pub item_value: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Kpbfckneeia { - #[prost(enumeration = "Ffjppngglff", tag = "15")] + #[prost(enumeration = "Ffjppngglff", tag = "14")] pub oilpchbijno: i32, - #[prost(int32, tag = "9")] - pub blgnmalbolo: i32, #[prost(uint64, tag = "5")] pub ldnbeidjbhi: u64, + #[prost(int32, tag = "2")] + pub blgnmalbolo: i32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Gldhepjpmfm { #[prost(message, repeated, tag = "10")] - pub flbmhlphfnd: ::prost::alloc::vec::Vec, + pub action_result_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Pfgaiebghcp { - #[prost(float, tag = "10")] + #[prost(float, tag = "4")] pub x: f32, - #[prost(float, tag = "6")] + #[prost(float, tag = "9")] pub y: f32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Jejdmmbdalp { - #[prost(message, optional, tag = "4")] - pub kbcejinfnnj: ::core::option::Option, - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "6")] pub item_id: u32, + #[prost(message, optional, tag = "1")] + pub kbcejinfnnj: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Akokicdpfmp { - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "2")] pub ahehkcildfa: u32, - #[prost(oneof = "akokicdpfmp::Pefgbhjablk", tags = "1365, 1070, 1206, 742, 1622")] + #[prost(oneof = "akokicdpfmp::Pefgbhjablk", tags = "775, 144, 307, 902, 653")] pub pefgbhjablk: ::core::option::Option, } /// Nested message and enum types in `AKOKICDPFMP`. @@ -9319,554 +10371,736 @@ pub mod akokicdpfmp { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] pub enum Pefgbhjablk { - #[prost(message, tag = "1365")] + #[prost(message, tag = "775")] Lgpiemdlhjm(super::Lbaogibpjop), - #[prost(message, tag = "1070")] + #[prost(message, tag = "144")] Phmcjejidja(super::Gldnbpfcnhd), - #[prost(message, tag = "1206")] + #[prost(message, tag = "307")] FinishInfo(super::Icaooppmjdj), - #[prost(message, tag = "742")] + #[prost(message, tag = "902")] Mejdmjikimo(super::Maogfdkdckm), - #[prost(message, tag = "1622")] + #[prost(message, tag = "653")] Jhfgdijpfcg(super::Gockgigbdcg), } } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Gemebebmiah { - #[prost(message, repeated, tag = "9")] + #[prost(message, repeated, tag = "5")] pub lndigheihln: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Lbaogibpjop { - #[prost(enumeration = "Jomkpegefmp", tag = "7")] - pub ceifkjieaje: i32, - #[prost(bool, tag = "9")] - pub likhclpmhjk: bool, - #[prost(enumeration = "Jomkpegefmp", tag = "6")] - pub hjefolkgaei: i32, - #[prost(uint32, repeated, tag = "14")] - pub pcmgagahblk: ::prost::alloc::vec::Vec, #[prost(uint32, tag = "8")] - pub moddklndamk: u32, - #[prost(message, repeated, tag = "582")] - pub lipjdjpmokb: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "15")] - pub khcmofpfoak: u32, - #[prost(uint32, repeated, tag = "12")] - pub jjefbpkpkbk: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "10")] - pub nlibkabfgcc: u32, - #[prost(uint32, tag = "11")] - pub bbdoplekiac: u32, - #[prost(uint32, tag = "13")] - pub acjcphifmln: u32, - #[prost(bool, tag = "5")] - pub jikeigbcabb: bool, - #[prost(uint32, tag = "1")] - pub pbfaiojjgnl: u32, - #[prost(uint32, tag = "4")] pub jijhaaihncn: u32, - #[prost(uint32, tag = "3")] - pub eigabckednp: u32, + #[prost(enumeration = "Jomkpegefmp", tag = "3")] + pub hjefolkgaei: i32, + #[prost(bool, tag = "11")] + pub jikeigbcabb: bool, #[prost(uint32, tag = "2")] + pub pbfaiojjgnl: u32, + #[prost(uint32, tag = "9")] + pub eigabckednp: u32, + #[prost(uint32, tag = "12")] + pub bbdoplekiac: u32, + #[prost(uint32, tag = "7")] + pub moddklndamk: u32, + #[prost(uint32, tag = "15")] + pub marble_level_id: u32, + #[prost(enumeration = "Jomkpegefmp", tag = "14")] + pub ceifkjieaje: i32, + #[prost(uint32, repeated, tag = "4")] + pub pcmgagahblk: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "13")] + pub jjefbpkpkbk: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "2047")] + pub lipjdjpmokb: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "6")] + pub khcmofpfoak: u32, + #[prost(uint32, tag = "5")] pub dkpnenbhelh: u32, + #[prost(uint32, tag = "10")] + pub acjcphifmln: u32, + #[prost(bool, tag = "1")] + pub likhclpmhjk: bool, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Gkloaldhnef { - #[prost(uint32, tag = "6")] - pub item_id: u32, - #[prost(uint32, tag = "2")] - pub jojahiafnlk: u32, - #[prost(int32, tag = "9")] - pub total_damage: i32, #[prost(int32, tag = "11")] - pub jphednecagd: i32, - #[prost(int32, tag = "1")] + pub total_damage: i32, + #[prost(uint32, tag = "10")] + pub item_id: u32, + #[prost(int32, tag = "12")] pub falbkimmpih: i32, + #[prost(uint32, tag = "13")] + pub jojahiafnlk: u32, + #[prost(int32, tag = "4")] + pub jphednecagd: i32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Icaooppmjdj { - #[prost(bool, tag = "6")] - pub is_win: bool, - #[prost(enumeration = "Eeibhjpnjcf", tag = "14")] - pub kjpmohfiilo: i32, - #[prost(bool, tag = "13")] - pub djeeeabmddk: bool, - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "12")] pub blkfgajhmlk: u32, - #[prost(int32, tag = "15")] + #[prost(int32, tag = "9")] pub clbnhpeabfk: i32, - #[prost(uint32, tag = "10")] - pub chllmfjgppa: u32, - #[prost(message, repeated, tag = "3")] + #[prost(message, repeated, tag = "14")] pub bpipobhcmfd: ::prost::alloc::vec::Vec, + #[prost(enumeration = "Eeibhjpnjcf", tag = "11")] + pub kjpmohfiilo: i32, + #[prost(uint32, tag = "13")] + pub chllmfjgppa: u32, + #[prost(bool, tag = "6")] + pub djeeeabmddk: bool, + #[prost(bool, tag = "4")] + pub is_win: bool, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Dcdniajcehn { - #[prost(int32, tag = "577")] - pub hdblelebkho: i32, - #[prost(uint32, tag = "439")] - pub buff_id: u32, - #[prost(float, tag = "6")] - pub time: f32, - #[prost(enumeration = "Lkkajcaciji", tag = "12")] - pub kamihnejmfg: i32, - #[prost(uint32, tag = "14")] - pub cipiclllijh: u32, - #[prost(uint32, tag = "777")] - pub jlcikblnenh: u32, - #[prost(uint32, tag = "1401")] - pub jijhaaihncn: u32, - #[prost(uint32, tag = "506")] + #[prost(uint32, tag = "7")] + pub jljigeplpmh: u32, + #[prost(uint32, tag = "1511")] + pub level: u32, + #[prost(uint32, tag = "10")] + pub skill_id: u32, + #[prost(int32, tag = "11")] + pub max_hp: i32, + #[prost(float, tag = "947")] + pub mnbemgnnfod: f32, + #[prost(uint32, tag = "1354")] pub dkpnenbhelh: u32, - #[prost(uint32, tag = "1884")] - pub cmmbbhhpmko: u32, + #[prost(enumeration = "Lkkajcaciji", tag = "1")] + pub kamihnejmfg: i32, + #[prost(uint32, tag = "437")] + pub jlcikblnenh: u32, + #[prost(message, optional, tag = "4")] + pub fdndmhjohmo: ::core::option::Option, + #[prost(enumeration = "Fippklcoegj", tag = "33")] + pub cclmfabdena: i32, + #[prost(float, tag = "1557")] + pub ggbfkenahoe: f32, #[prost(enumeration = "Pajnhiagodd", tag = "3")] pub djoadecjpob: i32, - #[prost(float, tag = "673")] - pub mnbemgnnfod: f32, - #[prost(int32, tag = "11")] + #[prost(float, tag = "12")] + pub time: f32, + #[prost(int32, tag = "8")] pub attack: i32, + #[prost(bool, tag = "1056")] + pub plfkoccdbag: bool, + #[prost(uint32, tag = "616")] + pub dhelbcimlga: u32, + #[prost(bool, tag = "1316")] + pub nbkelchilgg: bool, + #[prost(uint32, tag = "346")] + pub jijhaaihncn: u32, + #[prost(message, optional, tag = "13")] + pub iaaggmkgodc: ::core::option::Option, + #[prost(message, optional, tag = "9")] + pub lkefolcgfgd: ::core::option::Option, + #[prost(message, optional, tag = "2")] + pub godnaalnokl: ::core::option::Option, + #[prost(uint32, tag = "574")] + pub idabofpkokn: u32, + #[prost(bool, tag = "880")] + pub dmbbmffejgi: bool, + #[prost(uint32, tag = "196")] + pub pnldlmnkjmk: u32, + #[prost(uint32, tag = "14")] + pub cipiclllijh: u32, + #[prost(uint32, tag = "1783")] + pub buff_id: u32, #[prost(message, optional, tag = "15")] pub fnihjjjgoee: ::core::option::Option, - #[prost(uint32, tag = "1253")] - pub idabofpkokn: u32, - #[prost(uint32, tag = "1")] - pub jljigeplpmh: u32, - #[prost(message, optional, tag = "2")] - pub iaaggmkgodc: ::core::option::Option, - #[prost(uint32, tag = "862")] - pub level: u32, - #[prost(bool, tag = "2005")] - pub plfkoccdbag: bool, - #[prost(enumeration = "Fippklcoegj", tag = "1417")] - pub cclmfabdena: i32, - #[prost(message, optional, tag = "5")] - pub godnaalnokl: ::core::option::Option, - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "6")] pub id: u32, - #[prost(message, optional, tag = "7")] - pub lkefolcgfgd: ::core::option::Option, - #[prost(bool, tag = "399")] - pub nbkelchilgg: bool, - #[prost(int32, tag = "8")] + #[prost(uint32, tag = "1107")] + pub cmmbbhhpmko: u32, + #[prost(int32, tag = "1736")] + pub hdblelebkho: i32, + #[prost(int32, tag = "5")] pub hp: i32, - #[prost(uint32, tag = "9")] - pub skill_id: u32, - #[prost(int32, tag = "4")] - pub max_hp: i32, - #[prost(message, optional, tag = "13")] - pub fdndmhjohmo: ::core::option::Option, - #[prost(uint32, tag = "1226")] - pub pnldlmnkjmk: u32, - #[prost(float, tag = "907")] - pub ggbfkenahoe: f32, - #[prost(bool, tag = "1846")] - pub dmbbmffejgi: bool, - #[prost(uint32, tag = "929")] - pub dhelbcimlga: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Gldnbpfcnhd { - #[prost(bool, tag = "13")] - pub pmanbplflkl: bool, - #[prost(message, repeated, tag = "302")] - pub ainlmgdnhib: ::prost::alloc::vec::Vec, - #[prost(bool, tag = "333")] - pub omkkpgfjhfe: bool, - #[prost(uint32, tag = "2")] - pub ehcjcilcnop: u32, - #[prost(uint32, tag = "5")] - pub hmffhgbkogl: u32, - #[prost(message, repeated, tag = "12")] - pub hlieamplipp: ::prost::alloc::vec::Vec, - #[prost(enumeration = "Impkpkamiaf", tag = "11")] - pub dndjkdfhepe: i32, - #[prost(float, tag = "3")] - pub eefcbbkkflc: f32, - #[prost(uint32, repeated, tag = "15")] - pub jldcflkcbld: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "1")] - pub hbapccegnme: u32, - #[prost(uint32, tag = "10")] - pub dhelbcimlga: u32, - #[prost(uint32, tag = "14")] - pub kjgdknjfcpg: u32, - #[prost(uint32, tag = "1095")] - pub nkhpckegpcl: u32, - #[prost(uint32, tag = "1753")] - pub fombhjkdhgo: u32, - #[prost(uint32, repeated, tag = "8")] - pub knchehiijnn: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "9")] - pub fmkdifnjajc: u32, - #[prost(uint32, tag = "88")] - pub iepgclgkheg: u32, - #[prost(uint32, tag = "7")] - pub emote: u32, - #[prost(uint32, repeated, tag = "4")] - pub dpooapkpchf: ::prost::alloc::vec::Vec, - #[prost(bool, tag = "6")] + #[prost(bool, tag = "5")] pub fjkbaimdpep: bool, + #[prost(message, repeated, tag = "281")] + pub ainlmgdnhib: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "9")] + pub dhelbcimlga: u32, + #[prost(uint32, tag = "1599")] + pub fombhjkdhgo: u32, + #[prost(uint32, tag = "12")] + pub ehcjcilcnop: u32, + #[prost(uint32, repeated, tag = "10")] + pub jldcflkcbld: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "7")] + pub hmffhgbkogl: u32, + #[prost(uint32, tag = "3")] + pub fmkdifnjajc: u32, + #[prost(uint32, tag = "6")] + pub kjgdknjfcpg: u32, + #[prost(uint32, tag = "1889")] + pub iepgclgkheg: u32, + #[prost(uint32, tag = "15")] + pub hbapccegnme: u32, + #[prost(uint32, repeated, tag = "1")] + pub dpooapkpchf: ::prost::alloc::vec::Vec, + #[prost(bool, tag = "2039")] + pub omkkpgfjhfe: bool, + #[prost(uint32, tag = "8")] + pub emote: u32, + #[prost(float, tag = "11")] + pub eefcbbkkflc: f32, + #[prost(uint32, tag = "116")] + pub nkhpckegpcl: u32, + #[prost(bool, tag = "2")] + pub pmanbplflkl: bool, + #[prost(uint32, repeated, tag = "13")] + pub knchehiijnn: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "14")] + pub hlieamplipp: ::prost::alloc::vec::Vec, + #[prost(enumeration = "Impkpkamiaf", tag = "4")] + pub dndjkdfhepe: i32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Maogfdkdckm { - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "5")] pub hmffhgbkogl: u32, - #[prost(message, optional, tag = "5")] - pub khcmofpfoak: ::core::option::Option, - #[prost(message, optional, tag = "9")] + #[prost(message, optional, tag = "14")] pub lgpiemdlhjm: ::core::option::Option, - #[prost(bool, tag = "15")] + #[prost(bool, tag = "10")] pub omkkpgfjhfe: bool, - #[prost(uint32, tag = "1")] - pub iehfhkmdagc: u32, - #[prost(float, tag = "11")] - pub dplgcekjack: f32, - #[prost(message, repeated, tag = "2")] - pub olkmcbjflej: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "7")] - pub chllmfjgppa: u32, - #[prost(enumeration = "Ppiffkjejja", tag = "12")] + #[prost(enumeration = "Ppiffkjejja", tag = "2")] pub phase: i32, - #[prost(message, repeated, tag = "10")] - pub dibpggoogpk: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "13")] + #[prost(uint32, tag = "13")] + pub chllmfjgppa: u32, + #[prost(uint32, repeated, tag = "12")] pub knchehiijnn: ::prost::alloc::vec::Vec, - #[prost(message, optional, tag = "3")] + #[prost(message, repeated, tag = "3")] + pub dibpggoogpk: ::prost::alloc::vec::Vec, + #[prost(message, optional, tag = "1")] + pub khcmofpfoak: ::core::option::Option, + #[prost(uint32, tag = "7")] + pub iehfhkmdagc: u32, + #[prost(message, repeated, tag = "8")] + pub olkmcbjflej: ::prost::alloc::vec::Vec, + #[prost(float, tag = "15")] + pub dplgcekjack: f32, + #[prost(message, optional, tag = "9")] pub bbdoplekiac: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Gockgigbdcg { - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "12")] pub item_id: u32, - #[prost(uint32, tag = "6")] - pub chllmfjgppa: u32, - #[prost(message, optional, tag = "10")] + #[prost(message, optional, tag = "5")] pub kbcejinfnnj: ::core::option::Option, + #[prost(uint32, tag = "14")] + pub chllmfjgppa: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Eojlngddlnn { - #[prost(uint32, tag = "15")] - pub cgnbhkbhicg: u32, - #[prost(uint32, tag = "13")] - pub panbcnicohj: u32, - #[prost(uint32, repeated, tag = "4")] - pub jfedjmkmlfo: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "2")] - pub mdbggblegem: ::prost::alloc::vec::Vec, - #[prost(bool, tag = "9")] - pub blaljmmhifp: bool, - #[prost(bool, tag = "8")] + #[prost(bool, tag = "5")] pub nbkelchilgg: bool, - #[prost(message, repeated, tag = "6")] + #[prost(message, repeated, tag = "7")] + pub mdbggblegem: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "13")] pub nbkhpjhjmho: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "9")] + pub panbcnicohj: u32, + #[prost(uint32, tag = "2")] + pub cgnbhkbhicg: u32, + #[prost(bool, tag = "14")] + pub blaljmmhifp: bool, + #[prost(uint32, repeated, tag = "8")] + pub jfedjmkmlfo: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Hbghaopbkjp { - #[prost(bool, tag = "7")] - pub pmanbplflkl: bool, - #[prost(message, optional, tag = "1")] - pub fnihjjjgoee: ::core::option::Option, - #[prost(bool, tag = "4")] - pub bmnecpiopdn: bool, - #[prost(float, tag = "12")] - pub mnbemgnnfod: f32, - #[prost(uint32, tag = "9")] - pub level: u32, - #[prost(int32, tag = "2")] - pub hp: i32, #[prost(bool, tag = "15")] - pub plfkoccdbag: bool, + pub pmanbplflkl: bool, + #[prost(uint32, tag = "3")] + pub buff_id: u32, + #[prost(uint32, tag = "5")] + pub level: u32, + #[prost(float, tag = "8")] + pub mnbemgnnfod: f32, + #[prost(uint32, tag = "14")] + pub jlcikblnenh: u32, + #[prost(message, optional, tag = "11")] + pub fnihjjjgoee: ::core::option::Option, + #[prost(int32, tag = "6")] + pub attack: i32, + #[prost(uint32, tag = "12")] + pub id: u32, + #[prost(bool, tag = "1")] + pub bmnecpiopdn: bool, + #[prost(int32, tag = "4")] + pub max_hp: i32, #[prost(message, optional, tag = "13")] pub lkefolcgfgd: ::core::option::Option, - #[prost(uint32, tag = "10")] - pub buff_id: u32, - #[prost(uint32, tag = "8")] - pub id: u32, - #[prost(uint32, tag = "5")] - pub jlcikblnenh: u32, - #[prost(bool, tag = "14")] + #[prost(int32, tag = "10")] + pub hp: i32, + #[prost(bool, tag = "2")] + pub plfkoccdbag: bool, + #[prost(bool, tag = "7")] pub dmbbmffejgi: bool, - #[prost(int32, tag = "3")] - pub max_hp: i32, - #[prost(int32, tag = "11")] - pub attack: i32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Jallappcpfe { - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "4")] pub dhelbcimlga: u32, - #[prost(bool, tag = "8")] + #[prost(bool, tag = "9")] pub fhokfdmfnkg: bool, } #[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] +#[derive(Clone, PartialEq, ::prost::Message)] pub struct Mekdnikfdna { - #[prost(uint32, tag = "2")] - pub ldnbeidjbhi: u32, - #[prost(uint32, tag = "12")] - pub ognepbfpilh: u32, - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "11")] pub rank: u32, - #[prost(uint32, tag = "13")] - pub hp: u32, - #[prost(uint32, tag = "7")] - pub nmlffogbpoc: u32, - #[prost(uint32, tag = "10")] - pub score: u32, - #[prost(enumeration = "Nppnfppenmc", tag = "4")] - pub state: i32, - #[prost(bool, tag = "14")] + #[prost(bool, tag = "13")] pub hnjfffjdgne: bool, + #[prost(uint32, tag = "8")] + pub hp: u32, + #[prost(uint32, tag = "3")] + pub ldnbeidjbhi: u32, + #[prost(enumeration = "Nppnfppenmc", tag = "7")] + pub state: i32, + #[prost(uint32, tag = "9")] + pub nmlffogbpoc: u32, + #[prost(uint32, tag = "5")] + pub score: u32, + #[prost(message, repeated, tag = "15")] + pub item_list: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "10")] + pub ognepbfpilh: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Kldmjemimcn { - #[prost(enumeration = "Dgfcbofaoia", tag = "5")] + #[prost(enumeration = "Dgfcbofaoia", tag = "6")] pub jgibhfjmobe: i32, - #[prost(message, repeated, tag = "3")] - pub cpkpincceip: ::prost::alloc::vec::Vec, - #[prost(message, optional, tag = "6")] + #[prost(message, optional, tag = "1")] pub mejdmjikimo: ::core::option::Option, - #[prost(uint32, tag = "10")] - pub danccaojljn: u32, - #[prost(int32, tag = "8")] - pub hcbbhckjnji: i32, - #[prost(uint32, repeated, tag = "1")] + #[prost(uint32, repeated, tag = "9")] pub hbanccokofc: ::prost::alloc::vec::Vec, - #[prost(uint64, tag = "7")] + #[prost(uint64, tag = "3")] pub mcokhhfpbpj: u64, + #[prost(int32, tag = "13")] + pub hcbbhckjnji: i32, + #[prost(message, repeated, tag = "11")] + pub cpkpincceip: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "5")] + pub danccaojljn: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Jjaepdihcnl { - #[prost(uint32, tag = "3")] - pub heckmdlolag: u32, - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "2")] pub fpbedncocho: u32, + #[prost(uint32, tag = "6")] + pub heckmdlolag: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Mdohafbeepk { - #[prost(uint32, tag = "15")] - pub pkdpiemgibe: u32, - #[prost(uint32, tag = "10")] + #[prost(uint32, repeated, tag = "4")] + pub aihmghajgkj: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "8")] pub cur_hp: u32, + #[prost(uint32, tag = "1")] + pub pkdpiemgibe: u32, + #[prost(uint32, tag = "3")] + pub najlpnlnoje: u32, + #[prost(message, optional, tag = "6")] + pub niaeghjlnmb: ::core::option::Option, + #[prost(uint32, tag = "15")] + pub energy_info: u32, + #[prost(message, repeated, tag = "2")] + pub item_list: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "11")] + pub score: u32, #[prost(enumeration = "Nppnfppenmc", tag = "9")] pub kjpmohfiilo: i32, - #[prost(uint32, tag = "8")] - pub anhfjkepcgf: u32, - #[prost(uint32, tag = "6")] - pub najlpnlnoje: u32, - #[prost(message, optional, tag = "7")] - pub niaeghjlnmb: ::core::option::Option, #[prost(uint32, tag = "13")] - pub energy_info: u32, - #[prost(uint32, tag = "3")] - pub score: u32, + pub anhfjkepcgf: u32, + #[prost(message, repeated, tag = "14")] + pub buff_list: ::prost::alloc::vec::Vec, #[prost(uint32, tag = "12")] - pub midejnjcaia: u32, - #[prost(uint32, tag = "1")] pub gdfndpmjdaf: u32, - #[prost(uint32, repeated, tag = "11")] - pub aihmghajgkj: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "10")] + pub op_list: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "5")] + pub midejnjcaia: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Egcddlkhfeb { - #[prost(message, optional, tag = "6")] + #[prost(message, optional, tag = "9")] pub mlpcfgdafnd: ::core::option::Option, - #[prost(enumeration = "Bfilliobmfn", tag = "10")] + #[prost(enumeration = "Bfilliobmfn", tag = "5")] pub olkndfjbdgj: i32, } /// Obf: JGMOEPGHEMC #[derive(proto_derive::CmdID)] -#[cmdid(30195)] +#[cmdid(30121)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct FightMatch3DataCsReq { +pub struct FightMatch3SwapCsReq { #[prost(int32, tag = "5")] pub player_data: i32, } /// Obf: HLMOJIFFMBM #[derive(proto_derive::CmdID)] -#[cmdid(30132)] +#[cmdid(30191)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct FightMatch3DataScRsp { - #[prost(uint32, tag = "7")] - pub retcode: u32, - #[prost(message, optional, tag = "2")] - pub data: ::core::option::Option, - #[prost(message, repeated, tag = "6")] + #[prost(message, repeated, tag = "14")] pub lipjdjpmokb: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "15")] + pub retcode: u32, + #[prost(message, optional, tag = "13")] + pub data: ::core::option::Option, } /// Obf: HJKLKELKOND #[derive(proto_derive::CmdID)] -#[cmdid(30131)] +#[cmdid(30167)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct FightMatch3StartCountDownScNotify { - #[prost(message, optional, tag = "8")] + #[prost(message, optional, tag = "7")] pub data: ::core::option::Option, } /// Obf: EFPIPLGFIOB #[derive(proto_derive::CmdID)] -#[cmdid(30140)] +#[cmdid(30139)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct FightMatch3TurnStartScNotify { - #[prost(message, optional, tag = "14")] + #[prost(message, optional, tag = "8")] pub hkpodflgcdj: ::core::option::Option, } /// Obf: MAGECDJBPAJ #[derive(proto_derive::CmdID)] -#[cmdid(30176)] +#[cmdid(30127)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct FightMatch3TurnEndScNotify { - #[prost(message, optional, tag = "14")] - pub cinlcmhhkko: ::core::option::Option, - #[prost(message, optional, tag = "1")] + #[prost(message, optional, tag = "9")] pub hiklobgicmp: ::core::option::Option, + #[prost(message, optional, tag = "3")] + pub cinlcmhhkko: ::core::option::Option, } -/// Obf: GALEOPDOMKG #[derive(proto_derive::CmdID)] -#[cmdid(30148)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct FightMatch3SwapCsReq { - #[prost(message, optional, tag = "10")] - pub phnldpokbkl: ::core::option::Option, - #[prost(uint32, tag = "7")] - pub upgrade_level: u32, - #[prost(message, repeated, tag = "6")] - pub eckkblnelbm: ::prost::alloc::vec::Vec, - #[prost(message, optional, tag = "15")] +pub struct Galeopdomkg { + #[prost(message, optional, tag = "4")] pub feclglbfidh: ::core::option::Option, + #[prost(message, repeated, tag = "1")] + pub eckkblnelbm: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "13")] + pub upgrade_level: u32, + #[prost(message, optional, tag = "5")] + pub phnldpokbkl: ::core::option::Option, } /// Obf: CDOAJIMLMGM #[derive(proto_derive::CmdID)] -#[cmdid(30171)] +#[cmdid(30170)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct FightMatch3SwapScRsp { - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "12")] pub retcode: u32, #[prost(uint32, tag = "5")] pub upgrade_level: u32, - #[prost(bool, tag = "1")] + #[prost(bool, tag = "9")] pub pgmgmjdilcl: bool, - #[prost(message, optional, tag = "13")] + #[prost(message, optional, tag = "8")] pub chmaonmmegm: ::core::option::Option, } /// Obf: POGGJHOLGEJ #[derive(proto_derive::CmdID)] -#[cmdid(30152)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] +#[cmdid(30159)] +#[derive(Clone, PartialEq, ::prost::Message)] pub struct FightMatch3OpponentDataScNotify { - #[prost(enumeration = "Nppnfppenmc", tag = "3")] - pub state: i32, - #[prost(uint32, tag = "14")] - pub score: u32, - #[prost(uint32, tag = "11")] - pub nmlffogbpoc: u32, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "9")] pub hp: u32, #[prost(uint32, tag = "1")] pub danccaojljn: u32, + #[prost(uint32, tag = "15")] + pub score: u32, + #[prost(message, repeated, tag = "8")] + pub item_list: ::prost::alloc::vec::Vec, + #[prost(enumeration = "Nppnfppenmc", tag = "12")] + pub state: i32, + #[prost(uint32, tag = "4")] + pub nmlffogbpoc: u32, } /// Obf: IELOFCNMAFK #[derive(proto_derive::CmdID)] -#[cmdid(30122)] +#[cmdid(30105)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct FightMatch3ChatCsReq { - #[prost(uint32, tag = "9")] +pub struct FightMatch3UseItemCsReq { + #[prost(uint32, tag = "3")] pub habdkbfmkee: u32, } /// Obf: HFCOKMNPCDC #[derive(proto_derive::CmdID)] -#[cmdid(30156)] +#[cmdid(30177)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct FightMatch3ChatScRsp { - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "11")] pub retcode: u32, - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "9")] pub habdkbfmkee: u32, } /// Obf: HEPAKJBNHHF #[derive(proto_derive::CmdID)] -#[cmdid(30172)] +#[cmdid(30180)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct FightMatch3ChatScNotify { #[prost(uint32, tag = "8")] - pub egkpfgnjahn: u32, - #[prost(uint32, tag = "1")] pub habdkbfmkee: u32, + #[prost(uint32, tag = "2")] + pub egkpfgnjahn: u32, } /// Obf: KPIFKJHIEJK #[derive(proto_derive::CmdID)] -#[cmdid(30185)] +#[cmdid(30102)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct FightMatch3ForceUpdateNotify { - #[prost(message, optional, tag = "8")] + #[prost(message, optional, tag = "15")] pub data: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct AssistSimpleInfo { +pub struct Bhgphklehec { + #[prost(uint32, tag = "11")] + pub dmkfffpdldi: u32, + #[prost(uint32, tag = "12")] + pub nffnnefcmoi: u32, #[prost(uint32, tag = "3")] - pub avatar_id: u32, - #[prost(uint32, tag = "14")] - pub pos: u32, + pub fojcmhimafn: u32, + #[prost(uint32, tag = "8")] + pub cur_times: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Oddkkahnmhk { + #[prost(enumeration = "Nlaamogoobe", tag = "3")] + pub op_type: i32, #[prost(uint32, tag = "2")] - pub dressed_skin_id: u32, - #[prost(uint32, tag = "1")] + pub hefmjahohkg: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Kndbnnpidpb { + #[prost(enumeration = "Ganmcijcoki", tag = "12")] + pub peplinogegc: i32, + #[prost(uint32, tag = "8")] + pub display_value: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Bfdlhidcnmf { + #[prost(message, optional, tag = "1")] + pub niaeghjlnmb: ::core::option::Option, + #[prost(bool, tag = "10")] + pub jdngfboajap: bool, + #[prost(uint32, tag = "4")] + pub anhfjkepcgf: u32, + #[prost(uint32, tag = "13")] + pub midejnjcaia: u32, + #[prost(uint32, tag = "8")] + pub score: u32, + #[prost(message, repeated, tag = "15")] + pub item_list: ::prost::alloc::vec::Vec, + #[prost(enumeration = "Nppnfppenmc", tag = "5")] + pub kjpmohfiilo: i32, + #[prost(bool, tag = "14")] + pub cocongacifj: bool, + #[prost(uint32, tag = "7")] + pub ognepbfpilh: u32, + #[prost(uint32, tag = "2")] + pub energy_info: u32, + #[prost(uint32, tag = "6")] + pub ldnbeidjbhi: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ioijepgmjaf { + #[prost(int32, tag = "13")] + pub hcbbhckjnji: i32, + #[prost(enumeration = "Kjjldimbgmm", tag = "9")] + pub jgibhfjmobe: i32, + #[prost(uint32, tag = "14")] + pub hloacjfdngn: u32, + #[prost(message, repeated, tag = "10")] + pub cpkpincceip: ::prost::alloc::vec::Vec, + #[prost(uint64, tag = "15")] + pub mcokhhfpbpj: u64, + #[prost(message, optional, tag = "1")] + pub mejdmjikimo: ::core::option::Option, + #[prost(uint32, tag = "6")] + pub ebkpmeobnpo: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Bcekdidflcm { + #[prost(uint32, tag = "15")] + pub use_item_id: u32, + #[prost(message, repeated, tag = "3")] + pub eckkblnelbm: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "9")] + pub gdimmfmfpja: ::prost::alloc::vec::Vec, +} +/// Obf: LLAPFAIHPHO +#[derive(proto_derive::CmdID)] +#[cmdid(30174)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct FightMatch3UseItemScRsp { + #[prost(uint32, tag = "12")] + pub retcode: u32, + #[prost(uint32, tag = "15")] + pub use_item_id: u32, + #[prost(message, optional, tag = "11")] + pub ehelgaoabjj: ::core::option::Option, +} +/// Obf: OBDDHIENCGG +#[derive(proto_derive::CmdID)] +#[cmdid(30173)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct FightMatch3SoloDataCsReq {} +/// Obf: ILLGCECFCBF +#[derive(proto_derive::CmdID)] +#[cmdid(30198)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct FightMatch3SoloDataScRsp { + #[prost(message, optional, tag = "3")] + pub data: ::core::option::Option, + #[prost(uint32, tag = "8")] + pub retcode: u32, + #[prost(message, repeated, tag = "13")] + pub lipjdjpmokb: ::prost::alloc::vec::Vec, +} +/// Obf: FFADONHMPKE +#[derive(proto_derive::CmdID)] +#[cmdid(30185)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct FightMatch3SoloAnimEndCsReq { + #[prost(uint32, tag = "7")] + pub hloacjfdngn: u32, + #[prost(uint32, tag = "3")] + pub bkggnmbbgnl: u32, + #[prost(uint32, tag = "2")] + pub gdchlibmfkm: u32, +} +/// Obf: CJNONNDMGAO +#[derive(proto_derive::CmdID)] +#[cmdid(30138)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct FightMatch3SoloAnimEndScRsp { + #[prost(uint32, tag = "9")] + pub retcode: u32, +} +/// Obf: POEDBCBDLOP +#[derive(proto_derive::CmdID)] +#[cmdid(30152)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct FightMatch3SoloDataUpdateNotify { + #[prost(message, optional, tag = "15")] + pub data: ::core::option::Option, + #[prost(enumeration = "Abbdjbmiibe", tag = "10")] + pub reason: i32, +} +/// Obf: IGCFCAIKKAA +#[derive(proto_derive::CmdID)] +#[cmdid(30168)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct FightMatch3SoloSwapNotify { + #[prost(message, optional, tag = "5")] + pub ehelgaoabjj: ::core::option::Option, + #[prost(message, optional, tag = "14")] + pub medbonhalod: ::core::option::Option, +} +/// Obf: DJBKIPEHLNM +#[derive(proto_derive::CmdID)] +#[cmdid(30194)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct FightMatch3SoloUseItemNotify { + #[prost(message, optional, tag = "10")] + pub medbonhalod: ::core::option::Option, + #[prost(message, optional, tag = "11")] + pub ehelgaoabjj: ::core::option::Option, +} +/// Obf: HIFPDFFIFAM +#[derive(proto_derive::CmdID)] +#[cmdid(30136)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct FightMatch3SoloPreTurnEndCsReq {} +/// Obf: HCOACOGFAJG +#[derive(proto_derive::CmdID)] +#[cmdid(30187)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct FightMatch3SoloPreTurnEndScRsp { + #[prost(uint32, tag = "14")] + pub retcode: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct AssistSimpleInfo { + #[prost(uint32, tag = "12")] + pub avatar_id: u32, + #[prost(uint32, tag = "3")] + pub pos: u32, + #[prost(uint32, tag = "4")] pub level: u32, + #[prost(uint32, tag = "10")] + pub dressed_skin_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Ihkgnjdnalj { - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "13")] pub group_id: u32, + #[prost(uint32, tag = "1")] + pub total_star_count: u32, + #[prost(uint32, tag = "2")] + pub jgmipmdppij: u32, #[prost(uint32, tag = "7")] pub fccdilggoci: u32, - #[prost(uint32, tag = "4")] - pub jgmipmdppij: u32, - #[prost(uint32, tag = "5")] - pub khcnajokjhj: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Kpiglopemcf { - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "3")] pub ijhlojefcpm: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Phhliogfdek { - #[prost(uint32, repeated, tag = "15")] + #[prost(uint32, repeated, tag = "11")] pub capiccciebo: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "1")] - pub ijhlojefcpm: u32, #[prost(uint32, tag = "13")] + pub ijhlojefcpm: u32, + #[prost(uint32, tag = "10")] pub ofgbjcccike: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Bcpdfipomap { - #[prost(message, optional, tag = "6")] + #[prost(message, optional, tag = "15")] pub lbhjehfjlnf: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Obihngmnkek { - #[prost(oneof = "obihngmnkek::Hnioehohnjg", tags = "14, 5")] + #[prost(oneof = "obihngmnkek::Hnioehohnjg", tags = "2, 11")] pub hnioehohnjg: ::core::option::Option, } /// Nested message and enum types in `OBIHNGMNKEK`. @@ -9874,162 +11108,164 @@ pub mod obihngmnkek { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] pub enum Hnioehohnjg { - #[prost(message, tag = "14")] + #[prost(message, tag = "2")] Loonehfnapc(super::Kpiglopemcf), - #[prost(message, tag = "5")] + #[prost(message, tag = "11")] Daopohamomf(super::Bcpdfipomap), } } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Hiejjbdncnh { - #[prost(message, optional, tag = "8")] - pub eboomgdgnep: ::core::option::Option, - #[prost(enumeration = "Pcahopmikim", tag = "9")] - pub fgmgpljckpc: i32, - #[prost(message, optional, tag = "3")] + #[prost(message, optional, tag = "4")] pub jfpcpdcflmd: ::core::option::Option, + #[prost(enumeration = "Pcahopmikim", tag = "7")] + pub display_type: i32, + #[prost(message, optional, tag = "10")] + pub eboomgdgnep: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SimpleInfo { - #[prost(string, tag = "2")] - pub gmalcpnohbf: ::prost::alloc::string::String, - #[prost(uint32, tag = "11")] - pub chat_bubble_id: u32, - #[prost(uint32, tag = "15")] - pub head_icon: u32, - #[prost(string, tag = "4")] - pub nickname: ::prost::alloc::string::String, - #[prost(message, repeated, tag = "5")] + #[prost(message, repeated, tag = "15")] pub assist_simple_info: ::prost::alloc::vec::Vec, - #[prost(enumeration = "PlatformType", tag = "9")] + #[prost(enumeration = "PlatformType", tag = "11")] pub platform_type: i32, - #[prost(uint32, tag = "10")] - pub anpllaobfji: u32, - #[prost(int64, tag = "8")] + #[prost(int64, tag = "12")] pub last_active_time: i64, - #[prost(string, tag = "6")] - pub akcejfcfban: ::prost::alloc::string::String, - #[prost(enumeration = "FriendOnlineStatus", tag = "3")] - pub online_status: i32, - #[prost(bool, tag = "13")] - pub jfgaekjjpie: bool, - #[prost(string, tag = "12")] - pub signature: ::prost::alloc::string::String, - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "7")] pub level: u32, - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "9")] pub uid: u32, + #[prost(string, tag = "8")] + pub signature: ::prost::alloc::string::String, + #[prost(enumeration = "FriendOnlineStatus", tag = "6")] + pub online_status: i32, + #[prost(uint32, tag = "3")] + pub chat_bubble_id: u32, + #[prost(string, tag = "2")] + pub nickname: ::prost::alloc::string::String, + #[prost(bool, tag = "5")] + pub jfgaekjjpie: bool, + #[prost(string, tag = "4")] + pub gmalcpnohbf: ::prost::alloc::string::String, + #[prost(string, tag = "14")] + pub akcejfcfban: ::prost::alloc::string::String, + #[prost(uint32, tag = "1")] + pub anpllaobfji: u32, + #[prost(uint32, tag = "13")] + pub head_icon: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct DisplayEquipmentInfo { - #[prost(uint32, tag = "13")] - pub level: u32, - #[prost(uint32, tag = "14")] - pub rank: u32, - #[prost(uint32, tag = "10")] - pub tid: u32, - #[prost(uint32, tag = "5")] - pub exp: u32, - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "4")] pub promotion: u32, + #[prost(uint32, tag = "11")] + pub level: u32, + #[prost(uint32, tag = "13")] + pub exp: u32, + #[prost(uint32, tag = "5")] + pub rank: u32, + #[prost(uint32, tag = "14")] + pub tid: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct DisplayRelicInfo { - #[prost(uint32, tag = "4")] - pub exp: u32, - #[prost(uint32, tag = "6")] - pub main_affix_id: u32, - #[prost(uint32, tag = "2")] - pub tid: u32, - #[prost(message, repeated, tag = "9")] + #[prost(message, repeated, tag = "4")] pub sub_affix_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "8")] + pub tid: u32, + #[prost(uint32, tag = "5")] + pub exp: u32, + #[prost(uint32, tag = "3")] pub level: u32, - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "6")] pub slot: u32, + #[prost(uint32, tag = "1")] + pub main_affix_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct DisplayAvatarDetailInfo { - #[prost(uint32, tag = "6")] - pub exp: u32, - #[prost(uint32, tag = "12")] - pub level: u32, - #[prost(uint32, tag = "4")] - pub dressed_skin_id: u32, - #[prost(message, repeated, tag = "13")] - pub relic_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "3")] - pub pos: u32, - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "1")] pub promotion: u32, - #[prost(uint32, tag = "2")] - pub rank: u32, - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "12")] pub avatar_id: u32, - #[prost(message, optional, tag = "10")] - pub equipment: ::core::option::Option, - #[prost(message, repeated, tag = "8")] + #[prost(uint32, tag = "7")] + pub enhanced_id: u32, + #[prost(uint32, tag = "13")] + pub dressed_skin_id: u32, + #[prost(uint32, tag = "10")] + pub exp: u32, + #[prost(uint32, tag = "5")] + pub rank: u32, + #[prost(uint32, tag = "3")] + pub level: u32, + #[prost(message, repeated, tag = "14")] pub skilltree_list: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "2")] + pub pos: u32, + #[prost(message, optional, tag = "8")] + pub equipment: ::core::option::Option, + #[prost(message, repeated, tag = "6")] + pub relic_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct PlayerCollectionInfo { - #[prost(uint32, tag = "10")] - pub pgcdmmnncjc: u32, - #[prost(uint32, tag = "11")] - pub pjcjnkbeimk: u32, - #[prost(uint32, tag = "8")] - pub nljifekdphn: u32, - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "4")] pub ljpekedicml: u32, + #[prost(uint32, tag = "14")] + pub nljifekdphn: u32, + #[prost(uint32, tag = "5")] + pub pjcjnkbeimk: u32, + #[prost(uint32, tag = "15")] + pub pgcdmmnncjc: u32, #[prost(uint32, tag = "3")] pub bdbmikdjlko: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct PlayerRecordInfo { - #[prost(uint32, tag = "4")] - pub emjdebdmhll: u32, - #[prost(uint32, tag = "6")] - pub bhfefeodnim: u32, - #[prost(uint32, tag = "7")] - pub hknoakgcjbk: u32, - #[prost(message, optional, tag = "13")] + #[prost(uint32, tag = "3")] + pub jfpgbkbpbnf: u32, + #[prost(message, optional, tag = "11")] pub collection_info: ::core::option::Option, #[prost(uint32, tag = "2")] - pub cfdfmgllico: u32, - #[prost(uint32, tag = "5")] - pub fhkkmpddmgo: u32, - #[prost(uint32, tag = "11")] - pub ehbdeijjohk: u32, - #[prost(uint32, tag = "3")] pub gekkndonhlj: u32, - #[prost(uint32, tag = "14")] - pub jfpgbkbpbnf: u32, + #[prost(uint32, tag = "6")] + pub ehbdeijjohk: u32, + #[prost(uint32, tag = "8")] + pub hknoakgcjbk: u32, + #[prost(uint32, tag = "15")] + pub bhfefeodnim: u32, + #[prost(uint32, tag = "13")] + pub fhkkmpddmgo: u32, + #[prost(uint32, tag = "7")] + pub cfdfmgllico: u32, + #[prost(uint32, tag = "4")] + pub emjdebdmhll: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct PlayerDisplaySettings { + #[prost(bool, tag = "11")] + pub kjncckhjfhe: bool, + #[prost(bool, tag = "7")] + pub aicnfaobcpi: bool, #[prost(bool, tag = "4")] pub njfmiljofok: bool, + #[prost(bool, tag = "14")] + pub aponeidmphl: bool, #[prost(bool, tag = "10")] pub pbkbglhhkpe: bool, - #[prost(bool, tag = "6")] - pub kjncckhjfhe: bool, - #[prost(bool, tag = "2")] - pub aicnfaobcpi: bool, - #[prost(bool, tag = "8")] - pub aponeidmphl: bool, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Knhlnlngahp { - #[prost(message, repeated, tag = "8")] + #[prost(message, repeated, tag = "10")] pub challenge_list: ::prost::alloc::vec::Vec, #[prost(message, optional, tag = "7")] pub jfpcpdcflmd: ::core::option::Option, @@ -10037,220 +11273,225 @@ pub struct Knhlnlngahp { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct PlayerDetailInfo { - #[prost(uint32, tag = "4")] - pub head_icon: u32, - #[prost(string, tag = "13")] - pub akcejfcfban: ::prost::alloc::string::String, - #[prost(message, repeated, tag = "3")] + #[prost(message, repeated, tag = "6")] pub assist_avatar_list: ::prost::alloc::vec::Vec, - #[prost(bool, tag = "9")] - pub show_display_avatars: bool, - #[prost(bool, tag = "5")] - pub jfgaekjjpie: bool, - #[prost(uint32, tag = "2")] - pub uid: u32, - #[prost(message, optional, tag = "863")] - pub fdfpgmioimm: ::core::option::Option, - #[prost(message, optional, tag = "361")] - pub onkhlhojhgn: ::core::option::Option, - #[prost(uint32, tag = "12")] - pub world_level: u32, - #[prost(string, tag = "8")] - pub nickname: ::prost::alloc::string::String, - #[prost(string, tag = "15")] - pub gmalcpnohbf: ::prost::alloc::string::String, - #[prost(message, optional, tag = "11")] - pub record_info: ::core::option::Option, - #[prost(uint32, tag = "6")] - pub level: u32, - #[prost(uint32, tag = "7")] - pub kbmgbninfbk: u32, - #[prost(message, repeated, tag = "1517")] - pub display_avatar_list: ::prost::alloc::vec::Vec, - #[prost(enumeration = "PlatformType", tag = "1")] - pub platform_type: i32, - #[prost(uint32, tag = "635")] + #[prost(uint32, tag = "1170")] pub anpllaobfji: u32, - #[prost(string, tag = "10")] - pub signature: ::prost::alloc::string::String, - #[prost(uint32, tag = "14")] + #[prost(message, optional, tag = "937")] + pub onkhlhojhgn: ::core::option::Option, + #[prost(string, tag = "13")] + pub nickname: ::prost::alloc::string::String, + #[prost(uint32, tag = "7")] pub ooopbhimnfd: u32, + #[prost(uint32, tag = "14")] + pub kbmgbninfbk: u32, + #[prost(message, repeated, tag = "99")] + pub display_avatar_list: ::prost::alloc::vec::Vec, + #[prost(string, tag = "11")] + pub signature: ::prost::alloc::string::String, + #[prost(message, optional, tag = "12")] + pub record_info: ::core::option::Option, + #[prost(bool, tag = "4")] + pub jfgaekjjpie: bool, + #[prost(uint32, tag = "5")] + pub level: u32, + #[prost(message, optional, tag = "529")] + pub fdfpgmioimm: ::core::option::Option, + #[prost(string, tag = "8")] + pub akcejfcfban: ::prost::alloc::string::String, + #[prost(uint32, tag = "1")] + pub world_level: u32, + #[prost(string, tag = "9")] + pub gmalcpnohbf: ::prost::alloc::string::String, + #[prost(uint32, tag = "15")] + pub head_icon: u32, + #[prost(enumeration = "PlatformType", tag = "3")] + pub platform_type: i32, + #[prost(uint32, tag = "10")] + pub uid: u32, + #[prost(bool, tag = "2")] + pub show_display_avatars: bool, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct FriendListInfo { - #[prost(enumeration = "PlayingState", tag = "5")] - pub playing_state: i32, - #[prost(int64, tag = "14")] - pub sent_time: i64, - #[prost(message, optional, tag = "3")] - pub ilchajcffbf: ::core::option::Option, - #[prost(string, tag = "12")] + #[prost(string, tag = "14")] pub friend_name: ::prost::alloc::string::String, - #[prost(message, optional, tag = "6")] + #[prost(message, optional, tag = "2")] pub simple_info: ::core::option::Option, - #[prost(bool, tag = "15")] + #[prost(message, optional, tag = "4")] + pub ilchajcffbf: ::core::option::Option, + #[prost(bool, tag = "5")] pub is_marked: bool, + #[prost(enumeration = "PlayingState", tag = "1")] + pub playing_state: i32, + #[prost(int64, tag = "12")] + pub sent_time: i64, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct FriendApplyInfo { - #[prost(message, optional, tag = "11")] - pub simple_info: ::core::option::Option, - #[prost(int64, tag = "6")] + #[prost(int64, tag = "5")] pub lffcmnahbdp: i64, + #[prost(message, optional, tag = "13")] + pub simple_info: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct FriendRecommendInfo { - #[prost(bool, tag = "11")] + #[prost(bool, tag = "3")] pub jholblpeglj: bool, - #[prost(message, optional, tag = "5")] + #[prost(message, optional, tag = "2")] pub simple_info: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Lpkdgnbjdem { - #[prost(message, optional, tag = "4")] + #[prost(message, optional, tag = "3")] pub simple_info: ::core::option::Option, - #[prost(message, optional, tag = "10")] + #[prost(message, optional, tag = "13")] pub mdhfanlhnma: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Flcmjahgkfk { - #[prost(uint32, tag = "10")] - pub nppphgfenph: u32, - #[prost(uint32, tag = "15")] - pub head_icon: u32, - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "13")] pub level: u32, - #[prost(uint32, tag = "4")] - pub innaniclcae: u32, - #[prost(enumeration = "PlatformType", tag = "13")] - pub platform_type: i32, - #[prost(string, tag = "8")] - pub gmalcpnohbf: ::prost::alloc::string::String, - #[prost(string, tag = "5")] - pub friend_name: ::prost::alloc::string::String, - #[prost(string, tag = "3")] - pub nickname: ::prost::alloc::string::String, - #[prost(uint32, tag = "2")] - pub uid: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Fcnollfgpck { - #[prost(string, tag = "11")] - pub friend_name: ::prost::alloc::string::String, - #[prost(uint32, tag = "2")] - pub buff_one: u32, - #[prost(uint32, tag = "3")] - pub highest_difficulty: u32, - #[prost(message, optional, tag = "9")] - pub simple_info: ::core::option::Option, #[prost(uint32, tag = "12")] - pub buff_two: u32, - #[prost(message, repeated, tag = "6")] - pub lineup_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "14")] - pub score: u32, + pub head_icon: u32, + #[prost(enumeration = "PlatformType", tag = "10")] + pub platform_type: i32, + #[prost(string, tag = "9")] + pub nickname: ::prost::alloc::string::String, + #[prost(uint32, tag = "15")] + pub uid: u32, + #[prost(string, tag = "14")] + pub friend_name: ::prost::alloc::string::String, + #[prost(string, tag = "5")] + pub gmalcpnohbf: ::prost::alloc::string::String, + #[prost(uint32, tag = "3")] + pub nppphgfenph: u32, + #[prost(uint32, tag = "6")] + pub innaniclcae: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Chkiicnapha { - #[prost(uint32, tag = "1")] - pub group_id: u32, +pub struct FriendChallengeLineup { #[prost(uint32, tag = "7")] - pub khcnajokjhj: u32, - #[prost(oneof = "chkiicnapha::ChallengeType", tags = "172, 847, 1035")] - pub challenge_type: ::core::option::Option, + pub buff_two: u32, + #[prost(string, tag = "12")] + pub friend_name: ::prost::alloc::string::String, + #[prost(uint32, tag = "1")] + pub max_star: u32, + #[prost(uint32, tag = "14")] + pub buff_one: u32, + #[prost(uint32, tag = "6")] + pub score: u32, + #[prost(message, optional, tag = "11")] + pub simple_info: ::core::option::Option, + #[prost(message, repeated, tag = "8")] + pub lineup_list: ::prost::alloc::vec::Vec, } -/// Nested message and enum types in `CHKIICNAPHA`. -pub mod chkiicnapha { +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct FriendChallengeClearanceInfo { + #[prost(uint32, tag = "7")] + pub group_id: u32, + #[prost(uint32, tag = "9")] + pub total_star_count: u32, + #[prost( + oneof = "friend_challenge_clearance_info::ChallengeType", + tags = "979, 556, 594" + )] + pub challenge_type: ::core::option::Option< + friend_challenge_clearance_info::ChallengeType, + >, +} +/// Nested message and enum types in `FriendChallengeClearanceInfo`. +pub mod friend_challenge_clearance_info { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] pub enum ChallengeType { - #[prost(message, tag = "172")] + #[prost(message, tag = "979")] MemoryStats(super::ChallengeMemoryStats), - #[prost(message, tag = "847")] + #[prost(message, tag = "556")] StoryStats(super::ChallengeStoryStats), - #[prost(message, tag = "1035")] + #[prost(message, tag = "594")] BossStats(super::ChallengeBossStats), } } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Ognldadpjfo { - #[prost(message, optional, tag = "13")] - pub finish_info: ::core::option::Option, - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "6")] pub map_id: u32, + #[prost(message, optional, tag = "9")] + pub finish_info: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Eaimkomhkhd { - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "3")] pub ggdiibcdobb: u32, - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "12")] pub avatar_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Angoamadoma { + #[prost(message, optional, tag = "12")] + pub njnjebodmnl: ::core::option::Option, + #[prost(uint32, tag = "1")] + pub ijhlojefcpm: u32, #[prost(uint32, tag = "2")] pub ofgbjcccike: u32, - #[prost(uint32, tag = "7")] - pub ijhlojefcpm: u32, - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "14")] pub jbloklcpafn: u32, - #[prost(message, optional, tag = "5")] - pub njnjebodmnl: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Ggkbhalpidk { - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "8")] pub lhbdonjiicc: u32, - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "6")] pub area_id: u32, - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "11")] pub imlhfgepcan: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Lfjpddcnbkc { - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "1")] pub fjhigbbmjdm: u32, - #[prost(uint32, tag = "2")] - pub area_id: u32, - #[prost(uint32, tag = "7")] - pub fnmgaohmlim: u32, - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "14")] pub epljmcapmpc: u32, + #[prost(uint32, tag = "5")] + pub fnmgaohmlim: u32, + #[prost(uint32, tag = "3")] + pub area_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Nhagpmmcdcf { - #[prost(uint32, tag = "1")] - pub onahhamhfdb: u32, #[prost(uint32, tag = "11")] - pub agijkfbcjoc: u32, - #[prost(uint32, tag = "13")] pub area_id: u32, - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "6")] pub oiajancbabp: u32, + #[prost(uint32, tag = "13")] + pub onahhamhfdb: u32, + #[prost(uint32, tag = "5")] + pub agijkfbcjoc: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Okdbogbabni { - #[prost(message, optional, tag = "7")] - pub plccehdnafl: ::core::option::Option, - #[prost(message, optional, tag = "13")] + #[prost(message, optional, tag = "14")] pub hdljbadekfi: ::core::option::Option, - #[prost(message, optional, tag = "10")] + #[prost(message, optional, tag = "11")] pub apmjfgkifon: ::core::option::Option, - #[prost(oneof = "okdbogbabni::Mblagjjoeff", tags = "788, 130")] + #[prost(message, optional, tag = "6")] + pub plccehdnafl: ::core::option::Option, + #[prost(oneof = "okdbogbabni::Mblagjjoeff", tags = "661, 715")] pub mblagjjoeff: ::core::option::Option, } /// Nested message and enum types in `OKDBOGBABNI`. @@ -10258,9 +11499,9 @@ pub mod okdbogbabni { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] pub enum Mblagjjoeff { - #[prost(message, tag = "788")] + #[prost(message, tag = "661")] Edgfedjbahf(super::Ognldadpjfo), - #[prost(message, tag = "130")] + #[prost(message, tag = "715")] Opfpolcgmed(super::Angoamadoma), } } @@ -10273,27 +11514,27 @@ pub struct Iojhjahimhm { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Jienkfadche { - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "14")] pub area_id: u32, - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "11")] pub njoiciopbnh: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Meehcbgdbea { - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "10")] pub challenge_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Dhahakmpnaf { - #[prost(enumeration = "DevelopmentType", tag = "11")] - pub ejhmnkhepfa: i32, - #[prost(int64, tag = "10")] + #[prost(int64, tag = "15")] pub time: i64, + #[prost(enumeration = "DevelopmentType", tag = "14")] + pub ejhmnkhepfa: i32, #[prost( oneof = "dhahakmpnaf::Paecdoklpfg", - tags = "1131, 1838, 793, 1661, 75, 1433, 1901" + tags = "1793, 243, 200, 624, 1751, 1361, 1220" )] pub paecdoklpfg: ::core::option::Option, } @@ -10302,576 +11543,576 @@ pub mod dhahakmpnaf { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Oneof)] pub enum Paecdoklpfg { - #[prost(message, tag = "1131")] + #[prost(message, tag = "1793")] Liibbggehfp(super::Iojhjahimhm), - #[prost(message, tag = "1838")] + #[prost(message, tag = "243")] Ikffobamghj(super::Meehcbgdbea), - #[prost(uint32, tag = "793")] + #[prost(uint32, tag = "200")] AvatarId(u32), - #[prost(uint32, tag = "1661")] + #[prost(uint32, tag = "624")] Mdmgkhlhiin(u32), - #[prost(uint32, tag = "75")] + #[prost(uint32, tag = "1751")] Ckknnhmdcog(u32), - #[prost(message, tag = "1433")] + #[prost(message, tag = "1361")] Ielhlbffagk(super::Jienkfadche), - #[prost(uint32, tag = "1901")] + #[prost(uint32, tag = "1220")] ModuleId(u32), } } /// Obf: LPPOPKEICAN #[derive(proto_derive::CmdID)] -#[cmdid(2995)] +#[cmdid(2920)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetFriendListInfoCsReq {} /// Obf: GEDMHDHGEAP #[derive(proto_derive::CmdID)] -#[cmdid(2932)] +#[cmdid(2991)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetFriendListInfoScRsp { - #[prost(message, repeated, tag = "15")] - pub friend_list: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "4")] + #[prost(message, repeated, tag = "8")] pub pelmgopehkn: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "2")] + #[prost(message, repeated, tag = "10")] + pub friend_list: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "9")] pub retcode: u32, } /// Obf: KGLCJPEBPDL #[derive(proto_derive::CmdID)] -#[cmdid(2931)] +#[cmdid(2967)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetPlayerDetailInfoCsReq { - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "3")] pub uid: u32, } /// Obf: BLJKKGNCNNG #[derive(proto_derive::CmdID)] -#[cmdid(2940)] +#[cmdid(2939)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetPlayerDetailInfoScRsp { - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "10")] pub retcode: u32, - #[prost(message, optional, tag = "11")] + #[prost(message, optional, tag = "13")] pub player_detail_info: ::core::option::Option, } /// Obf: KBCAJJPFLDL #[derive(proto_derive::CmdID)] -#[cmdid(2976)] +#[cmdid(2927)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetFriendApplyListInfoCsReq {} /// Obf: KNFEJCOGNMM #[derive(proto_derive::CmdID)] -#[cmdid(2948)] +#[cmdid(2921)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetFriendApplyListInfoScRsp { - #[prost(uint32, tag = "10")] - pub retcode: u32, - #[prost(message, repeated, tag = "12")] - pub friend_apply_list: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "11")] + #[prost(uint32, repeated, tag = "9")] pub send_apply_list: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "6")] + pub friend_apply_list: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "5")] + pub retcode: u32, } /// Obf: HOGLMIBJAGP #[derive(proto_derive::CmdID)] -#[cmdid(2971)] +#[cmdid(2970)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ApplyFriendCsReq { - #[prost(uint32, tag = "14")] - pub uid: u32, - #[prost(enumeration = "FriendApplySource", tag = "8")] + #[prost(enumeration = "FriendApplySource", tag = "14")] pub source: i32, + #[prost(uint32, tag = "5")] + pub uid: u32, } /// Obf: GHOKGMDLPOO #[derive(proto_derive::CmdID)] -#[cmdid(2952)] +#[cmdid(2959)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ApplyFriendScRsp { - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "10")] pub retcode: u32, - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "15")] pub uid: u32, } /// Obf: EEMKGEHBLNM #[derive(proto_derive::CmdID)] -#[cmdid(2922)] +#[cmdid(2954)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SyncApplyFriendScNotify { - #[prost(message, optional, tag = "4")] + #[prost(message, optional, tag = "12")] pub friend_apply_info: ::core::option::Option, } /// Obf: IHNFMCAHGFN #[derive(proto_derive::CmdID)] -#[cmdid(2956)] +#[cmdid(2977)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct HandleFriendCsReq { - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "2")] pub uid: u32, - #[prost(bool, tag = "2")] + #[prost(bool, tag = "15")] pub handle_result: bool, } /// Obf: GDKLMAMFKEN #[derive(proto_derive::CmdID)] -#[cmdid(2972)] +#[cmdid(2980)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct HandleFriendScRsp { - #[prost(bool, tag = "1")] + #[prost(bool, tag = "5")] pub handle_result: bool, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "1")] pub uid: u32, - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "8")] pub retcode: u32, - #[prost(message, optional, tag = "3")] + #[prost(message, optional, tag = "2")] pub handle_friend_info: ::core::option::Option, } /// Obf: IFOOAMDBDCK #[derive(proto_derive::CmdID)] -#[cmdid(2985)] +#[cmdid(2902)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SyncHandleFriendScNotify { - #[prost(bool, tag = "11")] - pub handle_result: bool, - #[prost(uint32, tag = "14")] - pub uid: u32, - #[prost(message, optional, tag = "5")] + #[prost(message, optional, tag = "2")] pub handle_friend_info: ::core::option::Option, + #[prost(bool, tag = "1")] + pub handle_result: bool, + #[prost(uint32, tag = "3")] + pub uid: u32, } /// Obf: IECGIIJDBCD #[derive(proto_derive::CmdID)] -#[cmdid(2916)] +#[cmdid(2905)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct DeleteFriendCsReq { - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "14")] pub fiocdbipcgb: u32, #[prost(uint32, tag = "15")] pub uid: u32, } /// Obf: HOCJANHPBLI #[derive(proto_derive::CmdID)] -#[cmdid(2946)] +#[cmdid(2974)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct DeleteFriendScRsp { - #[prost(uint32, tag = "7")] - pub uid: u32, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "8")] pub retcode: u32, + #[prost(uint32, tag = "1")] + pub uid: u32, } /// Obf: CLEKCBJMKPD #[derive(proto_derive::CmdID)] -#[cmdid(2983)] +#[cmdid(2973)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SyncDeleteFriendScNotify { - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "2")] pub uid: u32, } /// Obf: KPGFPDMKGBI #[derive(proto_derive::CmdID)] -#[cmdid(2960)] +#[cmdid(2998)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct AddBlacklistCsReq { - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "8")] pub uid: u32, } /// Obf: LBODLIPMMON #[derive(proto_derive::CmdID)] -#[cmdid(2902)] +#[cmdid(2985)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct AddBlacklistScRsp { - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "10")] pub retcode: u32, - #[prost(message, optional, tag = "6")] + #[prost(message, optional, tag = "14")] pub black_info: ::core::option::Option, } /// Obf: AEHGONDBHAJ #[derive(proto_derive::CmdID)] -#[cmdid(2939)] +#[cmdid(2938)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SyncAddBlacklistScNotify { - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "15")] pub uid: u32, } /// Obf: BABKADMDHDP #[derive(proto_derive::CmdID)] -#[cmdid(2943)] +#[cmdid(2952)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetFriendRecommendListInfoCsReq { - #[prost(bool, tag = "12")] + #[prost(bool, tag = "11")] pub ahoilnfiieg: bool, } /// Obf: PNFFPBIHJJH #[derive(proto_derive::CmdID)] -#[cmdid(2933)] +#[cmdid(2968)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetFriendRecommendListInfoScRsp { + #[prost(uint32, tag = "4")] + pub retcode: u32, #[prost(message, repeated, tag = "15")] pub friend_recommend_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "11")] - pub retcode: u32, } /// Obf: JMICCHOBEEL #[derive(proto_derive::CmdID)] -#[cmdid(2942)] +#[cmdid(2994)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SetFriendRemarkNameCsReq { - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "13")] pub reason: u32, - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "15")] pub uid: u32, - #[prost(string, tag = "11")] + #[prost(string, tag = "4")] pub friend_name: ::prost::alloc::string::String, } /// Obf: IIKBBNDCHBL #[derive(proto_derive::CmdID)] -#[cmdid(2977)] +#[cmdid(2936)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SetFriendRemarkNameScRsp { - #[prost(string, tag = "8")] + #[prost(uint32, tag = "9")] + pub retcode: u32, + #[prost(string, tag = "5")] pub friend_name: ::prost::alloc::string::String, #[prost(uint32, tag = "3")] pub uid: u32, - #[prost(uint32, tag = "10")] - pub retcode: u32, } /// Obf: JOMLPKFBNLP #[derive(proto_derive::CmdID)] -#[cmdid(2958)] +#[cmdid(2987)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ReportPlayerCsReq { - #[prost(string, tag = "2")] - pub mimakhaabah: ::prost::alloc::string::String, - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "15")] pub ehbcljfpooe: u32, - #[prost(uint32, tag = "5")] + #[prost(string, tag = "11")] + pub mimakhaabah: ::prost::alloc::string::String, + #[prost(uint32, tag = "9")] pub uid: u32, } /// Obf: JKPIPGHOCHN #[derive(proto_derive::CmdID)] -#[cmdid(2921)] +#[cmdid(2909)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ReportPlayerScRsp { - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "3")] pub retcode: u32, } /// Obf: DEGBEHAGPKE #[derive(proto_derive::CmdID)] -#[cmdid(2929)] +#[cmdid(2906)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct DeleteBlacklistCsReq { - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "11")] pub uid: u32, } /// Obf: LHJCOILKDKH #[derive(proto_derive::CmdID)] -#[cmdid(2963)] +#[cmdid(2931)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct DeleteBlacklistScRsp { #[prost(uint32, tag = "9")] - pub uid: u32, - #[prost(uint32, tag = "3")] pub retcode: u32, + #[prost(uint32, tag = "1")] + pub uid: u32, } /// Obf: NFCFGGLOFHM #[derive(proto_derive::CmdID)] -#[cmdid(2911)] +#[cmdid(2944)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SearchPlayerCsReq { - #[prost(uint32, repeated, tag = "5")] - pub search_uid_list: ::prost::alloc::vec::Vec, - #[prost(bool, tag = "9")] + #[prost(bool, tag = "6")] pub ahoilnfiieg: bool, + #[prost(uint32, repeated, tag = "4")] + pub search_uid_list: ::prost::alloc::vec::Vec, } /// Obf: CDKLHLINJKN #[derive(proto_derive::CmdID)] -#[cmdid(2993)] +#[cmdid(2949)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SearchPlayerScRsp { - #[prost(uint32, tag = "6")] - pub retcode: u32, - #[prost(uint32, repeated, tag = "4")] - pub search_uid_list: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "12")] + #[prost(message, repeated, tag = "9")] pub search_result_list: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "12")] + pub search_uid_list: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "3")] + pub retcode: u32, } /// Obf: LMHCBMCBJHC #[derive(proto_derive::CmdID)] -#[cmdid(2925)] +#[cmdid(2941)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetAssistListCsReq { - #[prost(bool, tag = "13")] + #[prost(bool, tag = "10")] pub kiboagmojcp: bool, #[prost(bool, tag = "7")] pub ahoilnfiieg: bool, } /// Obf: EAJEAKDAKPC #[derive(proto_derive::CmdID)] -#[cmdid(2914)] +#[cmdid(2984)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetAssistListScRsp { - #[prost(message, repeated, tag = "1")] - pub giecjkakcko: ::prost::alloc::vec::Vec, #[prost(uint32, tag = "14")] pub retcode: u32, + #[prost(message, repeated, tag = "9")] + pub giecjkakcko: ::prost::alloc::vec::Vec, } /// Obf: OHDJHIAEJKK #[derive(proto_derive::CmdID)] -#[cmdid(2984)] +#[cmdid(2978)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SetAssistCsReq { #[prost(uint32, tag = "4")] - pub uid: u32, - #[prost(uint32, tag = "3")] pub avatar_id: u32, + #[prost(uint32, tag = "7")] + pub uid: u32, } /// Obf: KBFGCNFFGAA #[derive(proto_derive::CmdID)] -#[cmdid(2937)] +#[cmdid(2934)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SetAssistScRsp { - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "3")] pub avatar_id: u32, - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "6")] pub uid: u32, - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "12")] pub retcode: u32, } /// Obf: BHKAPLNNKJA #[derive(proto_derive::CmdID)] -#[cmdid(2930)] +#[cmdid(2945)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetCurAssistCsReq {} /// Obf: IGKGGOADBKP #[derive(proto_derive::CmdID)] -#[cmdid(2975)] +#[cmdid(2969)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetCurAssistScRsp { - #[prost(message, optional, tag = "1")] - pub dpjbdhelnoe: ::core::option::Option, - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "7")] pub retcode: u32, + #[prost(message, optional, tag = "14")] + pub dpjbdhelnoe: ::core::option::Option, } /// Obf: HIFKDLLODAL #[derive(proto_derive::CmdID)] -#[cmdid(2951)] +#[cmdid(2903)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetAssistHistoryCsReq {} /// Obf: EFJIHGJHKBO #[derive(proto_derive::CmdID)] -#[cmdid(2991)] +#[cmdid(2924)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetAssistHistoryScRsp { - #[prost(uint32, tag = "5")] - pub omhchjlliif: u32, - #[prost(uint32, repeated, tag = "8")] + #[prost(uint32, repeated, tag = "10")] pub phplnjfimdc: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "15")] pub nfjjapnppkp: u32, - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "9")] pub pbfneigopmp: u32, - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "7")] + pub omhchjlliif: u32, + #[prost(uint32, tag = "11")] pub retcode: u32, } /// Obf: FNBHGNIEKBO #[derive(proto_derive::CmdID)] -#[cmdid(2924)] +#[cmdid(2928)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct NewAssistHistoryNotify { - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "11")] pub nfjjapnppkp: u32, } /// Obf: PFLOBGHELNH #[derive(proto_derive::CmdID)] -#[cmdid(2957)] +#[cmdid(2923)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TakeAssistRewardCsReq {} /// Obf: ABGKAIBFDJD #[derive(proto_derive::CmdID)] -#[cmdid(2907)] +#[cmdid(2922)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TakeAssistRewardScRsp { + #[prost(uint32, tag = "4")] + pub retcode: u32, + #[prost(message, optional, tag = "1")] + pub reward: ::core::option::Option, #[prost(message, repeated, tag = "11")] pub nlcnbiehcoh: ::prost::alloc::vec::Vec, - #[prost(message, optional, tag = "7")] - pub reward: ::core::option::Option, - #[prost(uint32, tag = "10")] - pub retcode: u32, } /// Obf: JCHKKENIBJK #[derive(proto_derive::CmdID)] -#[cmdid(2998)] +#[cmdid(2940)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct CurAssistChangedNotify { - #[prost(message, optional, tag = "7")] + #[prost(message, optional, tag = "2")] pub dpjbdhelnoe: ::core::option::Option, } /// Obf: HBOFJGNBFBG #[derive(proto_derive::CmdID)] -#[cmdid(2964)] +#[cmdid(2918)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetPlatformPlayerInfoCsReq { - #[prost(enumeration = "PlatformType", tag = "10")] - pub platform_type: i32, - #[prost(string, repeated, tag = "14")] + #[prost(string, repeated, tag = "12")] pub dnenlchjekg: ::prost::alloc::vec::Vec<::prost::alloc::string::String>, + #[prost(enumeration = "PlatformType", tag = "11")] + pub platform_type: i32, } /// Obf: ACPKGEEJJFL #[derive(proto_derive::CmdID)] -#[cmdid(2906)] +#[cmdid(2947)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetPlatformPlayerInfoScRsp { - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "15")] pub retcode: u32, - #[prost(message, repeated, tag = "11")] + #[prost(message, repeated, tag = "7")] pub friend_recommend_list: ::prost::alloc::vec::Vec, } /// Obf: CJOENDLMMEG #[derive(proto_derive::CmdID)] -#[cmdid(2945)] +#[cmdid(2919)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetFriendLoginInfoCsReq {} /// Obf: GMJEHFLHLGO #[derive(proto_derive::CmdID)] -#[cmdid(2913)] +#[cmdid(2955)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetFriendLoginInfoScRsp { - #[prost(uint32, repeated, tag = "15")] - pub friend_uid_list: ::prost::alloc::vec::Vec, - #[prost(bool, tag = "14")] - pub bohnbjmmkbo: bool, - #[prost(uint32, tag = "1")] - pub retcode: u32, - #[prost(uint32, repeated, tag = "5")] + #[prost(uint32, repeated, tag = "7")] pub iihdbinopmg: ::prost::alloc::vec::Vec, - #[prost(bool, tag = "3")] + #[prost(bool, tag = "9")] pub lifcehlfdnm: bool, + #[prost(uint32, tag = "3")] + pub retcode: u32, + #[prost(uint32, repeated, tag = "6")] + pub friend_uid_list: ::prost::alloc::vec::Vec, + #[prost(bool, tag = "2")] + pub bohnbjmmkbo: bool, } /// Obf: BKPGKBKJEEF #[derive(proto_derive::CmdID)] -#[cmdid(2978)] +#[cmdid(2971)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SetForbidOtherApplyFriendCsReq { - #[prost(bool, tag = "15")] + #[prost(bool, tag = "1")] pub mjpflikafej: bool, } /// Obf: HOKMICOJAFK #[derive(proto_derive::CmdID)] -#[cmdid(2920)] +#[cmdid(2963)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SetForbidOtherApplyFriendScRsp { - #[prost(bool, tag = "12")] - pub mjpflikafej: bool, - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "11")] pub retcode: u32, + #[prost(bool, tag = "10")] + pub mjpflikafej: bool, } /// Obf: EAEMLKIPOGO #[derive(proto_derive::CmdID)] -#[cmdid(2986)] +#[cmdid(2950)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SetFriendMarkCsReq { + #[prost(uint32, tag = "13")] + pub uid: u32, #[prost(bool, tag = "6")] pub is_set_mark: bool, #[prost(uint32, tag = "2")] - pub uid: u32, - #[prost(uint32, tag = "4")] pub reason: u32, } /// Obf: DDHDGOIPCPA #[derive(proto_derive::CmdID)] -#[cmdid(3000)] +#[cmdid(2995)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SetFriendMarkScRsp { - #[prost(uint32, tag = "1")] - pub uid: u32, - #[prost(uint32, tag = "13")] - pub retcode: u32, - #[prost(bool, tag = "14")] + #[prost(bool, tag = "2")] pub is_set_mark: bool, + #[prost(uint32, tag = "3")] + pub retcode: u32, + #[prost(uint32, tag = "12")] + pub uid: u32, } /// Obf: MPBPGPDGGDK #[derive(proto_derive::CmdID)] -#[cmdid(2909)] +#[cmdid(2960)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetFriendAssistListCsReq { - #[prost(uint32, repeated, tag = "2")] - pub kcpaodebjdg: ::prost::alloc::vec::Vec, - #[prost(enumeration = "AssistAvatarType", tag = "1")] + #[prost(enumeration = "AssistAvatarType", tag = "14")] pub mloogabmihp: i32, + #[prost(bool, tag = "13")] + pub ahoilnfiieg: bool, + #[prost(uint32, repeated, tag = "9")] + pub kcpaodebjdg: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "1")] + pub bijgjecjmhm: ::prost::alloc::vec::Vec, #[prost(uint32, tag = "8")] pub from_uid: u32, - #[prost(bool, tag = "9")] - pub ahoilnfiieg: bool, - #[prost(uint32, repeated, tag = "6")] - pub bijgjecjmhm: ::prost::alloc::vec::Vec, } /// Obf: EDBEFIDAGCO #[derive(proto_derive::CmdID)] -#[cmdid(2954)] +#[cmdid(2996)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetFriendAssistListScRsp { - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "6")] pub from_uid: u32, - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "13")] pub retcode: u32, #[prost(message, repeated, tag = "8")] pub giecjkakcko: ::prost::alloc::vec::Vec, } /// Obf: LKFDMEPJHHH #[derive(proto_derive::CmdID)] -#[cmdid(2999)] +#[cmdid(2916)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetFriendChallengeLineupCsReq { - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "14")] pub challenge_id: u32, } /// Obf: OAJFBJDEGEK #[derive(proto_derive::CmdID)] -#[cmdid(2987)] +#[cmdid(2993)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetFriendChallengeLineupScRsp { - #[prost(bool, tag = "1")] - pub onocjeebfci: bool, - #[prost(message, repeated, tag = "11")] - pub jaejjmjpmnc: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "7")] + #[prost(message, repeated, tag = "7")] + pub jaejjmjpmnc: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "5")] pub retcode: u32, + #[prost(bool, tag = "6")] + pub onocjeebfci: bool, } /// Obf: GNCNBADEEAF #[derive(proto_derive::CmdID)] -#[cmdid(2908)] +#[cmdid(2964)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetFriendChallengeDetailCsReq { - #[prost(uint32, tag = "3")] - pub uid: u32, - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "5")] pub challenge_id: u32, + #[prost(uint32, tag = "14")] + pub uid: u32, } /// Obf: KPGAGCDLMII #[derive(proto_derive::CmdID)] -#[cmdid(2935)] +#[cmdid(2957)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetFriendChallengeDetailScRsp { - #[prost(uint32, tag = "6")] - pub uid: u32, - #[prost(uint32, tag = "10")] - pub retcode: u32, - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "7")] pub challenge_id: u32, - #[prost(message, repeated, tag = "4")] + #[prost(message, repeated, tag = "12")] pub ccgdmoolhhb: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "3")] + pub uid: u32, + #[prost(uint32, tag = "1")] + pub retcode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Kamciopbpga { - #[prost(string, tag = "9")] - pub friend_name: ::prost::alloc::string::String, - #[prost(message, repeated, tag = "4")] + #[prost(message, repeated, tag = "6")] pub avatar_list: ::prost::alloc::vec::Vec, - #[prost(message, optional, tag = "2")] + #[prost(message, optional, tag = "10")] pub simple_info: ::core::option::Option, - #[prost(uint32, repeated, tag = "13")] + #[prost(string, tag = "13")] + pub friend_name: ::prost::alloc::string::String, + #[prost(uint32, repeated, tag = "7")] pub jhiakmchplb: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Kehmgkihefn { - #[prost(oneof = "kehmgkihefn::Njefmllobbj", tags = "5, 10")] + #[prost(oneof = "kehmgkihefn::Njefmllobbj", tags = "15, 7")] pub njefmllobbj: ::core::option::Option, } /// Nested message and enum types in `KEHMGKIHEFN`. @@ -10879,988 +12120,980 @@ pub mod kehmgkihefn { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] pub enum Njefmllobbj { - #[prost(message, tag = "5")] - Gieidjeepac(super::Fcnollfgpck), - #[prost(message, tag = "10")] + #[prost(message, tag = "15")] + Gieidjeepac(super::FriendChallengeLineup), + #[prost(message, tag = "7")] Addcjejpfef(super::Kamciopbpga), } } /// Obf: IDNHIELAIFM #[derive(proto_derive::CmdID)] -#[cmdid(2936)] +#[cmdid(2972)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetFriendRecommendLineupCsReq { - #[prost(uint32, tag = "3")] - pub key: u32, - #[prost(enumeration = "Dllleandaih", tag = "13")] + #[prost(enumeration = "Dllleandaih", tag = "3")] pub slot: i32, + #[prost(uint32, tag = "13")] + pub key: u32, } /// Obf: PCAPDIPOLMC #[derive(proto_derive::CmdID)] -#[cmdid(2994)] +#[cmdid(2935)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetFriendRecommendLineupScRsp { - #[prost(uint32, tag = "6")] - pub key: u32, - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "11")] pub retcode: u32, #[prost(bool, tag = "14")] pub onocjeebfci: bool, - #[prost(message, repeated, tag = "10")] + #[prost(message, repeated, tag = "15")] pub jaejjmjpmnc: ::prost::alloc::vec::Vec, - #[prost(enumeration = "Dllleandaih", tag = "8")] + #[prost(uint32, tag = "13")] + pub key: u32, + #[prost(enumeration = "Dllleandaih", tag = "12")] pub slot: i32, } /// Obf: HHIOHFKOCFD #[derive(proto_derive::CmdID)] -#[cmdid(2927)] +#[cmdid(2953)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetFriendRecommendLineupDetailCsReq { - #[prost(uint32, tag = "13")] - pub uid: u32, - #[prost(enumeration = "Dllleandaih", tag = "9")] - pub slot: i32, - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "12")] pub key: u32, + #[prost(enumeration = "Dllleandaih", tag = "5")] + pub slot: i32, + #[prost(uint32, tag = "10")] + pub uid: u32, } /// Obf: CLCGHILDELA #[derive(proto_derive::CmdID)] -#[cmdid(2974)] +#[cmdid(2933)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetFriendRecommendLineupDetailScRsp { - #[prost(uint32, tag = "10")] - pub uid: u32, - #[prost(message, repeated, tag = "7")] - pub ccgdmoolhhb: ::prost::alloc::vec::Vec, #[prost(uint32, tag = "9")] + pub uid: u32, + #[prost(uint32, tag = "5")] pub key: u32, - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "7")] pub retcode: u32, - #[prost(enumeration = "Dllleandaih", tag = "6")] + #[prost(message, repeated, tag = "1")] + pub ccgdmoolhhb: ::prost::alloc::vec::Vec, + #[prost(enumeration = "Dllleandaih", tag = "10")] pub slot: i32, } /// Obf: OIODMCPAMEG #[derive(proto_derive::CmdID)] -#[cmdid(2934)] +#[cmdid(2926)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetFriendBattleRecordDetailCsReq { - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "12")] pub uid: u32, } /// Obf: CHKNEOBBFDF #[derive(proto_derive::CmdID)] -#[cmdid(2968)] +#[cmdid(2990)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetFriendBattleRecordDetailScRsp { - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "5")] pub uid: u32, - #[prost(uint32, tag = "9")] - pub retcode: u32, - #[prost(message, optional, tag = "7")] + #[prost(message, optional, tag = "14")] pub pgbbepkahbh: ::core::option::Option, - #[prost(message, repeated, tag = "12")] - pub jdidihobaod: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "11")] + pub jdidihobaod: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "10")] + pub retcode: u32, } /// Obf: IFHKCHCHJKH #[derive(proto_derive::CmdID)] -#[cmdid(2901)] +#[cmdid(2989)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetFriendDevelopmentInfoCsReq { - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "5")] pub uid: u32, } /// Obf: MBBIJCDDMPK #[derive(proto_derive::CmdID)] -#[cmdid(2953)] +#[cmdid(2937)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetFriendDevelopmentInfoScRsp { - #[prost(uint32, tag = "15")] - pub retcode: u32, - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "4")] pub uid: u32, - #[prost(message, repeated, tag = "9")] + #[prost(uint32, tag = "1")] + pub retcode: u32, + #[prost(message, repeated, tag = "12")] pub jbhbfbjgbph: ::prost::alloc::vec::Vec, } /// Obf: FIAMOECBPNM #[derive(proto_derive::CmdID)] -#[cmdid(1995)] +#[cmdid(1920)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetGachaInfoCsReq {} #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GachaCeilingAvatar { #[prost(uint32, tag = "15")] - pub avatar_id: u32, - #[prost(uint32, tag = "4")] pub repeated_cnt: u32, + #[prost(uint32, tag = "11")] + pub avatar_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GachaCeiling { - #[prost(message, repeated, tag = "13")] - pub avatar_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "14")] pub ceiling_num: u32, - #[prost(bool, tag = "7")] + #[prost(message, repeated, tag = "5")] + pub avatar_list: ::prost::alloc::vec::Vec, + #[prost(bool, tag = "1")] pub is_claimed: bool, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Lopdjahfphn { - #[prost(uint32, tag = "11")] - pub chdoibfehlp: u32, - #[prost(uint32, repeated, tag = "9")] + #[prost(uint32, repeated, tag = "15")] pub jigonealcpc: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "5")] - pub iincdjpoomc: u32, - #[prost(uint32, repeated, tag = "10")] + #[prost(uint32, tag = "6")] + pub chdoibfehlp: u32, + #[prost(uint32, repeated, tag = "11")] pub dlabdnpihff: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "9")] + pub iincdjpoomc: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GachaInfo { - #[prost(string, tag = "15")] - pub mlgilehmpgb: ::prost::alloc::string::String, - #[prost(uint32, repeated, tag = "12")] - pub up_info: ::prost::alloc::vec::Vec, - #[prost(string, tag = "5")] - pub detail_url: ::prost::alloc::string::String, - #[prost(message, optional, tag = "8")] - pub gacha_ceiling: ::core::option::Option, - #[prost(uint32, tag = "1")] + #[prost(uint32, repeated, tag = "8")] + pub anngpmhpnim: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "4")] pub gacha_id: u32, - #[prost(message, optional, tag = "3")] - pub gdpoeejnmhn: ::core::option::Option, - #[prost(int64, tag = "10")] - pub end_time: i64, #[prost(uint32, tag = "14")] pub gdifaahifbh: u32, - #[prost(uint32, tag = "11")] - pub kmnjnmjfgbg: u32, - #[prost(int64, tag = "4")] + #[prost(message, optional, tag = "3")] + pub gacha_ceiling: ::core::option::Option, + #[prost(string, tag = "12")] + pub detail_webview: ::prost::alloc::string::String, + #[prost(int64, tag = "9")] + pub end_time: i64, + #[prost(int64, tag = "2")] pub begin_time: i64, - #[prost(uint32, repeated, tag = "7")] - pub featured: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "10")] + pub prize_item_list: ::prost::alloc::vec::Vec, + #[prost(string, tag = "13")] + pub drop_history_webview: ::prost::alloc::string::String, + #[prost(uint32, tag = "15")] + pub kmnjnmjfgbg: u32, + #[prost(uint32, tag = "6")] + pub iincdjpoomc: u32, + #[prost(uint32, repeated, tag = "5")] + pub item_detail_list: ::prost::alloc::vec::Vec, } /// Obf: HOBMNDENOHD #[derive(proto_derive::CmdID)] -#[cmdid(1932)] +#[cmdid(1991)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetGachaInfoScRsp { - #[prost(uint32, tag = "9")] - pub djndmnpebka: u32, - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "10")] pub nbelnoipoek: u32, - #[prost(message, repeated, tag = "1")] - pub gacha_info_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "2")] pub retcode: u32, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "13")] + pub djndmnpebka: u32, + #[prost(uint32, tag = "9")] pub nopbebkhika: u32, - #[prost(uint32, tag = "3")] + #[prost(message, repeated, tag = "12")] + pub idehajmemak: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "5")] pub gacha_random: u32, + #[prost(message, repeated, tag = "11")] + pub gacha_info_list: ::prost::alloc::vec::Vec, } /// Obf: BEHHJDKOGHH #[derive(proto_derive::CmdID)] -#[cmdid(1931)] +#[cmdid(1967)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct DoGachaCsReq { - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "11")] + pub gacha_num: u32, + #[prost(uint32, tag = "6")] pub gacha_id: u32, - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "12")] pub simulate_magic: u32, #[prost(uint32, tag = "1")] pub gacha_random: u32, - #[prost(uint32, tag = "6")] - pub gacha_num: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GachaItem { - #[prost(message, optional, tag = "7")] + #[prost(message, optional, tag = "13")] pub token_item: ::core::option::Option, - #[prost(bool, tag = "3")] - pub is_new: bool, - #[prost(message, optional, tag = "1")] - pub transfer_item_list: ::core::option::Option, - #[prost(message, optional, tag = "14")] + #[prost(message, optional, tag = "10")] pub gacha_item: ::core::option::Option, + #[prost(bool, tag = "9")] + pub is_new: bool, + #[prost(message, optional, tag = "6")] + pub transfer_item_list: ::core::option::Option, } /// Obf: KHKCPPLPKND #[derive(proto_derive::CmdID)] -#[cmdid(1940)] +#[cmdid(1939)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct DoGachaScRsp { - #[prost(uint32, tag = "6")] - pub gacha_id: u32, - #[prost(uint32, tag = "3")] - pub ceiling_num: u32, - #[prost(message, repeated, tag = "1")] - pub gacha_item_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "14")] - pub gdifaahifbh: u32, - #[prost(uint32, tag = "4")] - pub kmnjnmjfgbg: u32, - #[prost(uint32, tag = "13")] - pub penilhglhhm: u32, - #[prost(uint32, tag = "5")] - pub retcode: u32, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "10")] pub nopbebkhika: u32, - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "12")] + pub retcode: u32, + #[prost(uint32, tag = "11")] pub gacha_num: u32, + #[prost(uint32, tag = "13")] + pub gdifaahifbh: u32, + #[prost(uint32, tag = "14")] + pub ceiling_num: u32, + #[prost(uint32, tag = "5")] + pub gacha_id: u32, + #[prost(uint32, tag = "6")] + pub kmnjnmjfgbg: u32, + #[prost(uint32, tag = "1")] + pub penilhglhhm: u32, + #[prost(message, repeated, tag = "8")] + pub gacha_item_list: ::prost::alloc::vec::Vec, } /// Obf: GCCGABDOLLK #[derive(proto_derive::CmdID)] -#[cmdid(1976)] +#[cmdid(1927)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetGachaCeilingCsReq { - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "5")] pub gacha_type: u32, } /// Obf: PCMFELPJEAL #[derive(proto_derive::CmdID)] -#[cmdid(1948)] +#[cmdid(1921)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetGachaCeilingScRsp { - #[prost(uint32, tag = "1")] - pub gacha_type: u32, - #[prost(message, optional, tag = "13")] - pub gacha_ceiling: ::core::option::Option, - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "2")] pub retcode: u32, + #[prost(uint32, tag = "9")] + pub gacha_type: u32, + #[prost(message, optional, tag = "7")] + pub gacha_ceiling: ::core::option::Option, } /// Obf: IHBMAOEAOHA #[derive(proto_derive::CmdID)] -#[cmdid(1971)] +#[cmdid(1970)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ExchangeGachaCeilingCsReq { - #[prost(uint32, tag = "15")] - pub avatar_id: u32, - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "4")] pub gacha_type: u32, + #[prost(uint32, tag = "8")] + pub avatar_id: u32, } /// Obf: JPJGLKKFGFM #[derive(proto_derive::CmdID)] -#[cmdid(1952)] +#[cmdid(1959)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ExchangeGachaCeilingScRsp { - #[prost(uint32, tag = "5")] - pub gacha_type: u32, - #[prost(message, optional, tag = "15")] + #[prost(uint32, tag = "11")] + pub retcode: u32, + #[prost(message, optional, tag = "8")] pub transfer_item_list: ::core::option::Option, #[prost(message, optional, tag = "14")] pub gacha_ceiling: ::core::option::Option, - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "15")] + pub gacha_type: u32, + #[prost(uint32, tag = "10")] pub avatar_id: u32, - #[prost(uint32, tag = "3")] - pub retcode: u32, } /// Obf: DFBBEFDPCII #[derive(proto_derive::CmdID)] -#[cmdid(1922)] +#[cmdid(1954)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SetGachaDecideItemCsReq { - #[prost(uint32, repeated, tag = "4")] + #[prost(uint32, repeated, tag = "10")] pub dlabdnpihff: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "8")] - pub gacha_id: u32, - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "5")] pub chdoibfehlp: u32, + #[prost(uint32, tag = "4")] + pub gacha_id: u32, } /// Obf: KBDBMGGFCKI #[derive(proto_derive::CmdID)] -#[cmdid(1956)] +#[cmdid(1977)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SetGachaDecideItemScRsp { - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "3")] pub retcode: u32, - #[prost(message, optional, tag = "7")] + #[prost(message, optional, tag = "1")] pub gdpoeejnmhn: ::core::option::Option, - #[prost(uint32, repeated, tag = "4")] - pub farm_stage_gacha_id_list: ::prost::alloc::vec::Vec, -} -/// Obf: GOFDKPLHJAI -#[derive(proto_derive::CmdID)] -#[cmdid(1972)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GachaDecideItemChangeScNotify { - #[prost(message, optional, tag = "7")] - pub gdpoeejnmhn: ::core::option::Option, - #[prost(uint32, repeated, tag = "2")] - pub farm_stage_gacha_id_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Oicenkljicg { - #[prost(uint32, tag = "6")] - pub dgaklnofdpp: u32, - #[prost(bool, tag = "4")] + #[prost(bool, tag = "12")] pub fbkekcgelbe: bool, + #[prost(uint32, tag = "14")] + pub dgaklnofdpp: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Maiaboommnn { - #[prost(bool, tag = "14")] + #[prost(bool, tag = "8")] pub kkgfigchkib: bool, - #[prost(enumeration = "Bfdflhekfgk", tag = "13")] + #[prost(enumeration = "Bfdflhekfgk", tag = "15")] pub jiimeljaone: i32, - #[prost(enumeration = "Afefbpablhm", tag = "8")] - pub step: i32, - #[prost(bool, tag = "12")] - pub jmpejfickjo: bool, - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "11")] pub clkeoehplng: u32, + #[prost(bool, tag = "2")] + pub jmpejfickjo: bool, + #[prost(enumeration = "Afefbpablhm", tag = "13")] + pub step: i32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Mmeinfmdjfg { - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "2")] pub kbmmmmckjni: u32, - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "5")] pub clkeoehplng: u32, } /// Obf: POKEHOEGBEE #[derive(proto_derive::CmdID)] -#[cmdid(6395)] +#[cmdid(6320)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetHeartDialInfoCsReq {} /// Obf: GHJINMKJLDG #[derive(proto_derive::CmdID)] -#[cmdid(6332)] +#[cmdid(6391)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetHeartDialInfoScRsp { - #[prost(enumeration = "Ooehgmemkoi", tag = "6")] - pub nfeojaajmke: i32, + #[prost(message, repeated, tag = "2")] + pub aboigbjnoho: ::prost::alloc::vec::Vec, #[prost(message, repeated, tag = "3")] pub ocmoejidlam: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "4")] - pub retcode: u32, - #[prost(message, repeated, tag = "11")] + #[prost(message, repeated, tag = "1")] pub emdmhabinkg: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "10")] - pub aboigbjnoho: ::prost::alloc::vec::Vec, + #[prost(enumeration = "Ooehgmemkoi", tag = "9")] + pub nfeojaajmke: i32, + #[prost(uint32, tag = "12")] + pub retcode: u32, } /// Obf: FIBDHFCJAMH #[derive(proto_derive::CmdID)] -#[cmdid(6331)] +#[cmdid(6367)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ChangeScriptEmotionCsReq { - #[prost(uint32, tag = "9")] - pub fihncoabela: u32, - #[prost(enumeration = "Bfdflhekfgk", tag = "6")] - pub ebnofhdngdh: i32, - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "6")] pub clkeoehplng: u32, + #[prost(enumeration = "Bfdflhekfgk", tag = "8")] + pub ebnofhdngdh: i32, + #[prost(uint32, tag = "2")] + pub fihncoabela: u32, } /// Obf: LNOOICPAKND #[derive(proto_derive::CmdID)] -#[cmdid(6340)] +#[cmdid(6339)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ChangeScriptEmotionScRsp { - #[prost(uint32, tag = "5")] - pub retcode: u32, - #[prost(enumeration = "Bfdflhekfgk", tag = "9")] + #[prost(enumeration = "Bfdflhekfgk", tag = "13")] pub kefkogklefc: i32, - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "4")] pub clkeoehplng: u32, + #[prost(uint32, tag = "8")] + pub retcode: u32, } /// Obf: GMPJACIOCAI #[derive(proto_derive::CmdID)] -#[cmdid(6376)] +#[cmdid(6327)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SubmitEmotionItemCsReq { - #[prost(uint32, tag = "12")] - pub clkeoehplng: u32, - #[prost(message, optional, tag = "5")] + #[prost(message, optional, tag = "6")] pub item_list: ::core::option::Option, - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "13")] pub fihncoabela: u32, + #[prost(uint32, tag = "7")] + pub clkeoehplng: u32, } /// Obf: MJOECNKJGIP #[derive(proto_derive::CmdID)] -#[cmdid(6348)] +#[cmdid(6321)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SubmitEmotionItemScRsp { - #[prost(uint32, tag = "5")] - pub retcode: u32, - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "14")] pub clkeoehplng: u32, + #[prost(uint32, tag = "10")] + pub retcode: u32, } /// Obf: AFDLHLDCFEL #[derive(proto_derive::CmdID)] -#[cmdid(6371)] +#[cmdid(6370)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct FinishEmotionDialoguePerformanceCsReq { - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "13")] pub clkeoehplng: u32, - #[prost(uint32, tag = "6")] - pub fihncoabela: u32, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "10")] pub dgaklnofdpp: u32, + #[prost(uint32, tag = "15")] + pub fihncoabela: u32, } /// Obf: PJBHDGOFNCJ #[derive(proto_derive::CmdID)] -#[cmdid(6352)] +#[cmdid(6359)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct FinishEmotionDialoguePerformanceScRsp { - #[prost(uint32, tag = "13")] - pub clkeoehplng: u32, - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "8")] pub dgaklnofdpp: u32, - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "12")] + pub clkeoehplng: u32, + #[prost(uint32, tag = "5")] pub retcode: u32, - #[prost(message, optional, tag = "5")] + #[prost(message, optional, tag = "2")] pub reward_list: ::core::option::Option, } /// Obf: BKGEPFIPGEE #[derive(proto_derive::CmdID)] -#[cmdid(6322)] +#[cmdid(6354)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct HeartDialScriptChangeScNotify { - #[prost(message, repeated, tag = "3")] - pub pkflgdfdmoi: ::prost::alloc::vec::Vec, #[prost(enumeration = "Ooehgmemkoi", tag = "7")] pub nfeojaajmke: i32, - #[prost(message, repeated, tag = "12")] + #[prost(message, repeated, tag = "1")] pub nglhcmbghio: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "9")] + #[prost(message, repeated, tag = "4")] pub ocmoejidlam: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "5")] + pub pkflgdfdmoi: ::prost::alloc::vec::Vec, } /// Obf: ECKBENNIBJH #[derive(proto_derive::CmdID)] -#[cmdid(6356)] +#[cmdid(6377)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct HeartDialTraceScriptCsReq { - #[prost(message, optional, tag = "12")] + #[prost(message, optional, tag = "6")] pub agoipfbddpo: ::core::option::Option, } /// Obf: BKIOMJGMMNE #[derive(proto_derive::CmdID)] -#[cmdid(6372)] +#[cmdid(6380)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct HeartDialTraceScriptScRsp { - #[prost(message, optional, tag = "7")] + #[prost(message, optional, tag = "14")] pub agoipfbddpo: ::core::option::Option, - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "5")] pub retcode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Dejakpoepkn { - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "7")] pub cgfgfmgdpnj: u32, - #[prost(uint32, repeated, tag = "2")] + #[prost(uint32, repeated, tag = "5")] pub lfpmaobgnen: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Jmijjhkiblb { - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "3")] pub challenge_id: u32, - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "8")] pub stars: u32, - #[prost(bool, tag = "12")] + #[prost(bool, tag = "7")] pub gjieahdbnni: bool, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct HeliobusChallengeLineup { - #[prost(uint32, repeated, tag = "9")] - pub avatar_id_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "5")] - pub group_id: u32, - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "10")] pub skill_id: u32, + #[prost(uint32, tag = "6")] + pub group_id: u32, + #[prost(uint32, repeated, tag = "12")] + pub avatar_id_list: ::prost::alloc::vec::Vec, } /// Obf: BLOFCCOIGPI #[derive(proto_derive::CmdID)] -#[cmdid(5895)] +#[cmdid(5820)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct HeliobusActivityDataCsReq {} /// Obf: GJAHMIPODDJ #[derive(proto_derive::CmdID)] -#[cmdid(5832)] +#[cmdid(5891)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct HeliobusActivityDataScRsp { - #[prost(uint32, tag = "3")] - pub level: u32, - #[prost(uint32, tag = "10")] - pub retcode: u32, - #[prost(message, repeated, tag = "14")] - pub gcljengjicm: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "6")] - pub phase: u32, - #[prost(message, repeated, tag = "4")] - pub challenge_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "2")] - pub eenjbpmndol: u32, - #[prost(uint32, tag = "1")] - pub ibhaaejeehc: u32, #[prost(uint32, tag = "8")] pub iphkdelmoih: u32, + #[prost(uint32, tag = "9")] + pub retcode: u32, + #[prost(uint32, tag = "3")] + pub eenjbpmndol: u32, #[prost(message, repeated, tag = "5")] + pub challenge_list: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "2")] + pub ibhaaejeehc: u32, + #[prost(message, repeated, tag = "14")] + pub gcljengjicm: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "1")] + pub level: u32, + #[prost(message, repeated, tag = "7")] pub nfdbmhppfip: ::prost::alloc::vec::Vec, - #[prost(message, optional, tag = "9")] + #[prost(message, optional, tag = "11")] pub skill_info: ::core::option::Option, + #[prost(uint32, tag = "10")] + pub phase: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Goammagcijj { - #[prost(uint32, tag = "10")] - pub kmaempmoccc: u32, - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "15")] pub eliadkdaeco: u32, - #[prost(message, repeated, tag = "7")] + #[prost(uint32, tag = "14")] + pub kmaempmoccc: u32, + #[prost(message, repeated, tag = "10")] pub jndkooejcfc: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Gbjkkfhpffn { - #[prost(uint32, tag = "10")] - pub jfmofiidcnp: u32, - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "6")] pub ihkejebceib: u32, - #[prost(bool, tag = "2")] - pub ajciodkllml: bool, - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "7")] pub cmhgbbhknci: u32, - #[prost(uint32, tag = "3")] - pub fclnoogehmc: u32, + #[prost(bool, tag = "13")] + pub ajciodkllml: bool, + #[prost(uint32, tag = "14")] + pub jfmofiidcnp: u32, + #[prost(bool, tag = "2")] + pub dekhdibcfab: bool, + #[prost(uint32, tag = "5")] + pub aknkpkpljhf: u32, #[prost(message, repeated, tag = "9")] pub ndjfnhfpcgd: ::prost::alloc::vec::Vec, - #[prost(bool, tag = "6")] - pub dekhdibcfab: bool, - #[prost(uint32, tag = "15")] - pub aknkpkpljhf: u32, + #[prost(uint32, tag = "3")] + pub fclnoogehmc: u32, } /// Obf: FOJPCHFHEAE #[derive(proto_derive::CmdID)] -#[cmdid(5831)] +#[cmdid(5867)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct HeliobusSnsReadCsReq { - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "1")] pub ihkejebceib: u32, } /// Obf: IBNCJDMOMLA #[derive(proto_derive::CmdID)] -#[cmdid(5840)] +#[cmdid(5839)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct HeliobusSnsReadScRsp { #[prost(uint32, tag = "11")] - pub ihkejebceib: u32, - #[prost(uint32, tag = "15")] pub retcode: u32, + #[prost(uint32, tag = "4")] + pub ihkejebceib: u32, } /// Obf: NIKFHCNKBCH #[derive(proto_derive::CmdID)] -#[cmdid(5876)] +#[cmdid(5827)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct HeliobusSnsPostCsReq { - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "1")] pub fclnoogehmc: u32, - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "3")] pub ihkejebceib: u32, - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "6")] pub jfmofiidcnp: u32, } /// Obf: FCLCBAIENFB #[derive(proto_derive::CmdID)] -#[cmdid(5848)] +#[cmdid(5821)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct HeliobusSnsPostScRsp { - #[prost(message, optional, tag = "12")] - pub eimcnifmlbl: ::core::option::Option, - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "11")] pub retcode: u32, + #[prost(message, optional, tag = "6")] + pub eimcnifmlbl: ::core::option::Option, } /// Obf: EOPPOAPMACG #[derive(proto_derive::CmdID)] -#[cmdid(5871)] +#[cmdid(5870)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct HeliobusSnsLikeCsReq { - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "11")] pub ihkejebceib: u32, } /// Obf: GBPLDAMFEGL #[derive(proto_derive::CmdID)] -#[cmdid(5852)] +#[cmdid(5859)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct HeliobusSnsLikeScRsp { - #[prost(uint32, tag = "11")] - pub ihkejebceib: u32, - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "1")] pub retcode: u32, - #[prost(bool, tag = "14")] + #[prost(bool, tag = "6")] pub dekhdibcfab: bool, + #[prost(uint32, tag = "8")] + pub ihkejebceib: u32, } /// Obf: JDDIOABLHIF #[derive(proto_derive::CmdID)] -#[cmdid(5822)] +#[cmdid(5854)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct HeliobusSnsCommentCsReq { - #[prost(uint32, tag = "4")] - pub kaljkfkjffa: u32, - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "10")] pub ihkejebceib: u32, - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "12")] + pub kaljkfkjffa: u32, + #[prost(uint32, tag = "1")] pub kmaempmoccc: u32, } /// Obf: JILGIBDIDMH #[derive(proto_derive::CmdID)] -#[cmdid(5856)] +#[cmdid(5877)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct HeliobusSnsCommentScRsp { - #[prost(message, optional, tag = "2")] + #[prost(message, optional, tag = "13")] pub eimcnifmlbl: ::core::option::Option, - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "10")] pub retcode: u32, } /// Obf: HOAMKNEFEIL #[derive(proto_derive::CmdID)] -#[cmdid(5872)] +#[cmdid(5880)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct HeliobusSnsUpdateScNotify { - #[prost(message, repeated, tag = "3")] + #[prost(message, repeated, tag = "1")] pub gkfhmgmbika: ::prost::alloc::vec::Vec, } /// Obf: BDOBCCMPPAA #[derive(proto_derive::CmdID)] -#[cmdid(5885)] +#[cmdid(5802)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct HeliobusInfoChangedScNotify { - #[prost(message, repeated, tag = "2")] + #[prost(message, repeated, tag = "8")] pub gkfhmgmbika: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "13")] - pub iphkdelmoih: u32, - #[prost(uint32, tag = "10")] - pub phase: u32, - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "2")] pub eenjbpmndol: u32, + #[prost(uint32, tag = "9")] + pub iphkdelmoih: u32, + #[prost(uint32, tag = "7")] + pub phase: u32, } /// Obf: ABBAHIAPMCD #[derive(proto_derive::CmdID)] -#[cmdid(5816)] +#[cmdid(5805)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct HeliobusUpgradeLevelCsReq {} /// Obf: KNLJNMOPHFE #[derive(proto_derive::CmdID)] -#[cmdid(5846)] +#[cmdid(5874)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct HeliobusUpgradeLevelScRsp { - #[prost(uint32, tag = "15")] - pub level: u32, - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "9")] pub retcode: u32, + #[prost(uint32, tag = "1")] + pub level: u32, } /// Obf: BPFFNJBECNE #[derive(proto_derive::CmdID)] -#[cmdid(5883)] +#[cmdid(5873)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct HeliobusUnlockSkillScNotify { - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "6")] pub skill_id: u32, - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "1")] pub cgfgfmgdpnj: u32, } /// Obf: IJAKPFAHLJJ #[derive(proto_derive::CmdID)] -#[cmdid(5833)] +#[cmdid(5868)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct HeliobusEnterBattleCsReq { - #[prost(uint32, tag = "10")] - pub event_id: u32, - #[prost(uint32, repeated, tag = "12")] + #[prost(uint32, repeated, tag = "8")] pub avatar_id_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "6")] pub skill_id: u32, + #[prost(uint32, tag = "11")] + pub event_id: u32, } /// Obf: INMBBBCGIGE #[derive(proto_derive::CmdID)] -#[cmdid(5842)] +#[cmdid(5894)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct HeliobusEnterBattleScRsp { - #[prost(message, optional, tag = "15")] - pub battle_info: ::core::option::Option, - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "5")] pub event_id: u32, - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "10")] pub retcode: u32, + #[prost(message, optional, tag = "6")] + pub battle_info: ::core::option::Option, } /// Obf: PFNLNOCJBLA #[derive(proto_derive::CmdID)] -#[cmdid(5860)] +#[cmdid(5898)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct HeliobusSelectSkillCsReq { - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "3")] pub skill_id: u32, } /// Obf: OKMBJEHOIOG #[derive(proto_derive::CmdID)] -#[cmdid(5802)] +#[cmdid(5885)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct HeliobusSelectSkillScRsp { - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "11")] pub retcode: u32, - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "4")] pub skill_id: u32, } /// Obf: GNJICHMOCML #[derive(proto_derive::CmdID)] -#[cmdid(5821)] +#[cmdid(5809)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct HeliobusChallengeUpdateScNotify { - #[prost(message, optional, tag = "11")] + #[prost(message, optional, tag = "14")] pub dddikpnnble: ::core::option::Option, } /// Obf: CIJPAMOOMIG #[derive(proto_derive::CmdID)] -#[cmdid(5829)] +#[cmdid(5806)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct HeliobusLineupUpdateScNotify { - #[prost(message, optional, tag = "3")] + #[prost(message, optional, tag = "11")] pub lineup: ::core::option::Option, } /// Obf: JJCKLKANLBK #[derive(proto_derive::CmdID)] -#[cmdid(5877)] +#[cmdid(5836)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct HeliobusStartRaidCsReq { - #[prost(uint32, tag = "7")] - pub enlknpiblio: u32, - #[prost(uint32, repeated, tag = "1")] - pub avatar_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "2")] - pub skill_id: u32, - #[prost(uint32, tag = "10")] - pub cenifnknfnp: u32, - #[prost(bool, tag = "3")] + #[prost(bool, tag = "11")] pub jgeaegmhdoc: bool, - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "4")] + pub cenifnknfnp: u32, + #[prost(uint32, repeated, tag = "8")] + pub avatar_list: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "6")] pub prop_entity_id: u32, + #[prost(uint32, tag = "15")] + pub skill_id: u32, + #[prost(uint32, tag = "14")] + pub enlknpiblio: u32, } /// Obf: MFFCENPKBGH #[derive(proto_derive::CmdID)] -#[cmdid(5858)] +#[cmdid(5887)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct HeliobusStartRaidScRsp { - #[prost(message, optional, tag = "15")] + #[prost(message, optional, tag = "7")] pub scene: ::core::option::Option, - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "6")] pub retcode: u32, } /// Obf: PACKIMPJBPL #[derive(proto_derive::CmdID)] -#[cmdid(595)] +#[cmdid(520)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetBagCsReq {} #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Equipment { #[prost(uint32, tag = "14")] - pub level: u32, - #[prost(uint32, tag = "8")] pub unique_id: u32, - #[prost(uint32, tag = "6")] - pub rank: u32, - #[prost(uint32, tag = "1")] - pub equip_avatar_id: u32, - #[prost(bool, tag = "5")] - pub is_protected: bool, - #[prost(uint32, tag = "7")] - pub tid: u32, #[prost(uint32, tag = "12")] - pub promotion: u32, + pub level: u32, #[prost(uint32, tag = "9")] + pub equip_avatar_id: u32, + #[prost(uint32, tag = "15")] + pub rank: u32, + #[prost(uint32, tag = "4")] + pub promotion: u32, + #[prost(uint32, tag = "3")] + pub tid: u32, + #[prost(uint32, tag = "5")] pub exp: u32, + #[prost(bool, tag = "11")] + pub is_protected: bool, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Relic { - #[prost(uint32, tag = "1")] - pub exp: u32, - #[prost(bool, tag = "10")] - pub is_protected: bool, - #[prost(uint32, tag = "6")] - pub tid: u32, - #[prost(uint32, tag = "8")] - pub equip_avatar_id: u32, - #[prost(uint32, tag = "5")] - pub unique_id: u32, - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "15")] pub main_affix_id: u32, - #[prost(bool, tag = "2")] + #[prost(bool, tag = "4")] pub is_discarded: bool, - #[prost(message, repeated, tag = "14")] - pub reroll_affix_list: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "4")] - pub sub_affix_list: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "14")] + pub equip_avatar_id: u32, #[prost(uint32, tag = "12")] + pub exp: u32, + #[prost(uint32, tag = "13")] + pub unique_id: u32, + #[prost(uint32, tag = "1")] pub level: u32, + #[prost(bool, tag = "8")] + pub is_protected: bool, + #[prost(uint32, tag = "2")] + pub tid: u32, + #[prost(message, repeated, tag = "5")] + pub sub_affix_list: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "7")] + pub reroll_affix_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Material { - #[prost(uint64, tag = "9")] - pub expire_time: u64, - #[prost(uint32, tag = "12")] - pub num: u32, - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "5")] pub tid: u32, + #[prost(uint64, tag = "10")] + pub expire_time: u64, + #[prost(uint32, tag = "3")] + pub num: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct WaitDelResource { - #[prost(uint32, tag = "10")] - pub tid: u32, - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "8")] pub num: u32, + #[prost(uint32, tag = "6")] + pub tid: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Material0 { - #[prost(uint32, tag = "15")] - pub num: u32, - #[prost(uint64, tag = "5")] + #[prost(uint64, tag = "1")] pub expire_time: u64, - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "15")] pub tid: u32, + #[prost(uint32, tag = "3")] + pub num: u32, } /// Obf: KDKAFPDEBAH #[derive(proto_derive::CmdID)] -#[cmdid(532)] +#[cmdid(591)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetBagScRsp { - #[prost(message, repeated, tag = "5")] - pub bafebhdobfj: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "4")] - pub fcokffeapmi: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "12")] - pub material_list: ::prost::alloc::vec::Vec, - #[prost(enumeration = "TurnFoodSwitch", repeated, tag = "9")] + #[prost(message, repeated, tag = "1")] + pub phngmeljkbe: ::prost::alloc::vec::Vec, + #[prost(enumeration = "TurnFoodSwitch", repeated, tag = "3")] pub turn_food_switch: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "6")] - pub ifenmdpbnkg: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "8")] - pub equipment_list: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "2")] - pub relic_list: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "1")] - pub aoiihcfmfph: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "10")] - pub gemcacjlpij: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "7")] - pub fdbjlgdhcdo: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "3")] - pub retcode: u32, #[prost(uint32, tag = "15")] pub aepnidponkc: u32, - #[prost(message, repeated, tag = "11")] - pub hlinmkbdknc: ::prost::alloc::vec::Vec, #[prost(message, repeated, tag = "13")] - pub phngmeljkbe: ::prost::alloc::vec::Vec, + pub fcokffeapmi: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "5")] + pub relic_list: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "14")] + pub gemcacjlpij: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "7")] + pub material_list: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "11")] + pub equipment_list: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "9")] + pub ifenmdpbnkg: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "12")] + pub fdbjlgdhcdo: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "2")] + pub hlinmkbdknc: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "10")] + pub retcode: u32, + #[prost(uint32, repeated, tag = "6")] + pub aoiihcfmfph: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "8")] + pub bafebhdobfj: ::prost::alloc::vec::Vec, } /// Obf: ENDNEFAPMMA #[derive(proto_derive::CmdID)] -#[cmdid(531)] +#[cmdid(567)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct PromoteEquipmentCsReq { - #[prost(uint32, tag = "13")] - pub equipment_unique_id: u32, - #[prost(message, optional, tag = "12")] + #[prost(message, optional, tag = "10")] pub item_cost_list: ::core::option::Option, + #[prost(uint32, tag = "7")] + pub equipment_unique_id: u32, } /// Obf: KNHLDEDJDLI #[derive(proto_derive::CmdID)] -#[cmdid(540)] +#[cmdid(539)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct PromoteEquipmentScRsp { - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "1")] pub retcode: u32, } /// Obf: OGNBDGAGKNJ #[derive(proto_derive::CmdID)] -#[cmdid(576)] +#[cmdid(527)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct LockEquipmentCsReq { #[prost(uint32, repeated, tag = "2")] pub equipment_id_list: ::prost::alloc::vec::Vec, - #[prost(bool, tag = "4")] + #[prost(bool, tag = "1")] pub is_protected: bool, } /// Obf: BBJEJPJONFJ #[derive(proto_derive::CmdID)] -#[cmdid(548)] +#[cmdid(521)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct LockEquipmentScRsp { - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "9")] pub retcode: u32, } /// Obf: ENBJJBIMIND #[derive(proto_derive::CmdID)] -#[cmdid(571)] +#[cmdid(570)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct UseItemCsReq { - #[prost(uint32, tag = "1")] - pub base_avatar_id: u32, - #[prost(uint32, tag = "15")] - pub optional_reward_id: u32, - #[prost(bool, tag = "6")] - pub felciemkcgf: bool, - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "3")] pub use_item_id: u32, - #[prost(enumeration = "AvatarType", tag = "9")] + #[prost(enumeration = "AvatarType", tag = "10")] pub mgnnkfnacni: i32, - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "12")] pub use_item_count: u32, + #[prost(uint32, tag = "6")] + pub optional_reward_id: u32, + #[prost(uint32, tag = "8")] + pub base_avatar_id: u32, + #[prost(bool, tag = "1")] + pub felciemkcgf: bool, } /// Obf: LOGJKANIBDJ #[derive(proto_derive::CmdID)] -#[cmdid(552)] +#[cmdid(559)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct UseItemScRsp { - #[prost(message, optional, tag = "9")] - pub return_data: ::core::option::Option, - #[prost(uint64, tag = "1")] - pub month_card_out_date_time: u64, - #[prost(uint32, tag = "8")] - pub use_item_id: u32, - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "6")] pub retcode: u32, - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "14")] pub use_item_count: u32, + #[prost(uint64, tag = "10")] + pub month_card_out_date_time: u64, + #[prost(message, optional, tag = "11")] + pub return_data: ::core::option::Option, #[prost(uint32, tag = "3")] + pub use_item_id: u32, + #[prost(uint32, tag = "8")] pub gcjobeokmcp: u32, } /// Obf: CEIGIHOKMFE #[derive(proto_derive::CmdID)] -#[cmdid(522)] +#[cmdid(554)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RankUpEquipmentCsReq { - #[prost(message, optional, tag = "8")] - pub item_cost_list: ::core::option::Option, - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "6")] pub equipment_unique_id: u32, + #[prost(message, optional, tag = "7")] + pub item_cost_list: ::core::option::Option, } /// Obf: DNEFPJHHCBI #[derive(proto_derive::CmdID)] -#[cmdid(556)] +#[cmdid(577)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RankUpEquipmentScRsp { - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "12")] pub retcode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Bepahbkljnn { - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "10")] pub equipment_unique_id: u32, - #[prost(message, optional, tag = "9")] + #[prost(message, optional, tag = "8")] pub item_cost_list: ::core::option::Option, } /// Obf: LNKLNJJDGKF #[derive(proto_derive::CmdID)] -#[cmdid(590)] +#[cmdid(507)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct BatchRankUpEquipmentCsReq { #[prost(message, repeated, tag = "15")] @@ -11868,257 +13101,257 @@ pub struct BatchRankUpEquipmentCsReq { } /// Obf: CIIKBJJNOEJ #[derive(proto_derive::CmdID)] -#[cmdid(517)] +#[cmdid(548)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct BatchRankUpEquipmentScRsp { - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "13")] pub retcode: u32, } /// Obf: LLAGDKKOPIG #[derive(proto_derive::CmdID)] -#[cmdid(572)] +#[cmdid(580)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ExpUpEquipmentCsReq { #[prost(message, optional, tag = "2")] pub item_cost_list: ::core::option::Option, - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "1")] pub equipment_unique_id: u32, } /// Obf: GHMKEHACJIN #[derive(proto_derive::CmdID)] -#[cmdid(585)] +#[cmdid(502)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ExpUpEquipmentScRsp { - #[prost(uint32, tag = "5")] - pub retcode: u32, #[prost(message, repeated, tag = "2")] pub return_item_list: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "1")] + pub retcode: u32, } /// Obf: EIDFBOMONBI #[derive(proto_derive::CmdID)] -#[cmdid(516)] +#[cmdid(505)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ComposeItemCsReq { - #[prost(message, optional, tag = "12")] - pub compose_item_list: ::core::option::Option, - #[prost(uint32, tag = "1")] - pub compose_id: u32, - #[prost(uint32, tag = "4")] + #[prost(message, optional, tag = "14")] + pub pjchnokedbe: ::core::option::Option, + #[prost(uint32, tag = "13")] pub count: u32, #[prost(message, optional, tag = "5")] - pub pjchnokedbe: ::core::option::Option, + pub compose_item_list: ::core::option::Option, + #[prost(uint32, tag = "11")] + pub compose_id: u32, } /// Obf: LMAAEHHLMFC #[derive(proto_derive::CmdID)] -#[cmdid(546)] +#[cmdid(574)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ComposeItemScRsp { - #[prost(uint32, tag = "12")] - pub count: u32, - #[prost(uint32, tag = "8")] - pub compose_id: u32, - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "1")] pub retcode: u32, - #[prost(message, optional, tag = "5")] + #[prost(uint32, tag = "11")] + pub compose_id: u32, + #[prost(uint32, tag = "4")] + pub count: u32, + #[prost(message, optional, tag = "12")] pub return_item_list: ::core::option::Option, } /// Obf: PPCMJPFIBJK #[derive(proto_derive::CmdID)] -#[cmdid(521)] +#[cmdid(509)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ComposeSelectedRelicCsReq { - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "2")] + pub compose_id: u32, + #[prost(message, optional, tag = "9")] + pub fbgodfjicll: ::core::option::Option, + #[prost(message, optional, tag = "11")] + pub gjfmnmokaic: ::core::option::Option, + #[prost(uint32, tag = "8")] pub compose_relic_id: u32, #[prost(uint32, repeated, tag = "3")] pub ggnpaifhpbb: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "7")] pub main_affix_id: u32, - #[prost(message, optional, tag = "11")] - pub gjfmnmokaic: ::core::option::Option, - #[prost(message, optional, tag = "10")] - pub fbgodfjicll: ::core::option::Option, - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "5")] pub count: u32, - #[prost(uint32, tag = "4")] - pub compose_id: u32, } /// Obf: MGNNPKGBAGD #[derive(proto_derive::CmdID)] -#[cmdid(529)] +#[cmdid(506)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ComposeSelectedRelicScRsp { - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "3")] pub retcode: u32, - #[prost(message, optional, tag = "2")] - pub return_item_list: ::core::option::Option, - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "13")] pub compose_id: u32, + #[prost(message, optional, tag = "10")] + pub return_item_list: ::core::option::Option, } /// Obf: HKHKBGGJLKJ #[derive(proto_derive::CmdID)] -#[cmdid(583)] +#[cmdid(573)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ExpUpRelicCsReq { #[prost(message, optional, tag = "1")] pub item_cost_list: ::core::option::Option, - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "5")] pub relic_unique_id: u32, } /// Obf: LCAOAHBJJNC #[derive(proto_derive::CmdID)] -#[cmdid(560)] +#[cmdid(598)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ExpUpRelicScRsp { - #[prost(message, repeated, tag = "3")] + #[prost(message, repeated, tag = "4")] pub return_item_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "5")] pub retcode: u32, } /// Obf: KACIJMGGGLE #[derive(proto_derive::CmdID)] -#[cmdid(502)] +#[cmdid(585)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct LockRelicCsReq { - #[prost(bool, tag = "3")] - pub is_batch_op: bool, - #[prost(bool, tag = "8")] + #[prost(bool, tag = "11")] pub is_protected: bool, - #[prost(uint32, repeated, tag = "10")] + #[prost(uint32, repeated, tag = "8")] pub locked_relic_id_list: ::prost::alloc::vec::Vec, + #[prost(bool, tag = "13")] + pub is_batch_op: bool, } /// Obf: EHGHOCBCEKM #[derive(proto_derive::CmdID)] -#[cmdid(539)] +#[cmdid(538)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct LockRelicScRsp { - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "6")] pub retcode: u32, } /// Obf: LEMBHJMIKOE #[derive(proto_derive::CmdID)] -#[cmdid(506)] +#[cmdid(547)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct DiscardRelicCsReq { - #[prost(bool, tag = "11")] - pub is_discard: bool, - #[prost(uint64, tag = "6")] + #[prost(uint64, tag = "1")] pub hnhfdmdibio: u64, - #[prost(uint32, repeated, tag = "4")] + #[prost(uint32, repeated, tag = "2")] pub locked_relic_id_list: ::prost::alloc::vec::Vec, - #[prost(enumeration = "Icpineholml", tag = "1")] + #[prost(bool, tag = "6")] + pub is_discard: bool, + #[prost(enumeration = "Icpineholml", tag = "5")] pub nlpconnjonf: i32, } /// Obf: GAADEDDBANA #[derive(proto_derive::CmdID)] -#[cmdid(545)] +#[cmdid(519)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct DiscardRelicScRsp { - #[prost(uint32, repeated, tag = "1")] - pub locked_relic_id_list: ::prost::alloc::vec::Vec, - #[prost(enumeration = "Icpineholml", tag = "5")] + #[prost(enumeration = "Icpineholml", tag = "9")] pub nlpconnjonf: i32, - #[prost(bool, tag = "2")] + #[prost(bool, tag = "11")] pub is_discard: bool, - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "2")] pub retcode: u32, + #[prost(uint32, repeated, tag = "13")] + pub locked_relic_id_list: ::prost::alloc::vec::Vec, } /// Obf: OCCFBPIBDCH #[derive(proto_derive::CmdID)] -#[cmdid(543)] +#[cmdid(552)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SellItemCsReq { - #[prost(bool, tag = "6")] - pub to_material: bool, - #[prost(message, optional, tag = "10")] + #[prost(message, optional, tag = "14")] pub item_cost_list: ::core::option::Option, + #[prost(bool, tag = "13")] + pub to_material: bool, } /// Obf: EMHKBFNEEPE #[derive(proto_derive::CmdID)] -#[cmdid(533)] +#[cmdid(568)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SellItemScRsp { - #[prost(message, optional, tag = "8")] + #[prost(message, optional, tag = "9")] pub return_item_list: ::core::option::Option, - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "7")] pub retcode: u32, } /// Obf: RechargeSuccNotify #[derive(proto_derive::CmdID)] -#[cmdid(542)] +#[cmdid(594)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RechargeSuccNotify { - #[prost(string, tag = "9")] - pub channel_order_no: ::prost::alloc::string::String, - #[prost(uint64, tag = "11")] - pub month_card_outdate_time: u64, #[prost(message, optional, tag = "6")] pub item_list: ::core::option::Option, - #[prost(string, tag = "12")] + #[prost(string, tag = "1")] + pub channel_order_no: ::prost::alloc::string::String, + #[prost(uint64, tag = "4")] + pub month_card_outdate_time: u64, + #[prost(string, tag = "3")] pub product_id: ::prost::alloc::string::String, } /// Obf: CAIBFMLNFFA #[derive(proto_derive::CmdID)] -#[cmdid(577)] +#[cmdid(536)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ExchangeHcoinCsReq { - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "4")] pub num: u32, } /// Obf: ExchangeHcoinScRsp #[derive(proto_derive::CmdID)] -#[cmdid(558)] +#[cmdid(587)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ExchangeHcoinScRsp { - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "3")] pub num: u32, - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "4")] pub retcode: u32, } /// Obf: EHKBPBIAIJM #[derive(proto_derive::CmdID)] -#[cmdid(563)] +#[cmdid(531)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct AddEquipmentScNotify { - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "10")] pub mdmgkhlhiin: u32, } /// Obf: HMAPNACBNCK #[derive(proto_derive::CmdID)] -#[cmdid(511)] +#[cmdid(544)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetRecyleTimeCsReq { - #[prost(uint32, repeated, tag = "2")] + #[prost(uint32, repeated, tag = "4")] pub cjlndnilgmf: ::prost::alloc::vec::Vec, } /// Obf: ALDEDCHJMBK #[derive(proto_derive::CmdID)] -#[cmdid(593)] +#[cmdid(549)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetRecyleTimeScRsp { - #[prost(message, repeated, tag = "1")] - pub fcokffeapmi: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "15")] pub retcode: u32, + #[prost(message, repeated, tag = "4")] + pub fcokffeapmi: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Fnhmmmkjgpb { - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "10")] pub ojemelhcmpj: u32, - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "14")] pub formula_id: u32, } /// Obf: MNKEGHBHBAB #[derive(proto_derive::CmdID)] -#[cmdid(525)] +#[cmdid(541)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ComposeLimitNumCompleteNotify { - #[prost(message, repeated, tag = "5")] + #[prost(message, repeated, tag = "12")] pub dchnaedinmm: ::prost::alloc::vec::Vec, } /// Obf: KAOKFBBHBJP #[derive(proto_derive::CmdID)] -#[cmdid(514)] +#[cmdid(584)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ComposeLimitNumUpdateNotify { #[prost(message, optional, tag = "5")] @@ -12126,188 +13359,188 @@ pub struct ComposeLimitNumUpdateNotify { } /// Obf: JGJOGHCLMCB #[derive(proto_derive::CmdID)] -#[cmdid(584)] +#[cmdid(578)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct DestroyItemCsReq { - #[prost(uint32, tag = "5")] - pub cfcokeldogj: u32, - #[prost(uint32, tag = "11")] - pub mbejblfhcbh: u32, - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "14")] pub item_id: u32, + #[prost(uint32, tag = "9")] + pub mbejblfhcbh: u32, + #[prost(uint32, tag = "8")] + pub cfcokeldogj: u32, } /// Obf: EDELPFFFHGC #[derive(proto_derive::CmdID)] -#[cmdid(537)] +#[cmdid(534)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct DestroyItemScRsp { #[prost(uint32, tag = "5")] pub retcode: u32, - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "9")] pub cfcokeldogj: u32, } /// Obf: JCOMBMFGMBP #[derive(proto_derive::CmdID)] -#[cmdid(530)] +#[cmdid(545)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetMarkItemListCsReq {} /// Obf: JGDMLEJHCFD #[derive(proto_derive::CmdID)] -#[cmdid(575)] +#[cmdid(569)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetMarkItemListScRsp { - #[prost(uint32, repeated, tag = "12")] - pub pdbihonolfj: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "7")] pub retcode: u32, + #[prost(uint32, repeated, tag = "5")] + pub pdbihonolfj: ::prost::alloc::vec::Vec, } /// Obf: PDGPDLFCJOB #[derive(proto_derive::CmdID)] -#[cmdid(551)] +#[cmdid(503)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MarkItemCsReq { - #[prost(bool, tag = "2")] + #[prost(bool, tag = "3")] pub naehphhdgek: bool, - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "12")] pub item_id: u32, } /// Obf: BHLICDCPAEG #[derive(proto_derive::CmdID)] -#[cmdid(591)] +#[cmdid(524)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MarkItemScRsp { - #[prost(uint32, tag = "7")] - pub retcode: u32, - #[prost(uint32, tag = "3")] - pub item_id: u32, - #[prost(bool, tag = "12")] + #[prost(bool, tag = "2")] pub naehphhdgek: bool, + #[prost(uint32, tag = "8")] + pub retcode: u32, + #[prost(uint32, tag = "14")] + pub item_id: u32, } /// Obf: AFMNPBMEHKA #[derive(proto_derive::CmdID)] -#[cmdid(524)] +#[cmdid(528)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct CancelMarkItemNotify { - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "1")] pub item_id: u32, } /// Obf: DAMDJPLDNFE #[derive(proto_derive::CmdID)] -#[cmdid(557)] +#[cmdid(523)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SyncTurnFoodNotify { - #[prost(uint32, repeated, tag = "3")] - pub fdbjlgdhcdo: ::prost::alloc::vec::Vec, - #[prost(enumeration = "TurnFoodSwitch", repeated, tag = "7")] + #[prost(enumeration = "TurnFoodSwitch", repeated, tag = "8")] pub turn_food_switch: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "14")] + pub fdbjlgdhcdo: ::prost::alloc::vec::Vec, } /// Obf: MPNKMKGDBDK #[derive(proto_derive::CmdID)] -#[cmdid(507)] +#[cmdid(522)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SetTurnFoodSwitchCsReq { + #[prost(enumeration = "TurnFoodSwitch", tag = "9")] + pub jcakhhkfdfn: i32, #[prost(bool, tag = "4")] pub bndlhjhalmb: bool, - #[prost(enumeration = "TurnFoodSwitch", tag = "13")] - pub jcakhhkfdfn: i32, } /// Obf: MFGLGONLDPH #[derive(proto_derive::CmdID)] -#[cmdid(598)] +#[cmdid(540)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SetTurnFoodSwitchScRsp { - #[prost(bool, tag = "4")] + #[prost(bool, tag = "3")] pub bndlhjhalmb: bool, - #[prost(enumeration = "TurnFoodSwitch", tag = "10")] - pub jcakhhkfdfn: i32, - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "6")] pub retcode: u32, + #[prost(enumeration = "TurnFoodSwitch", tag = "9")] + pub jcakhhkfdfn: i32, } /// Obf: APKMOHMIIBL #[derive(proto_derive::CmdID)] -#[cmdid(564)] +#[cmdid(518)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GeneralVirtualItemDataNotify { - #[prost(bool, tag = "4")] + #[prost(bool, tag = "1")] pub pkbahpfjgdb: bool, - #[prost(message, repeated, tag = "13")] + #[prost(message, repeated, tag = "15")] pub fdjkccgdnka: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RelicFilterPlanIcon { - #[prost(bool, tag = "8")] - pub is_avatar_icon: bool, - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "11")] pub icon_id: u32, + #[prost(bool, tag = "10")] + pub is_avatar_icon: bool, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RelicFilterPlan { - #[prost(uint32, tag = "2")] - pub slot_index: u32, - #[prost(int64, tag = "11")] + #[prost(int64, tag = "8")] pub update_timestamp: i64, - #[prost(uint32, tag = "6")] - pub avatar_id_on_create: u32, - #[prost(bool, tag = "8")] - pub is_marked: bool, - #[prost(message, optional, tag = "13")] - pub settings: ::core::option::Option, - #[prost(string, tag = "1")] - pub name: ::prost::alloc::string::String, - #[prost(message, optional, tag = "3")] + #[prost(uint32, tag = "3")] + pub slot_index: u32, + #[prost(message, optional, tag = "6")] pub icon: ::core::option::Option, + #[prost(string, tag = "13")] + pub name: ::prost::alloc::string::String, + #[prost(message, optional, tag = "7")] + pub settings: ::core::option::Option, + #[prost(uint32, tag = "11")] + pub avatar_id_on_create: u32, + #[prost(bool, tag = "9")] + pub is_marked: bool, } /// Obf: CBCIJAOBJKM #[derive(proto_derive::CmdID)] -#[cmdid(600)] +#[cmdid(595)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetRelicFilterPlanCsReq {} /// Obf: GetRelicFilterPlanScRsp #[derive(proto_derive::CmdID)] -#[cmdid(509)] +#[cmdid(560)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetRelicFilterPlanScRsp { - #[prost(message, repeated, tag = "12")] - pub relic_filter_plan_list: ::prost::alloc::vec::Vec, #[prost(uint32, tag = "3")] pub retcode: u32, + #[prost(message, repeated, tag = "13")] + pub relic_filter_plan_list: ::prost::alloc::vec::Vec, } /// Obf: AddRelicFilterPlanCsReq #[derive(proto_derive::CmdID)] -#[cmdid(554)] +#[cmdid(596)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct AddRelicFilterPlanCsReq { - #[prost(bool, tag = "7")] - pub is_marked: bool, - #[prost(string, tag = "10")] - pub name: ::prost::alloc::string::String, #[prost(message, optional, tag = "13")] pub icon: ::core::option::Option, - #[prost(message, optional, tag = "6")] - pub settings: ::core::option::Option, - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "2")] pub avatar_id_on_create: u32, + #[prost(string, tag = "8")] + pub name: ::prost::alloc::string::String, + #[prost(bool, tag = "14")] + pub is_marked: bool, + #[prost(message, optional, tag = "11")] + pub settings: ::core::option::Option, } /// Obf: AddRelicFilterPlanScRsp #[derive(proto_derive::CmdID)] -#[cmdid(599)] +#[cmdid(516)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct AddRelicFilterPlanScRsp { - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "9")] pub retcode: u32, - #[prost(message, optional, tag = "14")] + #[prost(message, optional, tag = "13")] pub plan: ::core::option::Option, } /// Obf: ModifyRelicFilterPlanCsReq #[derive(proto_derive::CmdID)] -#[cmdid(587)] +#[cmdid(593)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ModifyRelicFilterPlanCsReq { - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "12")] pub slot_index: u32, - #[prost(oneof = "modify_relic_filter_plan_cs_req::InfoCase", tags = "9, 15, 8")] + #[prost(oneof = "modify_relic_filter_plan_cs_req::InfoCase", tags = "11, 15, 14")] pub info_case: ::core::option::Option, } /// Nested message and enum types in `ModifyRelicFilterPlanCsReq`. @@ -12315,26 +13548,26 @@ pub mod modify_relic_filter_plan_cs_req { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] pub enum InfoCase { - #[prost(string, tag = "9")] + #[prost(string, tag = "11")] Name(::prost::alloc::string::String), #[prost(message, tag = "15")] Icon(super::RelicFilterPlanIcon), - #[prost(message, tag = "8")] + #[prost(message, tag = "14")] Settings(super::RelicFilterPlanSettings), } } /// Obf: ModifyRelicFilterPlanScRsp #[derive(proto_derive::CmdID)] -#[cmdid(508)] +#[cmdid(564)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ModifyRelicFilterPlanScRsp { - #[prost(uint32, tag = "5")] - pub retcode: u32, - #[prost(uint32, tag = "4")] - pub slot_index: u32, - #[prost(int64, tag = "11")] + #[prost(int64, tag = "14")] pub update_timestamp: i64, - #[prost(oneof = "modify_relic_filter_plan_sc_rsp::InfoCase", tags = "1, 2, 14")] + #[prost(uint32, tag = "6")] + pub retcode: u32, + #[prost(uint32, tag = "11")] + pub slot_index: u32, + #[prost(oneof = "modify_relic_filter_plan_sc_rsp::InfoCase", tags = "2, 4, 12")] pub info_case: ::core::option::Option, } /// Nested message and enum types in `ModifyRelicFilterPlanScRsp`. @@ -12342,419 +13575,419 @@ pub mod modify_relic_filter_plan_sc_rsp { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] pub enum InfoCase { - #[prost(string, tag = "1")] + #[prost(string, tag = "2")] Name(::prost::alloc::string::String), - #[prost(message, tag = "2")] + #[prost(message, tag = "4")] Icon(super::RelicFilterPlanIcon), - #[prost(message, tag = "14")] + #[prost(message, tag = "12")] Settings(super::RelicFilterPlanSettings), } } /// Obf: DeleteRelicFilterPlanCsReq #[derive(proto_derive::CmdID)] -#[cmdid(535)] +#[cmdid(557)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct DeleteRelicFilterPlanCsReq { - #[prost(bool, tag = "3")] - pub is_batch_op: bool, - #[prost(uint32, repeated, tag = "10")] + #[prost(uint32, repeated, tag = "4")] pub slot_index_list: ::prost::alloc::vec::Vec, + #[prost(bool, tag = "8")] + pub is_batch_op: bool, } /// Obf: IBLMECOBEKK #[derive(proto_derive::CmdID)] -#[cmdid(534)] +#[cmdid(526)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct DeleteRelicFilterPlanScRsp { - #[prost(uint32, tag = "3")] - pub retcode: u32, - #[prost(uint32, repeated, tag = "1")] - pub ndobmajmlnk: ::prost::alloc::vec::Vec, - #[prost(bool, tag = "4")] + #[prost(bool, tag = "1")] pub is_batch_op: bool, + #[prost(uint32, tag = "12")] + pub retcode: u32, + #[prost(uint32, repeated, tag = "15")] + pub ndobmajmlnk: ::prost::alloc::vec::Vec, } /// Obf: MarkRelicFilterPlanCsReq #[derive(proto_derive::CmdID)] -#[cmdid(568)] +#[cmdid(590)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MarkRelicFilterPlanCsReq { - #[prost(uint32, repeated, tag = "14")] + #[prost(bool, tag = "7")] + pub is_batch_op: bool, + #[prost(uint32, repeated, tag = "1")] pub slot_index_list: ::prost::alloc::vec::Vec, #[prost(bool, tag = "8")] pub is_mark: bool, - #[prost(bool, tag = "5")] - pub is_batch_op: bool, } /// Obf: MarkRelicFilterPlanScRsp #[derive(proto_derive::CmdID)] -#[cmdid(501)] +#[cmdid(589)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MarkRelicFilterPlanScRsp { - #[prost(uint32, repeated, tag = "11")] + #[prost(uint32, repeated, tag = "10")] pub slot_index_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "2")] - pub retcode: u32, - #[prost(bool, tag = "1")] + #[prost(bool, tag = "9")] pub is_batch_op: bool, - #[prost(bool, tag = "3")] + #[prost(bool, tag = "8")] pub is_mark: bool, + #[prost(uint32, tag = "7")] + pub retcode: u32, } /// Obf: JILPDHENIDL #[derive(proto_derive::CmdID)] -#[cmdid(553)] +#[cmdid(537)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RelicFilterPlanClearNameScNotify { - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "6")] pub khncedgfpgl: u32, } /// Obf: JFJBAEJBBLB #[derive(proto_derive::CmdID)] -#[cmdid(536)] +#[cmdid(572)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RelicReforgeCsReq { - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "4")] pub relic_unique_id: u32, } /// Obf: OMKAJLMDBDP #[derive(proto_derive::CmdID)] -#[cmdid(594)] +#[cmdid(535)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RelicReforgeScRsp { - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "15")] pub retcode: u32, } /// Obf: LLLDCIBJIDC #[derive(proto_derive::CmdID)] -#[cmdid(527)] +#[cmdid(553)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RelicReforgeConfirmCsReq { - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "8")] pub relic_unique_id: u32, - #[prost(bool, tag = "6")] + #[prost(bool, tag = "7")] pub cjoeaeijlgc: bool, } /// Obf: LFBPGLGJBFI #[derive(proto_derive::CmdID)] -#[cmdid(574)] +#[cmdid(533)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RelicReforgeConfirmScRsp { - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "14")] pub retcode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct UnlockedMusic { - #[prost(uint32, tag = "12")] - pub id: u32, - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "15")] pub group_id: u32, + #[prost(uint32, tag = "8")] + pub id: u32, #[prost(bool, tag = "1")] pub icfbdppjoad: bool, } /// Obf: NIACMNBBNCI #[derive(proto_derive::CmdID)] -#[cmdid(3195)] +#[cmdid(3120)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetJukeboxDataCsReq {} /// Obf: MGDPBJGEELJ #[derive(proto_derive::CmdID)] -#[cmdid(3132)] +#[cmdid(3191)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetJukeboxDataScRsp { - #[prost(uint32, tag = "8")] - pub retcode: u32, - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "9")] pub playing_id: u32, - #[prost(message, repeated, tag = "12")] + #[prost(message, repeated, tag = "11")] pub music_list: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "12")] + pub retcode: u32, } /// Obf: OLCMOAJACGC #[derive(proto_derive::CmdID)] -#[cmdid(3131)] +#[cmdid(3167)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct PlayBackGroundMusicCsReq { - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "12")] pub play_music_id: u32, } /// Obf: NACNJKNEKBK #[derive(proto_derive::CmdID)] -#[cmdid(3140)] +#[cmdid(3139)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct PlayBackGroundMusicScRsp { - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "14")] pub play_music_id: u32, - #[prost(uint32, tag = "3")] - pub retcode: u32, - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "13")] pub playing_id: u32, + #[prost(uint32, tag = "9")] + pub retcode: u32, } /// Obf: INAKLEIILKN #[derive(proto_derive::CmdID)] -#[cmdid(3176)] +#[cmdid(3127)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct UnlockBackGroundMusicCsReq { - #[prost(uint32, repeated, tag = "4")] + #[prost(uint32, repeated, tag = "15")] pub unlock_ids: ::prost::alloc::vec::Vec, } /// Obf: AOGCKKJNKBN #[derive(proto_derive::CmdID)] -#[cmdid(3148)] +#[cmdid(3121)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct UnlockBackGroundMusicScRsp { - #[prost(message, repeated, tag = "15")] + #[prost(message, repeated, tag = "6")] pub music_list: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "5")] - pub unlocked_ids: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "12")] pub retcode: u32, + #[prost(uint32, repeated, tag = "3")] + pub unlocked_ids: ::prost::alloc::vec::Vec, } /// Obf: DPFDHDJCAPI #[derive(proto_derive::CmdID)] -#[cmdid(3171)] +#[cmdid(3170)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TrialBackGroundMusicCsReq { - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "7")] pub pigbbgclamj: u32, } /// Obf: HJKOFKLPCBB #[derive(proto_derive::CmdID)] -#[cmdid(3152)] +#[cmdid(3159)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TrialBackGroundMusicScRsp { - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "13")] pub pigbbgclamj: u32, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "2")] pub retcode: u32, } /// Obf: NDDKNEPFJNL #[derive(proto_derive::CmdID)] -#[cmdid(795)] +#[cmdid(720)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetStageLineupCsReq {} #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Jlchbkkfanl { - #[prost(uint32, tag = "8")] - pub stage_type: u32, - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "1")] pub dogdacflboe: u32, + #[prost(uint32, tag = "12")] + pub stage_type: u32, } /// Obf: KCGCKMIMFFJ #[derive(proto_derive::CmdID)] -#[cmdid(732)] +#[cmdid(791)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetStageLineupScRsp { - #[prost(message, repeated, tag = "2")] - pub nmkpekmmnbp: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "7")] pub retcode: u32, + #[prost(message, repeated, tag = "13")] + pub nmkpekmmnbp: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct LineupAvatar { - #[prost(enumeration = "AvatarType", tag = "3")] - pub avatar_type: i32, - #[prost(uint32, tag = "12")] - pub hp: u32, + #[prost(uint32, tag = "6")] + pub satiety: u32, + #[prost(uint32, tag = "11")] + pub slot: u32, #[prost(uint32, tag = "15")] pub id: u32, - #[prost(uint32, tag = "7")] - pub slot: u32, - #[prost(uint32, tag = "5")] - pub satiety: u32, - #[prost(message, optional, tag = "10")] + #[prost(message, optional, tag = "3")] pub sp_bar: ::core::option::Option, + #[prost(enumeration = "AvatarType", tag = "1")] + pub avatar_type: i32, + #[prost(uint32, tag = "10")] + pub hp: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct LineupInfo { - #[prost(uint32, repeated, tag = "10")] - pub mkdfjccbiop: ::prost::alloc::vec::Vec, - #[prost(string, tag = "14")] - pub name: ::prost::alloc::string::String, - #[prost(uint32, tag = "7")] - pub mp: u32, - #[prost(uint32, repeated, tag = "1")] - pub mankkfpbfcb: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "15")] - pub kompcjpapkm: ::prost::alloc::vec::Vec, - #[prost(bool, tag = "12")] - pub is_virtual: bool, - #[prost(message, repeated, tag = "5")] - pub avatar_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "11")] - pub plane_id: u32, - #[prost(enumeration = "ExtraLineupType", tag = "13")] + #[prost(enumeration = "ExtraLineupType", tag = "14")] pub extra_lineup_type: i32, - #[prost(uint32, tag = "6")] - pub leader_slot: u32, - #[prost(uint32, tag = "2")] - pub max_mp: u32, - #[prost(bool, tag = "4")] - pub bfnbklmamkb: bool, - #[prost(uint32, tag = "8")] - pub emdhekkocmd: u32, - #[prost(uint32, tag = "9")] + #[prost(bool, tag = "6")] + pub is_virtual: bool, + #[prost(uint32, tag = "1")] pub index: u32, + #[prost(uint32, tag = "5")] + pub leader_slot: u32, + #[prost(uint32, repeated, tag = "11")] + pub mkdfjccbiop: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "12")] + pub mankkfpbfcb: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "13")] + pub avatar_list: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "15")] + pub plane_id: u32, + #[prost(uint32, tag = "7")] + pub game_story_line_id: u32, + #[prost(uint32, tag = "4")] + pub max_mp: u32, + #[prost(bool, tag = "2")] + pub bfnbklmamkb: bool, + #[prost(uint32, repeated, tag = "10")] + pub kompcjpapkm: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "9")] + pub mp: u32, + #[prost(string, tag = "3")] + pub name: ::prost::alloc::string::String, } /// Obf: KFLMLMPIADH #[derive(proto_derive::CmdID)] -#[cmdid(731)] +#[cmdid(767)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetCurLineupDataCsReq {} /// Obf: JPAFCFGBILK #[derive(proto_derive::CmdID)] -#[cmdid(740)] +#[cmdid(739)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetCurLineupDataScRsp { - #[prost(uint32, tag = "13")] - pub retcode: u32, - #[prost(message, optional, tag = "4")] + #[prost(message, optional, tag = "10")] pub lineup: ::core::option::Option, + #[prost(uint32, tag = "8")] + pub retcode: u32, } /// Obf: EFPDILJKPDC #[derive(proto_derive::CmdID)] -#[cmdid(776)] +#[cmdid(727)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct JoinLineupCsReq { - #[prost(uint32, tag = "2")] - pub base_avatar_id: u32, - #[prost(bool, tag = "3")] - pub is_virtual: bool, - #[prost(enumeration = "AvatarType", tag = "10")] - pub avatar_type: i32, - #[prost(uint32, tag = "14")] - pub slot: u32, - #[prost(enumeration = "ExtraLineupType", tag = "7")] - pub extra_lineup_type: i32, - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "7")] pub index: u32, + #[prost(enumeration = "AvatarType", tag = "13")] + pub avatar_type: i32, + #[prost(uint32, tag = "1")] + pub slot: u32, + #[prost(uint32, tag = "5")] + pub base_avatar_id: u32, #[prost(uint32, tag = "6")] pub plane_id: u32, + #[prost(bool, tag = "4")] + pub is_virtual: bool, + #[prost(enumeration = "ExtraLineupType", tag = "15")] + pub extra_lineup_type: i32, } /// Obf: HJNPHDFHEEF #[derive(proto_derive::CmdID)] -#[cmdid(748)] +#[cmdid(721)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct JoinLineupScRsp { - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "12")] pub retcode: u32, } /// Obf: BKNJPMJDDKC #[derive(proto_derive::CmdID)] -#[cmdid(771)] +#[cmdid(770)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct QuitLineupCsReq { - #[prost(uint32, tag = "11")] - pub plane_id: u32, - #[prost(uint32, tag = "15")] - pub index: u32, - #[prost(enumeration = "ExtraLineupType", tag = "9")] + #[prost(enumeration = "ExtraLineupType", tag = "8")] pub extra_lineup_type: i32, - #[prost(uint32, tag = "2")] - pub base_avatar_id: u32, - #[prost(enumeration = "AvatarType", tag = "3")] - pub avatar_type: i32, - #[prost(bool, tag = "6")] + #[prost(uint32, tag = "5")] + pub index: u32, + #[prost(uint32, tag = "14")] + pub plane_id: u32, + #[prost(bool, tag = "15")] pub is_virtual: bool, + #[prost(enumeration = "AvatarType", tag = "1")] + pub avatar_type: i32, + #[prost(uint32, tag = "6")] + pub base_avatar_id: u32, } /// Obf: INLPMPKLCJM #[derive(proto_derive::CmdID)] -#[cmdid(752)] +#[cmdid(759)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct QuitLineupScRsp { - #[prost(bool, tag = "3")] - pub is_virtual: bool, - #[prost(bool, tag = "5")] + #[prost(bool, tag = "1")] pub hiofpdkdofd: bool, - #[prost(uint32, tag = "6")] - pub plane_id: u32, - #[prost(uint32, tag = "9")] - pub base_avatar_id: u32, - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "4")] pub retcode: u32, + #[prost(uint32, tag = "5")] + pub plane_id: u32, + #[prost(uint32, tag = "3")] + pub base_avatar_id: u32, + #[prost(bool, tag = "12")] + pub is_virtual: bool, } /// Obf: DAKKNMKOLCG #[derive(proto_derive::CmdID)] -#[cmdid(722)] +#[cmdid(754)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SwapLineupCsReq { - #[prost(enumeration = "ExtraLineupType", tag = "7")] - pub extra_lineup_type: i32, - #[prost(uint32, tag = "11")] - pub plane_id: u32, - #[prost(uint32, tag = "5")] - pub dst_slot: u32, - #[prost(uint32, tag = "4")] - pub src_slot: u32, - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "3")] pub index: u32, + #[prost(uint32, tag = "8")] + pub plane_id: u32, + #[prost(uint32, tag = "7")] + pub src_slot: u32, + #[prost(enumeration = "ExtraLineupType", tag = "6")] + pub extra_lineup_type: i32, + #[prost(uint32, tag = "1")] + pub dst_slot: u32, #[prost(bool, tag = "9")] pub is_virtual: bool, } /// Obf: JHKAIEIAOBK #[derive(proto_derive::CmdID)] -#[cmdid(756)] +#[cmdid(777)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SwapLineupScRsp { - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "13")] pub retcode: u32, } /// Obf: SyncLineupNotify #[derive(proto_derive::CmdID)] -#[cmdid(772)] +#[cmdid(780)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SyncLineupNotify { - #[prost(enumeration = "SyncReason", repeated, tag = "12")] - pub reason_list: ::prost::alloc::vec::Vec, #[prost(message, optional, tag = "10")] pub lineup: ::core::option::Option, + #[prost(enumeration = "SyncReason", repeated, tag = "6")] + pub reason_list: ::prost::alloc::vec::Vec, } /// Obf: KICAGNDCBIN #[derive(proto_derive::CmdID)] -#[cmdid(785)] +#[cmdid(702)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetLineupAvatarDataCsReq {} #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Acmnhkhplod { + #[prost(uint32, tag = "5")] + pub hp: u32, #[prost(uint32, tag = "13")] pub id: u32, - #[prost(enumeration = "AvatarType", tag = "11")] + #[prost(enumeration = "AvatarType", tag = "3")] pub avatar_type: i32, - #[prost(uint32, tag = "6")] - pub hp: u32, } /// Obf: HJMJMLJKLNB #[derive(proto_derive::CmdID)] -#[cmdid(716)] +#[cmdid(705)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetLineupAvatarDataScRsp { - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "2")] pub retcode: u32, - #[prost(message, repeated, tag = "10")] + #[prost(message, repeated, tag = "3")] pub lijinikjnad: ::prost::alloc::vec::Vec, } /// Obf: CCGDEOKBJCD #[derive(proto_derive::CmdID)] -#[cmdid(746)] +#[cmdid(774)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ChangeLineupLeaderCsReq { - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "1")] pub slot: u32, } /// Obf: FIBFDBPAKOH #[derive(proto_derive::CmdID)] -#[cmdid(783)] +#[cmdid(773)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ChangeLineupLeaderScRsp { - #[prost(uint32, tag = "8")] - pub slot: u32, #[prost(uint32, tag = "4")] pub retcode: u32, + #[prost(uint32, tag = "5")] + pub slot: u32, } /// Obf: HLFLPKJOOJN #[derive(proto_derive::CmdID)] -#[cmdid(760)] +#[cmdid(798)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SwitchLineupIndexCsReq { #[prost(uint32, tag = "10")] @@ -12762,237 +13995,237 @@ pub struct SwitchLineupIndexCsReq { } /// Obf: IHLDJHJKJKF #[derive(proto_derive::CmdID)] -#[cmdid(702)] +#[cmdid(785)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SwitchLineupIndexScRsp { - #[prost(uint32, tag = "13")] - pub retcode: u32, - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "14")] pub index: u32, + #[prost(uint32, tag = "12")] + pub retcode: u32, } /// Obf: IGPECPNPCDL #[derive(proto_derive::CmdID)] -#[cmdid(739)] +#[cmdid(738)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SetLineupNameCsReq { - #[prost(string, tag = "14")] + #[prost(string, tag = "4")] pub name: ::prost::alloc::string::String, #[prost(uint32, tag = "12")] pub index: u32, } /// Obf: AJMCNJIGMHN #[derive(proto_derive::CmdID)] -#[cmdid(743)] +#[cmdid(752)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SetLineupNameScRsp { - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "15")] pub retcode: u32, - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "9")] pub index: u32, - #[prost(string, tag = "12")] + #[prost(string, tag = "7")] pub name: ::prost::alloc::string::String, } /// Obf: KIIIGJJJCGG #[derive(proto_derive::CmdID)] -#[cmdid(733)] +#[cmdid(768)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetAllLineupDataCsReq {} /// Obf: NLEGPOOLDDM #[derive(proto_derive::CmdID)] -#[cmdid(742)] +#[cmdid(794)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetAllLineupDataScRsp { - #[prost(message, repeated, tag = "15")] + #[prost(message, repeated, tag = "4")] pub lineup_list: ::prost::alloc::vec::Vec, #[prost(uint32, tag = "3")] - pub retcode: u32, - #[prost(uint32, tag = "7")] pub cur_index: u32, + #[prost(uint32, tag = "7")] + pub retcode: u32, } /// Obf: ALAJHGKJAIB #[derive(proto_derive::CmdID)] -#[cmdid(777)] +#[cmdid(736)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct VirtualLineupDestroyNotify { - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "1")] pub plane_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct LineupSlotData { - #[prost(uint32, tag = "15")] - pub id: u32, - #[prost(enumeration = "AvatarType", tag = "11")] + #[prost(enumeration = "AvatarType", tag = "7")] pub avatar_type: i32, - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "2")] + pub id: u32, + #[prost(uint32, tag = "5")] pub slot: u32, } /// Obf: FEENFGFKLCC #[derive(proto_derive::CmdID)] -#[cmdid(758)] +#[cmdid(787)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ReplaceLineupCsReq { - #[prost(uint32, tag = "1")] - pub plane_id: u32, - #[prost(enumeration = "ExtraLineupType", tag = "14")] - pub extra_lineup_type: i32, - #[prost(bool, tag = "13")] - pub is_virtual: bool, - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "14")] pub index: u32, - #[prost(uint32, tag = "10")] - pub emdhekkocmd: u32, - #[prost(uint32, tag = "6")] - pub leader_slot: u32, - #[prost(message, repeated, tag = "12")] + #[prost(enumeration = "ExtraLineupType", tag = "4")] + pub extra_lineup_type: i32, + #[prost(uint32, tag = "15")] + pub game_story_line_id: u32, + #[prost(uint32, tag = "13")] + pub plane_id: u32, + #[prost(message, repeated, tag = "6")] pub slots: ::prost::alloc::vec::Vec, + #[prost(bool, tag = "9")] + pub is_virtual: bool, + #[prost(uint32, tag = "3")] + pub leader_slot: u32, } /// Obf: KPIFEBMCIJM #[derive(proto_derive::CmdID)] -#[cmdid(721)] +#[cmdid(709)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ReplaceLineupScRsp { - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "14")] pub retcode: u32, } /// Obf: JEKDEEFNHOB #[derive(proto_derive::CmdID)] -#[cmdid(729)] +#[cmdid(706)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ExtraLineupDestroyNotify { - #[prost(enumeration = "ExtraLineupType", tag = "1")] + #[prost(enumeration = "ExtraLineupType", tag = "12")] pub extra_lineup_type: i32, } /// Obf: AFJJIAFIDFI #[derive(proto_derive::CmdID)] -#[cmdid(763)] +#[cmdid(731)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct VirtualLineupTrialAvatarChangeScNotify { - #[prost(uint32, tag = "7")] + #[prost(uint32, repeated, tag = "11")] + pub kfmffggjmne: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "10")] pub plane_id: u32, #[prost(uint32, repeated, tag = "5")] pub iblbnianphd: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "2")] - pub kfmffggjmne: ::prost::alloc::vec::Vec, - #[prost(bool, tag = "14")] + #[prost(bool, tag = "15")] pub cliigmnmhna: bool, } /// Obf: PIJPJCJMIEM #[derive(proto_derive::CmdID)] -#[cmdid(7354)] +#[cmdid(7399)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct LobbyCreateCsReq { - #[prost(message, optional, tag = "11")] - pub ejofcnaedhk: ::core::option::Option, - #[prost(enumeration = "Noogdpkefkl", tag = "9")] + #[prost(enumeration = "Noogdpkefkl", tag = "14")] pub fight_game_mode: i32, - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "2")] pub nepoddojjfe: u32, + #[prost(message, optional, tag = "6")] + pub ejofcnaedhk: ::core::option::Option, } /// Obf: LHONGADOAIA #[derive(proto_derive::CmdID)] -#[cmdid(7396)] +#[cmdid(7377)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct LobbyCreateScRsp { - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "12")] pub nepoddojjfe: u32, - #[prost(message, repeated, tag = "11")] - pub lipjdjpmokb: ::prost::alloc::vec::Vec, - #[prost(uint64, tag = "13")] - pub room_id: u64, - #[prost(enumeration = "Noogdpkefkl", tag = "2")] + #[prost(enumeration = "Noogdpkefkl", tag = "9")] pub fight_game_mode: i32, - #[prost(uint32, tag = "15")] + #[prost(message, repeated, tag = "5")] + pub lipjdjpmokb: ::prost::alloc::vec::Vec, + #[prost(uint64, tag = "11")] + pub room_id: u64, + #[prost(uint32, tag = "4")] pub retcode: u32, } /// Obf: GBHFGGKAIBE #[derive(proto_derive::CmdID)] -#[cmdid(7357)] +#[cmdid(7356)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct LobbyInviteCsReq { - #[prost(uint32, repeated, tag = "12")] + #[prost(uint32, repeated, tag = "8")] pub search_uid_list: ::prost::alloc::vec::Vec, } /// Obf: DGNHNKCLLLG #[derive(proto_derive::CmdID)] -#[cmdid(7400)] +#[cmdid(7378)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct LobbyInviteScRsp { - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "9")] pub retcode: u32, - #[prost(uint32, repeated, tag = "13")] + #[prost(uint32, repeated, tag = "11")] pub search_uid_list: ::prost::alloc::vec::Vec, } /// Obf: IBEGHCAALBN #[derive(proto_derive::CmdID)] -#[cmdid(7352)] +#[cmdid(7368)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct LobbyJoinCsReq { - #[prost(uint64, tag = "12")] + #[prost(uint64, tag = "5")] pub room_id: u64, - #[prost(message, optional, tag = "5")] + #[prost(message, optional, tag = "9")] pub ejofcnaedhk: ::core::option::Option, } /// Obf: CFEGEAAFLCC #[derive(proto_derive::CmdID)] -#[cmdid(7387)] +#[cmdid(7386)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct LobbyJoinScRsp { - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "7")] pub nepoddojjfe: u32, - #[prost(message, repeated, tag = "6")] - pub lipjdjpmokb: ::prost::alloc::vec::Vec, - #[prost(uint64, tag = "7")] - pub room_id: u64, - #[prost(enumeration = "Noogdpkefkl", tag = "13")] - pub fight_game_mode: i32, - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "4")] pub retcode: u32, + #[prost(message, repeated, tag = "11")] + pub lipjdjpmokb: ::prost::alloc::vec::Vec, + #[prost(enumeration = "Noogdpkefkl", tag = "3")] + pub fight_game_mode: i32, + #[prost(uint64, tag = "2")] + pub room_id: u64, } /// Obf: LJHPEEBAKJN #[derive(proto_derive::CmdID)] -#[cmdid(7390)] +#[cmdid(7369)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct LobbyQuitCsReq {} /// Obf: HCDCFKILGJF #[derive(proto_derive::CmdID)] -#[cmdid(7370)] +#[cmdid(7376)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct LobbyQuitScRsp { - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "2")] pub retcode: u32, } /// Obf: CLBJAADLIPM #[derive(proto_derive::CmdID)] -#[cmdid(7386)] +#[cmdid(7361)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct LobbyStartFightCsReq {} /// Obf: KBCODEJNDJF #[derive(proto_derive::CmdID)] -#[cmdid(7367)] +#[cmdid(7387)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct LobbyStartFightScRsp { - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "5")] pub retcode: u32, } /// Obf: HFEEHJGOKDP #[derive(proto_derive::CmdID)] -#[cmdid(7377)] +#[cmdid(7367)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct LobbyModifyPlayerInfoCsReq { - #[prost(uint32, tag = "6")] - pub hfdjaelbnga: u32, #[prost(message, optional, tag = "5")] pub ejofcnaedhk: ::core::option::Option, - #[prost(enumeration = "Aokdmakgdgj", tag = "3")] + #[prost(uint32, tag = "4")] + pub hfdjaelbnga: u32, + #[prost(enumeration = "Aokdmakgdgj", tag = "14")] pub slot: i32, } /// Obf: CGEGEGAOGGP #[derive(proto_derive::CmdID)] -#[cmdid(7365)] +#[cmdid(7389)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct LobbyModifyPlayerInfoScRsp { - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "3")] pub retcode: u32, } /// Obf: GEBOIFMBHCM @@ -13000,1110 +14233,1279 @@ pub struct LobbyModifyPlayerInfoScRsp { #[cmdid(7395)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct LobbySyncInfoScNotify { - #[prost(uint32, tag = "5")] - pub uid: u32, - #[prost(enumeration = "Aokdmakgdgj", tag = "9")] - pub slot: i32, - #[prost(message, repeated, tag = "14")] + #[prost(message, repeated, tag = "4")] pub lipjdjpmokb: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "8")] + pub uid: u32, + #[prost(enumeration = "Aokdmakgdgj", tag = "11")] + pub slot: i32, } /// Obf: MLNDBAMAFBP #[derive(proto_derive::CmdID)] -#[cmdid(7393)] +#[cmdid(7362)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct LobbyKickOutCsReq { - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "8")] pub uid: u32, } /// Obf: ADMNOLCLGNA #[derive(proto_derive::CmdID)] -#[cmdid(7359)] +#[cmdid(7360)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct LobbyKickOutScRsp { - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "6")] pub retcode: u32, } /// Obf: GDIPNFLLJGP #[derive(proto_derive::CmdID)] -#[cmdid(7394)] +#[cmdid(7384)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct LobbyInviteScNotify { - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "5")] pub room_id: u32, - #[prost(enumeration = "Noogdpkefkl", tag = "13")] + #[prost(enumeration = "Noogdpkefkl", tag = "11")] pub fight_game_mode: i32, - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "13")] pub sender_uid: u32, } /// Obf: IDHKGFNBGKD #[derive(proto_derive::CmdID)] -#[cmdid(7382)] +#[cmdid(7396)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct LobbyGetInfoCsReq {} /// Obf: FBOGFJHOKFJ #[derive(proto_derive::CmdID)] -#[cmdid(7373)] +#[cmdid(7372)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct LobbyGetInfoScRsp { - #[prost(uint32, tag = "8")] - pub nepoddojjfe: u32, - #[prost(uint64, tag = "6")] - pub nogfeemnhpc: u64, - #[prost(uint64, tag = "7")] - pub room_id: u64, - #[prost(message, repeated, tag = "13")] - pub lipjdjpmokb: ::prost::alloc::vec::Vec, - #[prost(enumeration = "Noogdpkefkl", tag = "5")] - pub fight_game_mode: i32, #[prost(uint32, tag = "3")] + pub nepoddojjfe: u32, + #[prost(message, repeated, tag = "12")] + pub lipjdjpmokb: ::prost::alloc::vec::Vec, + #[prost(uint64, tag = "13")] + pub room_id: u64, + #[prost(enumeration = "Noogdpkefkl", tag = "14")] + pub fight_game_mode: i32, + #[prost(uint64, tag = "5")] + pub nogfeemnhpc: u64, + #[prost(uint32, tag = "15")] pub retcode: u32, } /// Obf: ADODLHLIPMF #[derive(proto_derive::CmdID)] -#[cmdid(7376)] +#[cmdid(7375)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct LobbyInteractCsReq { - #[prost(enumeration = "Imaonmhilne", tag = "2")] + #[prost(enumeration = "Imaonmhilne", tag = "1")] pub ihcilnhklmc: i32, - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "7")] pub cbegnbkmhcd: u32, } /// Obf: NDKKNNCBIAO #[derive(proto_derive::CmdID)] -#[cmdid(7372)] +#[cmdid(7393)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct LobbyInteractScRsp { #[prost(uint32, tag = "10")] - pub cbegnbkmhcd: u32, - #[prost(uint32, tag = "11")] pub retcode: u32, + #[prost(uint32, tag = "13")] + pub cbegnbkmhcd: u32, } /// Obf: JGPIFOIJFBK #[derive(proto_derive::CmdID)] -#[cmdid(7366)] +#[cmdid(7380)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct LobbyInteractScNotify { - #[prost(enumeration = "Imaonmhilne", tag = "7")] - pub ihcilnhklmc: i32, - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "12")] pub sender_uid: u32, + #[prost(enumeration = "Imaonmhilne", tag = "2")] + pub ihcilnhklmc: i32, } /// Obf: DMMEIAACHJE #[derive(proto_derive::CmdID)] -#[cmdid(895)] +#[cmdid(820)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetMailCsReq { - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "15")] pub cijefnoojjk: u32, - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "2")] pub dapcdnelcma: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ClientMail { - #[prost(bool, tag = "12")] - pub is_read: bool, - #[prost(int64, tag = "6")] - pub time: i64, - #[prost(message, optional, tag = "13")] - pub attachment: ::core::option::Option, - #[prost(uint32, tag = "9")] - pub template_id: u32, - #[prost(string, repeated, tag = "14")] - pub para_list: ::prost::alloc::vec::Vec<::prost::alloc::string::String>, - #[prost(enumeration = "MailType", tag = "8")] - pub mail_type: i32, - #[prost(int64, tag = "1")] - pub expire_time: i64, - #[prost(uint32, tag = "10")] - pub id: u32, - #[prost(string, tag = "5")] - pub sender: ::prost::alloc::string::String, #[prost(string, tag = "2")] + pub sender: ::prost::alloc::string::String, + #[prost(enumeration = "MailType", tag = "13")] + pub mail_type: i32, + #[prost(uint32, tag = "1")] + pub id: u32, + #[prost(int64, tag = "10")] + pub expire_time: i64, + #[prost(string, repeated, tag = "7")] + pub para_list: ::prost::alloc::vec::Vec<::prost::alloc::string::String>, + #[prost(string, tag = "9")] pub title: ::prost::alloc::string::String, - #[prost(string, tag = "4")] + #[prost(bool, tag = "4")] + pub is_read: bool, + #[prost(string, tag = "5")] pub content: ::prost::alloc::string::String, + #[prost(int64, tag = "12")] + pub time: i64, + #[prost(uint32, tag = "11")] + pub template_id: u32, + #[prost(message, optional, tag = "15")] + pub attachment: ::core::option::Option, } /// Obf: GetMailScRsp #[derive(proto_derive::CmdID)] -#[cmdid(832)] +#[cmdid(891)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetMailScRsp { - #[prost(message, repeated, tag = "12")] - pub mail_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "7")] - pub retcode: u32, - #[prost(uint32, tag = "14")] - pub start: u32, + #[prost(bool, tag = "6")] + pub is_end: bool, #[prost(uint32, tag = "13")] pub total_num: u32, - #[prost(message, repeated, tag = "3")] + #[prost(uint32, tag = "12")] + pub start: u32, + #[prost(uint32, tag = "15")] + pub retcode: u32, + #[prost(message, repeated, tag = "11")] pub notice_mail_list: ::prost::alloc::vec::Vec, - #[prost(bool, tag = "8")] - pub is_end: bool, + #[prost(message, repeated, tag = "2")] + pub mail_list: ::prost::alloc::vec::Vec, } /// Obf: HIJLOFHDMPP #[derive(proto_derive::CmdID)] -#[cmdid(831)] +#[cmdid(867)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MarkReadMailCsReq { - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "6")] pub id: u32, } /// Obf: ICHOMJJHEGI #[derive(proto_derive::CmdID)] -#[cmdid(840)] +#[cmdid(839)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MarkReadMailScRsp { - #[prost(uint32, tag = "8")] - pub id: u32, - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "6")] pub retcode: u32, + #[prost(uint32, tag = "1")] + pub id: u32, } /// Obf: NGIBFKBABOH #[derive(proto_derive::CmdID)] -#[cmdid(876)] +#[cmdid(827)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct DelMailCsReq { - #[prost(uint32, repeated, tag = "1")] + #[prost(uint32, repeated, tag = "12")] pub id_list: ::prost::alloc::vec::Vec, } /// Obf: DelMailScRsp #[derive(proto_derive::CmdID)] -#[cmdid(848)] +#[cmdid(821)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct DelMailScRsp { - #[prost(uint32, repeated, tag = "4")] - pub id_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "3")] pub retcode: u32, + #[prost(uint32, repeated, tag = "1")] + pub id_list: ::prost::alloc::vec::Vec, } /// Obf: NHMFCFKCFIL #[derive(proto_derive::CmdID)] -#[cmdid(871)] +#[cmdid(870)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TakeMailAttachmentCsReq { - #[prost(uint32, repeated, tag = "7")] - pub mail_id_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "8")] pub optional_reward_id: u32, + #[prost(uint32, repeated, tag = "1")] + pub mail_id_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ClientMailAttachmentItem { - #[prost(uint32, tag = "3")] - pub item_id: u32, - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "7")] pub mail_id: u32, + #[prost(uint32, tag = "4")] + pub item_id: u32, } /// Obf: TakeMailAttachmentScRsp #[derive(proto_derive::CmdID)] -#[cmdid(852)] +#[cmdid(859)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TakeMailAttachmentScRsp { - #[prost(uint32, repeated, tag = "15")] - pub succ_mail_id_list: ::prost::alloc::vec::Vec, - #[prost(message, optional, tag = "12")] + #[prost(message, optional, tag = "5")] pub attachment: ::core::option::Option, - #[prost(message, repeated, tag = "7")] + #[prost(message, repeated, tag = "2")] pub fail_mail_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "6")] + #[prost(uint32, repeated, tag = "14")] + pub succ_mail_id_list: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "8")] pub retcode: u32, } /// Obf: NewMailScNotify #[derive(proto_derive::CmdID)] -#[cmdid(822)] +#[cmdid(854)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct NewMailScNotify { - #[prost(uint32, repeated, tag = "6")] + #[prost(uint32, repeated, tag = "2")] pub mail_id_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MapRotationData { - #[prost(message, optional, tag = "6")] - pub map_info: ::core::option::Option, - #[prost(uint32, tag = "15")] - pub nflbondjaie: u32, - #[prost(int32, tag = "4")] - pub acnpbbnlmie: i32, - #[prost(message, repeated, tag = "7")] + #[prost(message, repeated, tag = "4")] pub rotater_data_list: ::prost::alloc::vec::Vec, - #[prost(bool, tag = "13")] + #[prost(bool, tag = "9")] pub ighlhohcckc: bool, + #[prost(message, optional, tag = "11")] + pub map_info: ::core::option::Option, + #[prost(uint32, tag = "14")] + pub nflbondjaie: u32, #[prost(message, optional, tag = "8")] pub energy_info: ::core::option::Option, - #[prost(message, repeated, tag = "11")] + #[prost(int32, tag = "6")] + pub acnpbbnlmie: i32, + #[prost(message, repeated, tag = "1")] pub charger_info_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RotatorEnergyInfo { #[prost(uint32, tag = "15")] - pub cur_num: u32, - #[prost(uint32, tag = "14")] pub max_num: u32, + #[prost(uint32, tag = "10")] + pub cur_num: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RotateMapInfo { - #[prost(message, optional, tag = "4")] + #[prost(message, optional, tag = "14")] pub rotate_vector: ::core::option::Option, - #[prost(message, optional, tag = "10")] + #[prost(message, optional, tag = "11")] pub vector: ::core::option::Option, } /// Obf: BCIPJENMJCE #[derive(proto_derive::CmdID)] -#[cmdid(6895)] +#[cmdid(6820)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct EnterMapRotationRegionCsReq { - #[prost(message, optional, tag = "7")] + #[prost(message, optional, tag = "4")] pub motion: ::core::option::Option, + #[prost(uint32, tag = "3")] + pub nflbondjaie: u32, #[prost(uint32, tag = "13")] pub acnpbbnlmie: u32, - #[prost(uint32, tag = "6")] - pub nflbondjaie: u32, } /// Obf: GANIBGECNNI #[derive(proto_derive::CmdID)] -#[cmdid(6832)] +#[cmdid(6891)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct EnterMapRotationRegionScRsp { - #[prost(message, optional, tag = "10")] - pub energy_info: ::core::option::Option, - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "14")] pub nflbondjaie: u32, - #[prost(message, optional, tag = "2")] - pub motion: ::core::option::Option, - #[prost(uint32, tag = "3")] - pub retcode: u32, - #[prost(uint32, tag = "12")] - pub client_pos_version: u32, #[prost(uint32, tag = "15")] + pub client_pos_version: u32, + #[prost(message, optional, tag = "6")] + pub motion: ::core::option::Option, + #[prost(message, optional, tag = "2")] + pub energy_info: ::core::option::Option, + #[prost(uint32, tag = "10")] + pub retcode: u32, + #[prost(uint32, tag = "8")] pub acnpbbnlmie: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ChargerInfo { - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "10")] pub group_id: u32, - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "13")] pub glhagjgaehe: u32, } /// Obf: JIIHJIMEMPJ #[derive(proto_derive::CmdID)] -#[cmdid(6831)] +#[cmdid(6867)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct InteractChargerCsReq { - #[prost(message, optional, tag = "7")] + #[prost(message, optional, tag = "5")] pub charger_info: ::core::option::Option, } /// Obf: ICLACJJDKBC #[derive(proto_derive::CmdID)] -#[cmdid(6840)] +#[cmdid(6839)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct InteractChargerScRsp { - #[prost(message, optional, tag = "12")] - pub charger_info: ::core::option::Option, - #[prost(message, optional, tag = "8")] - pub energy_info: ::core::option::Option, - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "13")] pub retcode: u32, + #[prost(message, optional, tag = "5")] + pub charger_info: ::core::option::Option, + #[prost(message, optional, tag = "4")] + pub energy_info: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RotaterData { - #[prost(uint32, tag = "5")] - pub glhagjgaehe: u32, - #[prost(uint32, tag = "8")] - pub group_id: u32, #[prost(float, tag = "15")] pub lkefolcgfgd: f32, + #[prost(uint32, tag = "5")] + pub group_id: u32, + #[prost(uint32, tag = "7")] + pub glhagjgaehe: u32, } /// Obf: MHECGOKNFLM #[derive(proto_derive::CmdID)] -#[cmdid(6876)] +#[cmdid(6827)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct DeployRotaterCsReq { - #[prost(message, optional, tag = "4")] + #[prost(message, optional, tag = "11")] pub rotater_data: ::core::option::Option, } /// Obf: IMKHHNDLJAK #[derive(proto_derive::CmdID)] -#[cmdid(6848)] +#[cmdid(6821)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct DeployRotaterScRsp { - #[prost(message, optional, tag = "15")] + #[prost(message, optional, tag = "14")] pub energy_info: ::core::option::Option, - #[prost(message, optional, tag = "7")] - pub rotater_data: ::core::option::Option, - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "15")] pub retcode: u32, + #[prost(message, optional, tag = "3")] + pub rotater_data: ::core::option::Option, } /// Obf: JACPADNMLAF #[derive(proto_derive::CmdID)] -#[cmdid(6871)] +#[cmdid(6870)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RotateMapCsReq { - #[prost(uint32, tag = "14")] - pub group_id: u32, #[prost(message, optional, tag = "6")] pub map_info: ::core::option::Option, - #[prost(message, optional, tag = "3")] - pub motion: ::core::option::Option, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "1")] pub glhagjgaehe: u32, + #[prost(message, optional, tag = "5")] + pub motion: ::core::option::Option, + #[prost(uint32, tag = "14")] + pub group_id: u32, } /// Obf: NLFMALJPEDM #[derive(proto_derive::CmdID)] -#[cmdid(6852)] +#[cmdid(6859)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RotateMapScRsp { - #[prost(message, optional, tag = "11")] - pub motion: ::core::option::Option, - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "14")] pub client_pos_version: u32, - #[prost(uint32, tag = "8")] + #[prost(message, optional, tag = "9")] + pub motion: ::core::option::Option, + #[prost(uint32, tag = "5")] pub retcode: u32, } /// Obf: FCNKMDHNMNL #[derive(proto_derive::CmdID)] -#[cmdid(6822)] +#[cmdid(6854)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct LeaveMapRotationRegionCsReq { - #[prost(message, optional, tag = "11")] + #[prost(message, optional, tag = "14")] pub motion: ::core::option::Option, } /// Obf: CDKKKKKFGDN #[derive(proto_derive::CmdID)] -#[cmdid(6856)] +#[cmdid(6877)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct LeaveMapRotationRegionScRsp { - #[prost(uint32, tag = "3")] - pub retcode: u32, - #[prost(uint32, tag = "1")] - pub client_pos_version: u32, - #[prost(message, optional, tag = "10")] + #[prost(message, optional, tag = "2")] pub motion: ::core::option::Option, + #[prost(uint32, tag = "15")] + pub client_pos_version: u32, + #[prost(uint32, tag = "5")] + pub retcode: u32, } /// Obf: MNAKOONBLEC #[derive(proto_derive::CmdID)] -#[cmdid(6872)] +#[cmdid(6880)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetMapRotationDataCsReq {} /// Obf: BMCKKKBCPBN #[derive(proto_derive::CmdID)] -#[cmdid(6885)] +#[cmdid(6802)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetMapRotationDataScRsp { - #[prost(message, optional, tag = "7")] - pub map_info: ::core::option::Option, - #[prost(uint32, tag = "6")] - pub nflbondjaie: u32, - #[prost(message, repeated, tag = "13")] - pub charger_info_list: ::prost::alloc::vec::Vec, - #[prost(int32, tag = "2")] - pub acnpbbnlmie: i32, - #[prost(message, optional, tag = "15")] - pub energy_info: ::core::option::Option, - #[prost(uint32, tag = "3")] - pub retcode: u32, - #[prost(bool, tag = "10")] - pub omejllmnpcn: bool, - #[prost(message, repeated, tag = "11")] + #[prost(message, repeated, tag = "15")] pub rotater_data_list: ::prost::alloc::vec::Vec, + #[prost(message, optional, tag = "12")] + pub map_info: ::core::option::Option, + #[prost(message, repeated, tag = "11")] + pub charger_info_list: ::prost::alloc::vec::Vec, + #[prost(message, optional, tag = "13")] + pub energy_info: ::core::option::Option, + #[prost(uint32, tag = "9")] + pub nflbondjaie: u32, + #[prost(int32, tag = "5")] + pub acnpbbnlmie: i32, + #[prost(uint32, tag = "7")] + pub retcode: u32, + #[prost(bool, tag = "4")] + pub omejllmnpcn: bool, } /// Obf: OGIKFNAJMKD #[derive(proto_derive::CmdID)] -#[cmdid(6816)] +#[cmdid(6805)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ResetMapRotationRegionCsReq { + #[prost(message, optional, tag = "15")] + pub motion: ::core::option::Option, #[prost(message, optional, tag = "9")] pub map_info: ::core::option::Option, - #[prost(message, optional, tag = "8")] - pub motion: ::core::option::Option, } /// Obf: FJDJOHKOALD #[derive(proto_derive::CmdID)] -#[cmdid(6846)] +#[cmdid(6874)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ResetMapRotationRegionScRsp { - #[prost(uint32, tag = "12")] - pub retcode: u32, - #[prost(message, optional, tag = "8")] - pub motion: ::core::option::Option, - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "9")] pub client_pos_version: u32, + #[prost(message, optional, tag = "1")] + pub motion: ::core::option::Option, + #[prost(uint32, tag = "13")] + pub retcode: u32, } /// Obf: AGKAIGOINHH #[derive(proto_derive::CmdID)] -#[cmdid(6883)] +#[cmdid(6873)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct LeaveMapRotationRegionScNotify {} /// Obf: FBFGHEMDPLC #[derive(proto_derive::CmdID)] -#[cmdid(6860)] +#[cmdid(6898)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct UpdateEnergyScNotify { - #[prost(message, optional, tag = "12")] + #[prost(message, optional, tag = "9")] pub energy_info: ::core::option::Option, } /// Obf: MLDGPOOKPBM #[derive(proto_derive::CmdID)] -#[cmdid(6802)] +#[cmdid(6885)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct UpdateMapRotationDataScNotify { - #[prost(message, optional, tag = "4")] + #[prost(message, optional, tag = "1")] pub map_info: ::core::option::Option, - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "15")] pub nflbondjaie: u32, - #[prost(message, repeated, tag = "13")] - pub charger_info_list: ::prost::alloc::vec::Vec, #[prost(message, optional, tag = "14")] pub energy_info: ::core::option::Option, - #[prost(message, repeated, tag = "6")] + #[prost(message, repeated, tag = "10")] + pub charger_info_list: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "13")] pub rotater_data_list: ::prost::alloc::vec::Vec, - #[prost(bool, tag = "15")] - pub omejllmnpcn: bool, - #[prost(int32, tag = "5")] + #[prost(int32, tag = "3")] pub acnpbbnlmie: i32, + #[prost(bool, tag = "8")] + pub omejllmnpcn: bool, } /// Obf: EFLGMAFLDGK #[derive(proto_derive::CmdID)] -#[cmdid(6839)] +#[cmdid(6838)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RemoveRotaterCsReq { - #[prost(message, optional, tag = "5")] + #[prost(message, optional, tag = "8")] pub rotater_data: ::core::option::Option, } /// Obf: APBBFPABNII #[derive(proto_derive::CmdID)] -#[cmdid(6843)] +#[cmdid(6852)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RemoveRotaterScRsp { - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "8")] pub retcode: u32, - #[prost(message, optional, tag = "7")] - pub energy_info: ::core::option::Option, #[prost(message, optional, tag = "9")] pub rotater_data: ::core::option::Option, + #[prost(message, optional, tag = "11")] + pub energy_info: ::core::option::Option, } /// Obf: IGPELCGOPMD #[derive(proto_derive::CmdID)] -#[cmdid(6833)] +#[cmdid(6868)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct UpdateRotaterScNotify { - #[prost(message, repeated, tag = "8")] + #[prost(message, repeated, tag = "11")] pub rotater_data_list: ::prost::alloc::vec::Vec, } /// Obf: GCFNLGIEEFA #[derive(proto_derive::CmdID)] -#[cmdid(8284)] +#[cmdid(8288)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MarbleGetDataCsReq {} /// Obf: OFNGFMDFDCH #[derive(proto_derive::CmdID)] -#[cmdid(8283)] +#[cmdid(8279)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MarbleGetDataScRsp { - #[prost(uint32, repeated, tag = "9")] - pub iogdkgfdfpc: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "7")] - pub ojnpgiljien: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "14")] pub retcode: u32, - #[prost(uint32, repeated, tag = "4")] + #[prost(uint32, repeated, tag = "11")] pub mpbmpffgibo: ::prost::alloc::vec::Vec, - #[prost(int32, tag = "15")] + #[prost(uint32, repeated, tag = "15")] + pub ojnpgiljien: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "10")] + pub iogdkgfdfpc: ::prost::alloc::vec::Vec, + #[prost(int32, tag = "12")] pub score: i32, } /// Obf: GDCEEEKKMHC #[derive(proto_derive::CmdID)] -#[cmdid(8278)] +#[cmdid(8280)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MarbleLevelFinishCsReq { - #[prost(uint32, tag = "1")] - pub nlibkabfgcc: u32, - #[prost(uint32, repeated, tag = "14")] - pub pmkangdflki: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "8")] + pub marble_seal_id_list: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "4")] + pub marble_level_id: u32, } /// Obf: FPOHCPKLLDB #[derive(proto_derive::CmdID)] -#[cmdid(8280)] +#[cmdid(8286)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MarbleLevelFinishScRsp { - #[prost(uint32, tag = "7")] - pub nlibkabfgcc: u32, - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "12")] pub retcode: u32, + #[prost(uint32, tag = "8")] + pub marble_level_id: u32, } /// Obf: ELMECJPPBJC #[derive(proto_derive::CmdID)] -#[cmdid(8274)] +#[cmdid(8277)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MarbleShopBuyCsReq { - #[prost(uint32, repeated, tag = "11")] - pub pmkangdflki: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "14")] + pub marble_seal_id_list: ::prost::alloc::vec::Vec, } /// Obf: BIIBJHACDLB #[derive(proto_derive::CmdID)] -#[cmdid(8272)] +#[cmdid(8281)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MarbleShopBuyScRsp { - #[prost(uint32, repeated, tag = "11")] - pub pmkangdflki: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "3")] pub retcode: u32, + #[prost(uint32, repeated, tag = "5")] + pub marble_seal_id_list: ::prost::alloc::vec::Vec, } /// Obf: DCPFKNACOFP #[derive(proto_derive::CmdID)] -#[cmdid(8290)] +#[cmdid(8275)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MarbleUnlockSealScNotify { - #[prost(uint32, repeated, tag = "5")] - pub pmkangdflki: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "2")] + pub marble_seal_id_list: ::prost::alloc::vec::Vec, } /// Obf: KLCGCHENFBG #[derive(proto_derive::CmdID)] -#[cmdid(8279)] +#[cmdid(8273)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MarblePvpDataUpdateScNotify { - #[prost(int32, tag = "4")] + #[prost(int32, tag = "13")] pub score: i32, } /// Obf: COAMELCLLIA #[derive(proto_derive::CmdID)] -#[cmdid(8277)] +#[cmdid(8284)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MarbleUpdateShownSealCsReq { - #[prost(uint32, repeated, tag = "6")] - pub ehenkplcpch: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "1")] + pub shown_seal_list: ::prost::alloc::vec::Vec, } /// Obf: CBLDNNGEMFC #[derive(proto_derive::CmdID)] -#[cmdid(8273)] +#[cmdid(8289)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MarbleUpdateShownSealScRsp { - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "14")] pub retcode: u32, - #[prost(uint32, repeated, tag = "9")] - pub ehenkplcpch: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "13")] + pub shown_seal_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Mjfcembpich { #[prost(uint32, tag = "3")] - pub plane_id: u32, - #[prost(uint32, tag = "4")] pub config_id: u32, - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "1")] pub group_id: u32, #[prost(uint32, tag = "15")] pub floor_id: u32, + #[prost(uint32, tag = "9")] + pub plane_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Ibcgaglolna { - #[prost(uint32, tag = "6")] - pub hobjminnbop: u32, - #[prost(message, repeated, tag = "15")] + #[prost(message, repeated, tag = "6")] pub bcemakcmadn: ::prost::alloc::vec::Vec, - #[prost(int64, tag = "12")] + #[prost(uint32, tag = "5")] + pub hobjminnbop: u32, + #[prost(int64, tag = "2")] pub jjcipimcbbj: i64, } /// Obf: GGINONMHBKH #[derive(proto_derive::CmdID)] -#[cmdid(8194)] +#[cmdid(8198)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetMarkChestCsReq {} /// Obf: GOMJNODBOCJ #[derive(proto_derive::CmdID)] -#[cmdid(8193)] +#[cmdid(8189)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetMarkChestScRsp { - #[prost(message, repeated, tag = "13")] + #[prost(message, repeated, tag = "8")] pub hiccaiapgmm: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "5")] pub retcode: u32, } /// Obf: IJDKOLEICOJ #[derive(proto_derive::CmdID)] -#[cmdid(8188)] +#[cmdid(8190)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct UpdateMarkChestCsReq { - #[prost(message, repeated, tag = "9")] + #[prost(message, repeated, tag = "5")] pub bcemakcmadn: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "12")] pub dbfpaafodkg: u32, - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "14")] pub hobjminnbop: u32, } /// Obf: MNJGDBOAHJB #[derive(proto_derive::CmdID)] -#[cmdid(8190)] +#[cmdid(8196)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct UpdateMarkChestScRsp { - #[prost(uint32, tag = "14")] - pub retcode: u32, - #[prost(uint32, tag = "2")] - pub dbfpaafodkg: u32, - #[prost(message, repeated, tag = "15")] + #[prost(message, repeated, tag = "6")] pub hiccaiapgmm: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "9")] pub hobjminnbop: u32, + #[prost(uint32, tag = "5")] + pub dbfpaafodkg: u32, + #[prost(uint32, tag = "2")] + pub retcode: u32, } /// Obf: CHOEBMGIKBN #[derive(proto_derive::CmdID)] -#[cmdid(8184)] +#[cmdid(8187)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MarkChestChangedScNotify { - #[prost(message, repeated, tag = "11")] + #[prost(message, repeated, tag = "6")] pub hiccaiapgmm: ::prost::alloc::vec::Vec, } /// Obf: DIPCGPPPIFM #[derive(proto_derive::CmdID)] -#[cmdid(7304)] +#[cmdid(7349)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct StartMatchCsReq { - #[prost(enumeration = "Noogdpkefkl", tag = "2")] + #[prost(enumeration = "Noogdpkefkl", tag = "12")] pub fight_game_mode: i32, - #[prost(message, optional, tag = "6")] + #[prost(message, optional, tag = "3")] pub ejofcnaedhk: ::core::option::Option, } /// Obf: LHIBLDGHJPO #[derive(proto_derive::CmdID)] -#[cmdid(7346)] +#[cmdid(7327)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct StartMatchScRsp { - #[prost(message, optional, tag = "3")] + #[prost(message, optional, tag = "7")] pub ejofcnaedhk: ::core::option::Option, - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "12")] pub retcode: u32, } /// Obf: NIKJIKNJOJP #[derive(proto_derive::CmdID)] -#[cmdid(7302)] +#[cmdid(7318)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct CancelMatchCsReq {} /// Obf: LFAHPLFNMBF #[derive(proto_derive::CmdID)] -#[cmdid(7337)] +#[cmdid(7336)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct CancelMatchScRsp { - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "13")] pub retcode: u32, } /// Obf: BGAEOIBBAHO #[derive(proto_derive::CmdID)] -#[cmdid(7336)] +#[cmdid(7311)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MatchResultScNotify { - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "12")] pub retcode: u32, - #[prost(message, repeated, tag = "6")] + #[prost(message, repeated, tag = "8")] pub lipjdjpmokb: ::prost::alloc::vec::Vec, } /// Obf: KELFFABDNPC #[derive(proto_derive::CmdID)] -#[cmdid(7317)] +#[cmdid(7337)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetCrossInfoCsReq {} /// Obf: AIIPLMKCGDA #[derive(proto_derive::CmdID)] -#[cmdid(7327)] +#[cmdid(7317)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetCrossInfoScRsp { - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "9")] pub retcode: u32, - #[prost(uint64, tag = "3")] + #[prost(uint64, tag = "8")] pub room_id: u64, - #[prost(enumeration = "Noogdpkefkl", tag = "8")] + #[prost(enumeration = "Noogdpkefkl", tag = "12")] pub fight_game_mode: i32, #[prost(uint64, tag = "1")] pub nogfeemnhpc: u64, } /// Obf: OFMCCFJNGEF #[derive(proto_derive::CmdID)] -#[cmdid(7404)] +#[cmdid(7449)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MatchThreeGetDataCsReq {} #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Lmpiecfmfoi { - #[prost(uint32, tag = "4")] - pub ebgmbdmpegm: u32, - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "11")] pub acjcphifmln: u32, + #[prost(uint32, tag = "7")] + pub ebgmbdmpegm: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Dhonnihmaci { - #[prost(uint32, tag = "12")] - pub pos: u32, - #[prost(uint32, tag = "4")] - pub count: u32, - #[prost(uint32, tag = "13")] - pub bkmpfeocfib: u32, - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "8")] pub fmkkabmdinj: u32, + #[prost(uint32, tag = "11")] + pub bkmpfeocfib: u32, + #[prost(uint32, tag = "14")] + pub pos: u32, + #[prost(uint32, tag = "10")] + pub count: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Abgejnbcdjk { + #[prost(message, repeated, tag = "6")] + pub bgafcobnlpm: ::prost::alloc::vec::Vec, #[prost(map = "uint32, uint32", tag = "15")] pub ilbhdlmlmck: ::std::collections::HashMap, - #[prost(message, repeated, tag = "13")] - pub bgafcobnlpm: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "14")] - pub jmbciclchkd: ::prost::alloc::vec::Vec, - #[prost(map = "uint32, uint32", tag = "1")] + #[prost(map = "uint32, uint32", tag = "8")] pub begmfiaphlm: ::std::collections::HashMap, + #[prost(message, repeated, tag = "3")] + pub jmbciclchkd: ::prost::alloc::vec::Vec, } /// Obf: CLNGGBNIFJL #[derive(proto_derive::CmdID)] -#[cmdid(7446)] +#[cmdid(7427)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MatchThreeGetDataScRsp { - #[prost(uint32, tag = "7")] - pub retcode: u32, - #[prost(message, optional, tag = "5")] + #[prost(message, optional, tag = "13")] pub mfkjdoeblim: ::core::option::Option, + #[prost(uint32, tag = "8")] + pub retcode: u32, } /// Obf: BBDEFCGCKDC #[derive(proto_derive::CmdID)] -#[cmdid(7402)] +#[cmdid(7418)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MatchThreeLevelEndCsReq { - #[prost(string, tag = "15")] + #[prost(uint32, repeated, tag = "9")] + pub jeppfdinbnb: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "13")] + pub fmkkabmdinj: u32, + #[prost(map = "uint32, uint32", tag = "12")] + pub ilbhdlmlmck: ::std::collections::HashMap, + #[prost(uint32, tag = "14")] + pub bkmpfeocfib: u32, + #[prost(string, tag = "3")] pub miilnlhddjm: ::prost::alloc::string::String, #[prost(uint32, tag = "7")] - pub bkmpfeocfib: u32, - #[prost(map = "uint32, uint32", tag = "9")] - pub ilbhdlmlmck: ::std::collections::HashMap, - #[prost(uint32, tag = "12")] - pub fmkkabmdinj: u32, - #[prost(uint32, repeated, tag = "2")] - pub jeppfdinbnb: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "3")] pub ebgmbdmpegm: u32, - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "6")] pub acjcphifmln: u32, } /// Obf: NNJADKELKCK #[derive(proto_derive::CmdID)] -#[cmdid(7437)] +#[cmdid(7436)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MatchThreeLevelEndScRsp { - #[prost(uint32, tag = "5")] - pub retcode: u32, #[prost(uint32, tag = "2")] - pub ebgmbdmpegm: u32, - #[prost(uint32, tag = "7")] + pub retcode: u32, + #[prost(uint32, tag = "15")] pub acjcphifmln: u32, + #[prost(uint32, tag = "7")] + pub ebgmbdmpegm: u32, } /// Obf: ALIAOBCDFDG #[derive(proto_derive::CmdID)] -#[cmdid(7436)] +#[cmdid(7411)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MatchThreeSyncDataScNotify { - #[prost(message, optional, tag = "1")] + #[prost(message, optional, tag = "6")] pub mfkjdoeblim: ::core::option::Option, } /// Obf: JFHHMNCCCDB #[derive(proto_derive::CmdID)] -#[cmdid(7417)] +#[cmdid(7437)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MatchThreeSetBirdPosCsReq { - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "13")] pub bkmpfeocfib: u32, - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "2")] pub pos: u32, } /// Obf: OAFAJMBNNNG #[derive(proto_derive::CmdID)] -#[cmdid(7427)] +#[cmdid(7417)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MatchThreeSetBirdPosScRsp { - #[prost(uint32, tag = "12")] - pub retcode: u32, - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "15")] pub pos: u32, - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "12")] pub bkmpfeocfib: u32, + #[prost(uint32, tag = "5")] + pub retcode: u32, +} +/// Obf: EOEIBIBHNIG +#[derive(proto_derive::CmdID)] +#[cmdid(7439)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct MatchThreeV2GetDataCsReq {} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Gnebbaeikgj { + #[prost(uint32, tag = "7")] + pub acjcphifmln: u32, + #[prost(uint32, repeated, tag = "2")] + pub akloeigkgan: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Lnoikgkjhlk { + #[prost(uint32, tag = "8")] + pub fmkkabmdinj: u32, + #[prost(uint32, tag = "1")] + pub bkmpfeocfib: u32, + #[prost(uint32, tag = "13")] + pub pos: u32, + #[prost(uint32, tag = "14")] + pub count: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Kfnjakgefla { + #[prost(uint32, tag = "9")] + pub cdmpogjjmjm: u32, + #[prost(message, repeated, tag = "3")] + pub hlpodgbclka: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "12")] + pub edgjddiepag: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "7")] + pub ehbghcgkfbh: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "5")] + pub bgafcobnlpm: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "11")] + pub omkfkgigfpp: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "10")] + pub dpbmlffpokh: u32, +} +/// Obf: EOLNHMGCMCJ +#[derive(proto_derive::CmdID)] +#[cmdid(7412)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct MatchThreeV2GetDataScRsp { + #[prost(uint32, tag = "14")] + pub retcode: u32, + #[prost(message, optional, tag = "9")] + pub eahmjfllggk: ::core::option::Option, +} +/// Obf: BCLHKPGIIMG +#[derive(proto_derive::CmdID)] +#[cmdid(7410)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct MatchThreeV2BattleItemLevelUpCsReq { + #[prost(uint32, tag = "10")] + pub dmkfffpdldi: u32, + #[prost(uint32, tag = "14")] + pub ldnjeacfbje: u32, +} +/// Obf: NLKKKHHJLLA +#[derive(proto_derive::CmdID)] +#[cmdid(7445)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct MatchThreeV2BattleItemLevelUpScRsp { + #[prost(uint32, tag = "12")] + pub ldnjeacfbje: u32, + #[prost(uint32, tag = "1")] + pub retcode: u32, + #[prost(uint32, tag = "13")] + pub dmkfffpdldi: u32, +} +/// Obf: FHBNBAMHGID +#[derive(proto_derive::CmdID)] +#[cmdid(7406)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct MatchThreeV2LevelEndCsReq { + #[prost(string, tag = "14")] + pub miilnlhddjm: ::prost::alloc::string::String, + #[prost(uint32, tag = "10")] + pub ehmpemeonge: u32, + #[prost(uint32, tag = "12")] + pub jkfpengnjpi: u32, + #[prost(uint32, repeated, tag = "7")] + pub bbgkakhgoio: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "4")] + pub hldnmibklkj: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "6")] + pub acjcphifmln: u32, + #[prost(uint32, tag = "3")] + pub dkbjhpijcae: u32, + #[prost(uint32, tag = "13")] + pub bkmpfeocfib: u32, +} +/// Obf: CIHEEENMOLK +#[derive(proto_derive::CmdID)] +#[cmdid(7428)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct MatchThreeV2LevelEndScRsp { + #[prost(message, optional, tag = "12")] + pub lmgkmaoicgc: ::core::option::Option, + #[prost(message, repeated, tag = "15")] + pub mnbejdhhojn: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "7")] + pub acjcphifmln: u32, + #[prost(uint32, tag = "13")] + pub retcode: u32, + #[prost(uint32, tag = "11")] + pub ebhajenikaf: u32, + #[prost(uint32, tag = "6")] + pub cdmpogjjmjm: u32, + #[prost(message, optional, tag = "2")] + pub pecfjcdbcbn: ::core::option::Option, + #[prost(message, optional, tag = "4")] + pub aekcppidnmd: ::core::option::Option, +} +/// Obf: IOGOGCEDBDG +#[derive(proto_derive::CmdID)] +#[cmdid(7419)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct MatchThreeV2SetBirdPosCsReq { + #[prost(uint32, tag = "11")] + pub bkmpfeocfib: u32, + #[prost(uint32, tag = "10")] + pub pos: u32, +} +/// Obf: NDJPJFKOOBO +#[derive(proto_derive::CmdID)] +#[cmdid(7426)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct MatchThreeV2SetBirdPosScRsp { + #[prost(uint32, tag = "11")] + pub pos: u32, + #[prost(uint32, tag = "7")] + pub jmhpfpmajfg: u32, + #[prost(uint32, tag = "13")] + pub retcode: u32, + #[prost(uint32, tag = "12")] + pub bkmpfeocfib: u32, +} +/// Obf: HCEFLPBBGHC +#[derive(proto_derive::CmdID)] +#[cmdid(7434)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct MatchThreeV2ScNotify { + #[prost(message, optional, tag = "11")] + pub eahmjfllggk: ::core::option::Option, +} +/// Obf: DGCJHJHADGG +#[derive(proto_derive::CmdID)] +#[cmdid(7446)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct MatchThreeV2PvpFinishScNotify { + #[prost(uint32, tag = "5")] + pub fdgdokafbdh: u32, + #[prost(enumeration = "Noogdpkefkl", tag = "4")] + pub beipbpkkdmi: i32, + #[prost(message, optional, tag = "3")] + pub niaeghjlnmb: ::core::option::Option, + #[prost(uint32, tag = "10")] + pub kojihjihkia: u32, + #[prost(enumeration = "Keekddahfoe", tag = "2")] + pub reason: i32, + #[prost(message, optional, tag = "15")] + pub eahmjfllggk: ::core::option::Option, } /// Obf: JBGJPJGLNGF #[derive(proto_derive::CmdID)] -#[cmdid(2795)] +#[cmdid(2720)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetNpcMessageGroupCsReq { - #[prost(uint32, repeated, tag = "3")] + #[prost(uint32, repeated, tag = "9")] pub beeldjgiomn: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Nnmlcfaibde { - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "14")] pub cmmbbhhpmko: u32, - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "11")] pub item_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Eiokjolkjpb { - #[prost(message, repeated, tag = "5")] - pub item_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "14")] - pub id: u32, - #[prost(enumeration = "Liejljnbjnp", tag = "9")] - pub status: i32, - #[prost(uint32, tag = "8")] - pub dchlcmgkipk: u32, - #[prost(uint32, repeated, tag = "12")] + #[prost(uint32, repeated, tag = "9")] pub onleimhgfco: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "13")] + pub item_list: ::prost::alloc::vec::Vec, + #[prost(enumeration = "Liejljnbjnp", tag = "11")] + pub status: i32, + #[prost(uint32, tag = "5")] + pub dchlcmgkipk: u32, + #[prost(uint32, tag = "2")] + pub id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Ddbljmpngai { #[prost(uint32, tag = "7")] pub dkpnkgnmceh: u32, - #[prost(int64, tag = "6")] - pub hjegilagjoj: i64, - #[prost(message, repeated, tag = "8")] - pub gghlafiiama: ::prost::alloc::vec::Vec, - #[prost(enumeration = "Llhaabppapd", tag = "14")] + #[prost(enumeration = "Llhaabppapd", tag = "8")] pub status: i32, - #[prost(uint32, tag = "10")] + #[prost(int64, tag = "1")] + pub hjegilagjoj: i64, + #[prost(uint32, tag = "12")] pub id: u32, + #[prost(message, repeated, tag = "5")] + pub gghlafiiama: ::prost::alloc::vec::Vec, } /// Obf: NOLLFLMILFJ #[derive(proto_derive::CmdID)] -#[cmdid(2732)] +#[cmdid(2791)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetNpcMessageGroupScRsp { - #[prost(message, repeated, tag = "2")] + #[prost(message, repeated, tag = "13")] pub hoblfdjkojo: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "1")] pub retcode: u32, } /// Obf: IGJKJNDOGEF #[derive(proto_derive::CmdID)] -#[cmdid(2731)] +#[cmdid(2767)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetNpcStatusCsReq {} #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Dmoiobfajge { - #[prost(bool, tag = "11")] + #[prost(bool, tag = "10")] pub hlnfbgacnpo: bool, - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "11")] pub npc_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Gemjdhnlklc { - #[prost(uint32, tag = "15")] - pub group_id: u32, - #[prost(int64, tag = "13")] + #[prost(int64, tag = "12")] pub hjegilagjoj: i64, - #[prost(enumeration = "Llhaabppapd", tag = "1")] + #[prost(uint32, tag = "7")] + pub group_id: u32, + #[prost(enumeration = "Llhaabppapd", tag = "6")] pub ebfajeangea: i32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Lopcjeojhcb { - #[prost(enumeration = "Liejljnbjnp", tag = "1")] - pub oppampfbfjf: i32, - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "14")] pub lbmncagokif: u32, + #[prost(enumeration = "Liejljnbjnp", tag = "9")] + pub oppampfbfjf: i32, } /// Obf: NENLHKPIHFE #[derive(proto_derive::CmdID)] -#[cmdid(2740)] +#[cmdid(2739)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetNpcStatusScRsp { - #[prost(message, repeated, tag = "3")] + #[prost(message, repeated, tag = "2")] pub eipninjnkkp: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "10")] pub retcode: u32, } /// Obf: LCJGNPPLJPL #[derive(proto_derive::CmdID)] -#[cmdid(2776)] +#[cmdid(2727)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct FinishItemIdCsReq { - #[prost(uint32, tag = "3")] - pub cmmbbhhpmko: u32, - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "9")] pub item_id: u32, + #[prost(uint32, tag = "4")] + pub cmmbbhhpmko: u32, } /// Obf: NLMHMBOPNGG #[derive(proto_derive::CmdID)] -#[cmdid(2748)] +#[cmdid(2721)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct FinishItemIdScRsp { - #[prost(uint32, tag = "11")] - pub item_id: u32, - #[prost(uint32, tag = "12")] - pub cmmbbhhpmko: u32, - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "15")] pub retcode: u32, + #[prost(uint32, tag = "13")] + pub item_id: u32, + #[prost(uint32, tag = "7")] + pub cmmbbhhpmko: u32, } /// Obf: KAMANMBICPB #[derive(proto_derive::CmdID)] -#[cmdid(2771)] +#[cmdid(2770)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct FinishSectionIdCsReq { - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "10")] pub lbmncagokif: u32, } /// Obf: PDEHHHADMAM #[derive(proto_derive::CmdID)] -#[cmdid(2752)] +#[cmdid(2759)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct FinishSectionIdScRsp { - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "5")] pub retcode: u32, - #[prost(uint32, tag = "6")] - pub lbmncagokif: u32, - #[prost(message, optional, tag = "12")] + #[prost(message, optional, tag = "4")] pub reward: ::core::option::Option, + #[prost(uint32, tag = "12")] + pub lbmncagokif: u32, } /// Obf: BNNJHIIGFOO #[derive(proto_derive::CmdID)] -#[cmdid(2722)] +#[cmdid(2754)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct FinishPerformSectionIdCsReq { - #[prost(message, repeated, tag = "6")] + #[prost(message, repeated, tag = "4")] pub item_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "13")] pub lbmncagokif: u32, } /// Obf: CHAHPHPAIFE #[derive(proto_derive::CmdID)] -#[cmdid(2756)] +#[cmdid(2777)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct FinishPerformSectionIdScRsp { - #[prost(uint32, tag = "1")] - pub retcode: u32, + #[prost(uint32, tag = "5")] + pub lbmncagokif: u32, + #[prost(message, optional, tag = "10")] + pub reward: ::core::option::Option, #[prost(message, repeated, tag = "14")] pub item_list: ::prost::alloc::vec::Vec, - #[prost(message, optional, tag = "4")] - pub reward: ::core::option::Option, - #[prost(uint32, tag = "10")] - pub lbmncagokif: u32, + #[prost(uint32, tag = "7")] + pub retcode: u32, } /// Obf: BEGJOHLPFPL #[derive(proto_derive::CmdID)] -#[cmdid(2772)] +#[cmdid(2780)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetMissionMessageInfoCsReq {} /// Obf: OPKGGFELILM #[derive(proto_derive::CmdID)] -#[cmdid(2785)] +#[cmdid(2702)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetMissionMessageInfoScRsp { - #[prost(uint32, tag = "4")] - pub retcode: u32, - #[prost(map = "uint32, uint32", tag = "3")] + #[prost(map = "uint32, uint32", tag = "1")] pub apoldlgpkop: ::std::collections::HashMap, + #[prost(uint32, tag = "8")] + pub retcode: u32, } /// Obf: IDPMNKKPAFM #[derive(proto_derive::CmdID)] -#[cmdid(4195)] +#[cmdid(4120)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ShareCsReq { - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "15")] pub enfkggnomeo: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Adgnkecpoma { - #[prost(uint32, tag = "9")] - pub cccdkgamdlb: u32, #[prost(uint32, tag = "13")] + pub cccdkgamdlb: u32, + #[prost(uint32, tag = "12")] pub enfkggnomeo: u32, } /// Obf: CANCNJEHNCC #[derive(proto_derive::CmdID)] -#[cmdid(4132)] +#[cmdid(4191)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ShareScRsp { - #[prost(message, optional, tag = "5")] - pub reward: ::core::option::Option, - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "14")] pub retcode: u32, - #[prost(message, optional, tag = "8")] + #[prost(message, optional, tag = "5")] pub fgplilebkgl: ::core::option::Option, + #[prost(message, optional, tag = "7")] + pub reward: ::core::option::Option, } /// Obf: KAFCOKKCLHF #[derive(proto_derive::CmdID)] -#[cmdid(4131)] +#[cmdid(4167)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetShareDataCsReq {} /// Obf: IIHMBEGFHFB #[derive(proto_derive::CmdID)] -#[cmdid(4140)] +#[cmdid(4139)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetShareDataScRsp { - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "1")] pub retcode: u32, - #[prost(message, repeated, tag = "1")] + #[prost(message, repeated, tag = "14")] pub mfkjjbpndam: ::prost::alloc::vec::Vec, } /// Obf: JNDOHKAFNKL #[derive(proto_derive::CmdID)] -#[cmdid(4176)] +#[cmdid(4127)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TakePictureCsReq {} /// Obf: BDHFNKFCPGB #[derive(proto_derive::CmdID)] -#[cmdid(4148)] +#[cmdid(4121)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TakePictureScRsp { - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "7")] pub retcode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Nlbmcgcaeio { - #[prost(uint32, repeated, tag = "15")] + #[prost(uint32, repeated, tag = "5")] pub pildefkpkle: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "14")] - pub slot: u32, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "13")] pub afleajihneb: u32, + #[prost(uint32, tag = "15")] + pub slot: u32, } /// Obf: PJKLMNPPMPK #[derive(proto_derive::CmdID)] -#[cmdid(4122)] +#[cmdid(4154)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TriggerVoiceCsReq { - #[prost(message, repeated, tag = "10")] + #[prost(message, repeated, tag = "9")] pub mnelhnhckpj: ::prost::alloc::vec::Vec, } /// Obf: KJIAPDMALBJ #[derive(proto_derive::CmdID)] -#[cmdid(4146)] +#[cmdid(4174)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TriggerVoiceScRsp { - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "2")] pub retcode: u32, } /// Obf: GMLBOMACOAM #[derive(proto_derive::CmdID)] -#[cmdid(4122)] +#[cmdid(4154)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct CancelCacheNotifyCsReq { - #[prost(enumeration = "Mgaefjjdmom", tag = "1")] - pub slot: i32, - #[prost(uint32, repeated, tag = "2")] - pub colbgejelgi: ::prost::alloc::vec::Vec, - #[prost(string, repeated, tag = "15")] + #[prost(string, repeated, tag = "8")] pub kcljmcakojf: ::prost::alloc::vec::Vec<::prost::alloc::string::String>, + #[prost(uint32, repeated, tag = "5")] + pub colbgejelgi: ::prost::alloc::vec::Vec, + #[prost(enumeration = "Mgaefjjdmom", tag = "3")] + pub slot: i32, } /// Obf: CMJOBLOFCJB #[derive(proto_derive::CmdID)] -#[cmdid(4156)] +#[cmdid(4177)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct CancelCacheNotifyScRsp { #[prost(uint32, tag = "8")] @@ -14111,302 +15513,332 @@ pub struct CancelCacheNotifyScRsp { } /// Obf: CMHENGJMEEG #[derive(proto_derive::CmdID)] -#[cmdid(4172)] +#[cmdid(4180)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SecurityReportCsReq { - #[prost(string, tag = "10")] + #[prost(string, tag = "15")] pub dgdlniefcpf: ::prost::alloc::string::String, } /// Obf: EEOFCCFOAMF #[derive(proto_derive::CmdID)] -#[cmdid(4185)] +#[cmdid(4102)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SecurityReportScRsp { - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "3")] pub retcode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Gmaajhdfacd { - #[prost(enumeration = "Dcadlnjbkbk", tag = "7")] + #[prost(enumeration = "Dcadlnjbkbk", tag = "3")] pub slot: i32, - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "15")] + pub ifaikoioidd: u32, + #[prost(uint32, tag = "5")] pub level: u32, #[prost(uint32, tag = "9")] pub pdomacfemgg: u32, - #[prost(uint32, tag = "6")] - pub ifaikoioidd: u32, } /// Obf: EEBOKEEIENE #[derive(proto_derive::CmdID)] -#[cmdid(4142)] +#[cmdid(4194)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetMovieRacingDataCsReq {} /// Obf: EGBAGIAKJML #[derive(proto_derive::CmdID)] -#[cmdid(4177)] +#[cmdid(4136)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetMovieRacingDataScRsp { - #[prost(message, repeated, tag = "9")] - pub odjigebehgc: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "11")] pub retcode: u32, + #[prost(message, repeated, tag = "12")] + pub odjigebehgc: ::prost::alloc::vec::Vec, } /// Obf: BNEDNBDDBMA #[derive(proto_derive::CmdID)] -#[cmdid(4158)] +#[cmdid(4187)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct UpdateMovieRacingDataCsReq { - #[prost(message, optional, tag = "4")] + #[prost(message, optional, tag = "3")] pub kihchdffpol: ::core::option::Option, } /// Obf: BHDCNOPFBEI #[derive(proto_derive::CmdID)] -#[cmdid(4121)] +#[cmdid(4109)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct UpdateMovieRacingDataScRsp { - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "9")] pub retcode: u32, - #[prost(message, optional, tag = "14")] + #[prost(message, optional, tag = "15")] pub kihchdffpol: ::core::option::Option, } /// Obf: IHGBJICLPHC #[derive(proto_derive::CmdID)] -#[cmdid(4183)] +#[cmdid(4173)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SubmitOrigamiItemCsReq { - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "6")] pub lcbofmopgke: u32, } /// Obf: PGPLGIMENLO #[derive(proto_derive::CmdID)] -#[cmdid(4160)] +#[cmdid(4198)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SubmitOrigamiItemScRsp { - #[prost(uint32, tag = "5")] - pub lcbofmopgke: u32, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "7")] pub retcode: u32, + #[prost(uint32, tag = "2")] + pub lcbofmopgke: u32, } /// Obf: LCDKBMMEBFF #[derive(proto_derive::CmdID)] -#[cmdid(4102)] +#[cmdid(4185)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetOrigamiPropInfoCsReq { - #[prost(uint32, tag = "15")] - pub content_id: u32, - #[prost(uint32, repeated, tag = "11")] + #[prost(uint32, repeated, tag = "14")] pub floor_id_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "12")] pub cur_map_entry_id: u32, + #[prost(uint32, tag = "6")] + pub content_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Lammchabagh { #[prost(uint32, tag = "2")] - pub state: u32, - #[prost(uint32, tag = "11")] - pub group_id: u32, - #[prost(uint32, tag = "12")] pub config_id: u32, + #[prost(uint32, tag = "6")] + pub group_id: u32, + #[prost(uint32, tag = "8")] + pub state: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Fcholndipkc { - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "5")] pub floor_id: u32, - #[prost(message, repeated, tag = "5")] + #[prost(message, repeated, tag = "7")] pub cljjafgfkel: ::prost::alloc::vec::Vec, } /// Obf: GJLDMCNJOMC #[derive(proto_derive::CmdID)] -#[cmdid(4139)] +#[cmdid(4138)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetOrigamiPropInfoScRsp { - #[prost(uint32, tag = "4")] - pub content_id: u32, #[prost(uint32, tag = "2")] - pub retcode: u32, - #[prost(uint32, tag = "13")] pub cur_map_entry_id: u32, - #[prost(message, repeated, tag = "5")] + #[prost(uint32, tag = "5")] + pub content_id: u32, + #[prost(message, repeated, tag = "9")] pub lmebhnldkdj: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "7")] + pub retcode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Klbhfhjdbfi { - #[prost(bool, tag = "8")] + #[prost(bool, tag = "15")] pub ncnaonifpfm: bool, - #[prost(uint32, tag = "6")] - pub bmcjhonbhjh: u32, - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "11")] pub ifaikoioidd: u32, - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "1")] pub level: u32, + #[prost(uint32, tag = "5")] + pub bmcjhonbhjh: u32, } /// Obf: ONNPOIPDACH #[derive(proto_derive::CmdID)] -#[cmdid(4129)] +#[cmdid(4106)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetGunPlayDataCsReq {} /// Obf: FOOCHMJKEBD #[derive(proto_derive::CmdID)] -#[cmdid(4163)] +#[cmdid(4131)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetGunPlayDataScRsp { - #[prost(message, repeated, tag = "13")] - pub lnbfdjmnacn: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "3")] pub retcode: u32, + #[prost(message, repeated, tag = "5")] + pub lnbfdjmnacn: ::prost::alloc::vec::Vec, } /// Obf: LMJPCMOHLLP #[derive(proto_derive::CmdID)] -#[cmdid(4111)] +#[cmdid(4144)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct UpdateGunPlayDataCsReq { - #[prost(uint32, tag = "1")] - pub pneifbegmdh: u32, - #[prost(uint32, tag = "8")] - pub group_id: u32, - #[prost(uint64, tag = "3")] - pub miilnlhddjm: u64, - #[prost(message, optional, tag = "5")] + #[prost(message, optional, tag = "12")] pub odfhnchiejn: ::core::option::Option, + #[prost(uint64, tag = "1")] + pub miilnlhddjm: u64, + #[prost(uint32, tag = "8")] + pub pneifbegmdh: u32, + #[prost(uint32, tag = "2")] + pub group_id: u32, } /// Obf: BCILDFGGLNN #[derive(proto_derive::CmdID)] -#[cmdid(4193)] +#[cmdid(4149)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct UpdateGunPlayDataScRsp { - #[prost(message, optional, tag = "1")] + #[prost(message, optional, tag = "2")] pub odfhnchiejn: ::core::option::Option, - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "1")] pub retcode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Jcdnmbckplf { - #[prost(uint32, tag = "10")] - pub id: u32, - #[prost(enumeration = "Fjhikfikamo", tag = "1")] - pub kcmjkgadpip: i32, - #[prost(enumeration = "Giilenmkcah", tag = "7")] + #[prost(enumeration = "Giilenmkcah", tag = "6")] pub hhmabjdimgm: i32, + #[prost(enumeration = "Fjhikfikamo", tag = "13")] + pub kcmjkgadpip: i32, + #[prost(uint32, tag = "1")] + pub id: u32, } /// Obf: AJMBFNKFGEM #[derive(proto_derive::CmdID)] -#[cmdid(4125)] +#[cmdid(4141)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct DifficultyAdjustmentGetDataCsReq {} /// Obf: LFHFFKDBNHG #[derive(proto_derive::CmdID)] -#[cmdid(4114)] +#[cmdid(4184)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct DifficultyAdjustmentGetDataScRsp { - #[prost(message, repeated, tag = "1")] - pub info_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "5")] pub retcode: u32, + #[prost(message, repeated, tag = "7")] + pub info_list: ::prost::alloc::vec::Vec, } /// Obf: JDMHNPOBCBH #[derive(proto_derive::CmdID)] -#[cmdid(4184)] +#[cmdid(4178)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct DifficultyAdjustmentUpdateDataCsReq { - #[prost(message, optional, tag = "7")] + #[prost(message, optional, tag = "14")] pub data: ::core::option::Option, } /// Obf: HBOKFMPEJPN #[derive(proto_derive::CmdID)] -#[cmdid(4137)] +#[cmdid(4134)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct DifficultyAdjustmentUpdateDataScRsp { - #[prost(message, optional, tag = "4")] + #[prost(message, optional, tag = "2")] pub data: ::core::option::Option, - #[prost(message, repeated, tag = "15")] - pub info_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "14")] pub retcode: u32, + #[prost(message, repeated, tag = "10")] + pub info_list: ::prost::alloc::vec::Vec, } /// Obf: HBGAILHKELO #[derive(proto_derive::CmdID)] -#[cmdid(4130)] +#[cmdid(4145)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MazeKillDirectCsReq { - #[prost(enumeration = "Mnijhmepgnn", tag = "7")] - pub hhmabjdimgm: i32, - #[prost(uint32, repeated, tag = "1")] + #[prost(uint32, repeated, tag = "15")] pub entity_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "5")] + #[prost(enumeration = "Mnijhmepgnn", tag = "13")] + pub hhmabjdimgm: i32, + #[prost(uint32, tag = "10")] pub mmkogoknpkl: u32, } /// Obf: CCCBKFAAKBD #[derive(proto_derive::CmdID)] -#[cmdid(4175)] +#[cmdid(4169)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MazeKillDirectScRsp { - #[prost(uint32, repeated, tag = "2")] + #[prost(uint32, repeated, tag = "4")] pub entity_list: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "1")] + pub retcode: u32, +} +/// Obf: ILODDEOGDDO +#[derive(proto_derive::CmdID)] +#[cmdid(4103)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct DirectDeliveryScNotify { + #[prost(message, optional, tag = "11")] + pub hpaemohfnge: ::core::option::Option, + #[prost(message, optional, tag = "6")] + pub bhacagkkmie: ::core::option::Option, + #[prost(uint32, tag = "15")] + pub mddjnckmjhg: u32, +} +/// Obf: PHAHEOAHEAI +#[derive(proto_derive::CmdID)] +#[cmdid(4124)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct CancelDirectDeliveryNoticeCsReq { #[prost(uint32, tag = "13")] + pub mddjnckmjhg: u32, +} +/// Obf: EIPDHFJOILL +#[derive(proto_derive::CmdID)] +#[cmdid(4128)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct CancelDirectDeliveryNoticeScRsp { + #[prost(uint32, tag = "13")] + pub mddjnckmjhg: u32, + #[prost(uint32, tag = "9")] pub retcode: u32, } /// Obf: PPGFCPFDIMD #[derive(proto_derive::CmdID)] -#[cmdid(1295)] +#[cmdid(1220)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetMissionDataCsReq {} #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Ikammklboco { - #[prost(enumeration = "Iebnpbjdfgp", tag = "6")] - pub slot: i32, - #[prost(uint32, tag = "9")] - pub id: u32, - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "2")] pub display_value: u32, + #[prost(uint32, tag = "5")] + pub id: u32, + #[prost(enumeration = "Iebnpbjdfgp", tag = "9")] + pub slot: i32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Mission { - #[prost(uint32, tag = "1")] - pub progress: u32, - #[prost(enumeration = "MissionStatus", tag = "13")] + #[prost(enumeration = "MissionStatus", tag = "10")] pub status: i32, - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "3")] pub id: u32, + #[prost(uint32, tag = "13")] + pub progress: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Hpniicaaajk { - #[prost(string, tag = "4")] + #[prost(uint32, tag = "3")] + pub index: u32, + #[prost(string, tag = "8")] pub dfdekanjblg: ::prost::alloc::string::String, #[prost(uint32, tag = "5")] - pub index: u32, - #[prost(uint32, tag = "6")] pub kmhdfladepi: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Gniejgnkkgg { - #[prost(message, repeated, tag = "15")] + #[prost(message, repeated, tag = "4")] pub kfbpcfdhlhl: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MissionData { - #[prost(enumeration = "MissionStatus", tag = "10")] - pub status: i32, - #[prost(uint32, tag = "3")] - pub id: u32, - #[prost(message, repeated, tag = "6")] + #[prost(message, repeated, tag = "4")] pub kfbpcfdhlhl: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "10")] + pub id: u32, + #[prost(enumeration = "MissionStatus", tag = "15")] + pub status: i32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Fhabeikafbo { - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "8")] pub id: u32, - #[prost(oneof = "fhabeikafbo::Fjoojnkcnae", tags = "188")] + #[prost(oneof = "fhabeikafbo::Fjoojnkcnae", tags = "2025")] pub fjoojnkcnae: ::core::option::Option, } /// Nested message and enum types in `FHABEIKAFBO`. @@ -14414,530 +15846,530 @@ pub mod fhabeikafbo { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] pub enum Fjoojnkcnae { - #[prost(message, tag = "188")] + #[prost(message, tag = "2025")] Kfbpcfdhlhl(super::Gniejgnkkgg), } } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct MainMissionCustomValue { - #[prost(uint32, tag = "13")] +pub struct Feahpjpkgoa { + #[prost(uint32, tag = "4")] pub main_mission_id: u32, - #[prost(message, optional, tag = "12")] + #[prost(message, optional, tag = "11")] pub kfbpcfdhlhl: ::core::option::Option, } /// Obf: GBANHIEMJCI #[derive(proto_derive::CmdID)] -#[cmdid(1232)] +#[cmdid(1291)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetMissionDataScRsp { - #[prost(uint32, tag = "13")] - pub lflbiopjfge: u32, - #[prost(message, repeated, tag = "3")] - pub mission_list: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "14")] - pub mission_data_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "10")] pub retcode: u32, - #[prost(uint32, repeated, tag = "9")] + #[prost(uint32, repeated, tag = "6")] pub ojomocgiaic: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "8")] + pub lflbiopjfge: u32, + #[prost(message, repeated, tag = "2")] + pub mission_list: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "1")] + pub mission_data_list: ::prost::alloc::vec::Vec, } /// Obf: DENCGOJOIFI #[derive(proto_derive::CmdID)] -#[cmdid(1284)] +#[cmdid(1278)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct AcceptMainMissionCsReq { - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "4")] pub main_mission_id: u32, } /// Obf: KNIMBAFEBNE #[derive(proto_derive::CmdID)] -#[cmdid(1237)] +#[cmdid(1234)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct AcceptMainMissionScRsp { - #[prost(uint32, tag = "3")] - pub retcode: u32, - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "12")] pub main_mission_id: u32, + #[prost(uint32, tag = "15")] + pub retcode: u32, } /// Obf: EFFIGFGBAAD #[derive(proto_derive::CmdID)] -#[cmdid(1231)] +#[cmdid(1267)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct FinishTalkMissionCsReq { - #[prost(uint32, tag = "1")] - pub lplhiabdbbg: u32, - #[prost(message, repeated, tag = "6")] + #[prost(message, repeated, tag = "7")] pub kfbpcfdhlhl: ::prost::alloc::vec::Vec, - #[prost(string, tag = "2")] + #[prost(string, tag = "3")] pub hnfbhiolpja: ::prost::alloc::string::String, + #[prost(uint32, tag = "2")] + pub lplhiabdbbg: u32, } /// Obf: LHDGPAHCAIP #[derive(proto_derive::CmdID)] -#[cmdid(1240)] +#[cmdid(1239)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct FinishTalkMissionScRsp { - #[prost(message, repeated, tag = "4")] - pub kfbpcfdhlhl: ::prost::alloc::vec::Vec, - #[prost(string, tag = "1")] + #[prost(string, tag = "2")] pub hnfbhiolpja: ::prost::alloc::string::String, - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "12")] pub retcode: u32, - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "3")] pub lplhiabdbbg: u32, + #[prost(message, repeated, tag = "11")] + pub kfbpcfdhlhl: ::prost::alloc::vec::Vec, } /// Obf: LCGNONDHHEO #[derive(proto_derive::CmdID)] -#[cmdid(1276)] +#[cmdid(1227)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MissionRewardScNotify { - #[prost(uint32, tag = "8")] - pub lplhiabdbbg: u32, - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "9")] pub main_mission_id: u32, - #[prost(message, optional, tag = "13")] + #[prost(uint32, tag = "1")] + pub lplhiabdbbg: u32, + #[prost(message, optional, tag = "2")] pub reward: ::core::option::Option, } /// Obf: ONFLCINAFBH #[derive(proto_derive::CmdID)] -#[cmdid(1263)] +#[cmdid(1231)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SubMissionRewardScNotify { - #[prost(message, optional, tag = "13")] + #[prost(message, optional, tag = "1")] pub reward: ::core::option::Option, - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "10")] pub lplhiabdbbg: u32, } /// Obf: GENFFKNOCFE #[derive(proto_derive::CmdID)] -#[cmdid(1248)] +#[cmdid(1221)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SyncTaskCsReq { - #[prost(string, tag = "5")] + #[prost(string, tag = "4")] pub key: ::prost::alloc::string::String, } /// Obf: DPKABFBAICO #[derive(proto_derive::CmdID)] -#[cmdid(1271)] +#[cmdid(1270)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SyncTaskScRsp { - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "5")] pub retcode: u32, - #[prost(string, tag = "5")] + #[prost(string, tag = "13")] pub key: ::prost::alloc::string::String, } /// Obf: NCINOGGCALL #[derive(proto_derive::CmdID)] -#[cmdid(1285)] +#[cmdid(1202)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MissionGroupWarnScNotify { - #[prost(uint32, repeated, tag = "2")] + #[prost(uint32, repeated, tag = "14")] pub njocoopicln: ::prost::alloc::vec::Vec, } /// Obf: DKADCMIJPOB #[derive(proto_derive::CmdID)] -#[cmdid(1216)] +#[cmdid(1205)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct FinishCosumeItemMissionCsReq { - #[prost(message, optional, tag = "4")] + #[prost(message, optional, tag = "8")] pub item_list: ::core::option::Option, - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "3")] pub lplhiabdbbg: u32, } /// Obf: AFPICDCPKCI #[derive(proto_derive::CmdID)] -#[cmdid(1246)] +#[cmdid(1274)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct FinishCosumeItemMissionScRsp { - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "4")] pub lplhiabdbbg: u32, - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "1")] pub retcode: u32, } /// Obf: JMNGAEKFEEP #[derive(proto_derive::CmdID)] -#[cmdid(1233)] +#[cmdid(1268)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetMissionStatusCsReq { #[prost(uint32, repeated, tag = "3")] - pub main_mission_id_list: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "10")] pub sub_mission_id_list: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "13")] + pub main_mission_id_list: ::prost::alloc::vec::Vec, } /// Obf: GetMissionStatusScRsp #[derive(proto_derive::CmdID)] -#[cmdid(1242)] +#[cmdid(1294)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetMissionStatusScRsp { - #[prost(uint32, repeated, tag = "8")] - pub curversion_finished_main_mission_id_list: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "7")] - pub sub_mission_status_list: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "14")] + pub main_mission_mcv_list: ::prost::alloc::vec::Vec, #[prost(uint32, repeated, tag = "13")] - pub finished_main_mission_id_list: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "11")] - pub disabled_main_mission_id_list: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "5")] pub unfinished_main_mission_id_list: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "12")] - pub main_mission_mcv_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "6")] + #[prost(uint32, repeated, tag = "5")] + pub curversion_finished_main_mission_id_list: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "1")] + pub sub_mission_status_list: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "8")] + pub finished_main_mission_id_list: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "9")] pub retcode: u32, + #[prost(uint32, repeated, tag = "3")] + pub disabled_main_mission_id_list: ::prost::alloc::vec::Vec, } /// Obf: AODEMNAMJEH #[derive(proto_derive::CmdID)] -#[cmdid(1211)] +#[cmdid(1244)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TeleportToMissionResetPointCsReq {} /// Obf: BBIEFPLCHGJ #[derive(proto_derive::CmdID)] -#[cmdid(1293)] +#[cmdid(1249)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TeleportToMissionResetPointScRsp { - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "2")] pub retcode: u32, - #[prost(uint32, tag = "15")] - pub client_pos_version: u32, #[prost(message, optional, tag = "9")] pub motion: ::core::option::Option, + #[prost(uint32, tag = "3")] + pub client_pos_version: u32, } /// Obf: OGAPJNMOCMF #[derive(proto_derive::CmdID)] -#[cmdid(1225)] +#[cmdid(1241)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct StartFinishSubMissionScNotify { - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "10")] pub lplhiabdbbg: u32, } /// Obf: AAIMCEAJPPB #[derive(proto_derive::CmdID)] -#[cmdid(1214)] +#[cmdid(1284)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct StartFinishMainMissionScNotify { - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "11")] pub main_mission_id: u32, } /// Obf: MCFBCKODIMM #[derive(proto_derive::CmdID)] -#[cmdid(1230)] +#[cmdid(1245)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetMainMissionCustomValueCsReq { - #[prost(uint32, repeated, tag = "1")] + #[prost(uint32, repeated, tag = "5")] pub main_mission_id_list: ::prost::alloc::vec::Vec, } /// Obf: MODECCBGEBJ #[derive(proto_derive::CmdID)] -#[cmdid(1275)] +#[cmdid(1269)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetMainMissionCustomValueScRsp { - #[prost(message, repeated, tag = "13")] + #[prost(message, repeated, tag = "12")] pub mission_data_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "11")] pub retcode: u32, } /// Obf: JPFCPAMGPPL #[derive(proto_derive::CmdID)] -#[cmdid(1251)] +#[cmdid(1203)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MissionAcceptScNotify { - #[prost(uint32, repeated, tag = "9")] + #[prost(uint32, repeated, tag = "12")] pub sub_mission_id_list: ::prost::alloc::vec::Vec, } /// Obf: HHJLCADBEMF #[derive(proto_derive::CmdID)] -#[cmdid(1224)] +#[cmdid(1228)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct UpdateTrackMainMissionIdCsReq { - #[prost(uint32, tag = "11")] - pub lmbceopcigc: u32, - #[prost(enumeration = "Nnfdmniijgo", tag = "3")] + #[prost(enumeration = "Nnfdmniijgo", tag = "6")] pub ijdjmnjbobi: i32, - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "12")] + pub lmbceopcigc: u32, + #[prost(uint32, tag = "3")] pub lflbiopjfge: u32, } /// Obf: JBEIJKCOPFI #[derive(proto_derive::CmdID)] -#[cmdid(1257)] +#[cmdid(1223)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct UpdateTrackMainMissionIdScRsp { - #[prost(uint32, tag = "8")] - pub lflbiopjfge: u32, - #[prost(uint32, tag = "6")] - pub dkmbbnlmnne: u32, - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "11")] pub retcode: u32, + #[prost(uint32, tag = "6")] + pub lflbiopjfge: u32, + #[prost(uint32, tag = "9")] + pub dkmbbnlmnne: u32, } /// Obf: HJGFDKKGOOH #[derive(proto_derive::CmdID)] -#[cmdid(1207)] +#[cmdid(1222)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct FinishedMissionScNotify { - #[prost(uint32, repeated, tag = "11")] + #[prost(uint32, repeated, tag = "3")] pub finished_mission_id: ::prost::alloc::vec::Vec, } /// Obf: PILPBOGGLKO #[derive(proto_derive::CmdID)] -#[cmdid(1298)] +#[cmdid(1240)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct UpdateMainMissionCustomValueCsReq { - #[prost(string, tag = "11")] + #[prost(string, tag = "2")] pub dfdekanjblg: ::prost::alloc::string::String, - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "15")] pub main_mission_id: u32, - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "11")] pub value: u32, } /// Obf: AMNJJPCIGLJ #[derive(proto_derive::CmdID)] -#[cmdid(1264)] +#[cmdid(1218)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct UpdateMainMissionCustomValueScRsp { - #[prost(message, optional, tag = "7")] - pub lpjfbmjbepp: ::core::option::Option, - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "15")] pub retcode: u32, + #[prost(message, optional, tag = "1")] + pub lpjfbmjbepp: ::core::option::Option, } /// Obf: FCHDEOGGIEN #[derive(proto_derive::CmdID)] -#[cmdid(7095)] +#[cmdid(7020)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetMonopolyInfoCsReq {} #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Odaijigeajl { - #[prost(bool, tag = "1")] - pub ljfgifbdanc: bool, - #[prost(uint32, tag = "15")] - pub ejhdcneegmi: u32, - #[prost(uint32, tag = "13")] - pub fljbjpahjif: u32, - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "3")] pub engjfichdml: u32, - #[prost(uint32, tag = "8")] - pub item_value: u32, - #[prost(bool, tag = "4")] + #[prost(bool, tag = "15")] + pub ljfgifbdanc: bool, + #[prost(uint32, tag = "14")] + pub ejhdcneegmi: u32, + #[prost(bool, tag = "2")] pub hgmmchhbkpb: bool, + #[prost(uint32, tag = "11")] + pub item_value: u32, + #[prost(uint32, tag = "6")] + pub fljbjpahjif: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Llgniknmcke { - #[prost(uint32, repeated, tag = "11")] - pub ofiodjnlbea: ::prost::alloc::vec::Vec, #[prost(enumeration = "Gojoindbkik", tag = "6")] pub nmamonllall: i32, + #[prost(uint32, repeated, tag = "15")] + pub ofiodjnlbea: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Ooemibfnlld { - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "6")] pub progress: u32, - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "3")] pub ekpnclpoenk: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Lailnigfpoo { #[prost(bool, tag = "2")] - pub aelpfebgnok: bool, - #[prost(uint64, tag = "6")] - pub khgpfhboele: u64, - #[prost(bool, tag = "8")] pub is_taken_reward: bool, + #[prost(bool, tag = "6")] + pub aelpfebgnok: bool, + #[prost(uint64, tag = "7")] + pub khgpfhboele: u64, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Bcmokfhjmpm { - #[prost(message, repeated, tag = "1")] - pub cjfmaiakenl: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "11")] - pub hhjpblekapn: u32, - #[prost(string, tag = "822")] - pub ddibefmilmp: ::prost::alloc::string::String, - #[prost(uint64, tag = "6")] + #[prost(uint32, tag = "9")] + pub dgalcmfidfp: u32, + #[prost(bool, tag = "6")] + pub fholfdonoii: bool, + #[prost(uint64, tag = "2")] pub eboolgnacjj: u64, - #[prost(string, tag = "1618")] - pub pjdfbpbmbba: ::prost::alloc::string::String, - #[prost(uint32, tag = "4")] - pub jgnihljfjpp: u32, - #[prost(message, repeated, tag = "10")] - pub ebabbejipjn: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "13")] - pub bnoldnbmjhf: u32, - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "1")] + pub hhjpblekapn: u32, + #[prost(uint32, tag = "8")] pub ljjmleioife: u32, - #[prost(string, tag = "1852")] - pub jlegpnihmjd: ::prost::alloc::string::String, - #[prost(uint32, tag = "12")] + #[prost(message, repeated, tag = "13")] + pub cjfmaiakenl: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "7")] + pub bnoldnbmjhf: u32, + #[prost(uint32, tag = "15")] pub dgepmkffoab: u32, + #[prost(message, repeated, tag = "11")] + pub jckngfjeegi: ::prost::alloc::vec::Vec, + #[prost(string, tag = "1964")] + pub ddibefmilmp: ::prost::alloc::string::String, + #[prost(message, repeated, tag = "10")] + pub ifkfepkhlgn: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "12")] + pub kgbejknclfk: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "14")] + pub jgnihljfjpp: u32, + #[prost(uint64, tag = "3")] + pub jojndgbejek: u64, + #[prost(message, repeated, tag = "4")] + pub ebabbejipjn: ::prost::alloc::vec::Vec, + #[prost(string, tag = "109")] + pub jlegpnihmjd: ::prost::alloc::string::String, + #[prost(string, tag = "1480")] + pub pjdfbpbmbba: ::prost::alloc::string::String, #[prost(uint64, tag = "5")] pub omgkjljihlh: u64, - #[prost(bool, tag = "3")] - pub fholfdonoii: bool, - #[prost(message, repeated, tag = "2")] - pub jckngfjeegi: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "8")] - pub kgbejknclfk: ::prost::alloc::vec::Vec, - #[prost(uint64, tag = "15")] - pub jojndgbejek: u64, - #[prost(message, repeated, tag = "9")] - pub ifkfepkhlgn: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "7")] - pub dgalcmfidfp: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Edkgomnehoh { - #[prost(message, repeated, tag = "4")] + #[prost(message, repeated, tag = "11")] pub fjoafflleok: ::prost::alloc::vec::Vec, } /// Obf: NJDEBDJLCLD #[derive(proto_derive::CmdID)] -#[cmdid(7032)] +#[cmdid(7091)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetMonopolyInfoScRsp { - #[prost(uint32, repeated, tag = "6")] - pub cokcgfmeiba: ::prost::alloc::vec::Vec, - #[prost(message, optional, tag = "13")] - pub hehjkfilinn: ::core::option::Option, - #[prost(message, optional, tag = "4")] - pub jnhjeeljfhf: ::core::option::Option, - #[prost(message, optional, tag = "9")] + #[prost(message, optional, tag = "5")] pub stt: ::core::option::Option, #[prost(message, optional, tag = "14")] - pub hljmhnabfmc: ::core::option::Option, - #[prost(message, optional, tag = "12")] - pub oelhkeipidj: ::core::option::Option, + pub lgopnbhhhbg: ::core::option::Option, + #[prost(message, optional, tag = "11")] + pub hehjkfilinn: ::core::option::Option, + #[prost(message, optional, tag = "13")] + pub map_info: ::core::option::Option, #[prost(message, optional, tag = "8")] pub fghciadcmnj: ::core::option::Option, - #[prost(uint32, tag = "3")] - pub retcode: u32, - #[prost(message, optional, tag = "5")] - pub ljaogapdfha: ::core::option::Option, - #[prost(message, optional, tag = "15")] - pub lgopnbhhhbg: ::core::option::Option, - #[prost(message, optional, tag = "2")] - pub map_info: ::core::option::Option, - #[prost(message, optional, tag = "7")] - pub gpfgdokngel: ::core::option::Option, - #[prost(message, optional, tag = "11")] + #[prost(message, optional, tag = "4")] pub iedgkhdjjdc: ::core::option::Option, + #[prost(message, optional, tag = "7")] + pub oelhkeipidj: ::core::option::Option, + #[prost(message, optional, tag = "12")] + pub hljmhnabfmc: ::core::option::Option, + #[prost(message, optional, tag = "15")] + pub gpfgdokngel: ::core::option::Option, + #[prost(uint32, repeated, tag = "1")] + pub cokcgfmeiba: ::prost::alloc::vec::Vec, + #[prost(message, optional, tag = "9")] + pub ljaogapdfha: ::core::option::Option, + #[prost(uint32, tag = "6")] + pub retcode: u32, + #[prost(message, optional, tag = "10")] + pub jnhjeeljfhf: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Nfdgijlolgd { - #[prost(uint32, repeated, tag = "9")] + #[prost(uint32, repeated, tag = "8")] pub hfmdlhifmpi: ::prost::alloc::vec::Vec, } /// Obf: FJGBNBKCPEA #[derive(proto_derive::CmdID)] -#[cmdid(7089)] +#[cmdid(7058)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MonopolyConditionUpdateScNotify { - #[prost(message, optional, tag = "10")] + #[prost(message, optional, tag = "11")] pub hehjkfilinn: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Kjbmlbgibjf { #[prost(uint32, repeated, tag = "13")] - pub jihchilfjpi: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "9")] pub occmnidebbj: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "15")] + pub jihchilfjpi: ::prost::alloc::vec::Vec, } /// Obf: NOACPJFDBNC #[derive(proto_derive::CmdID)] -#[cmdid(7012)] +#[cmdid(7079)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MonopolySttUpdateScNotify { - #[prost(message, optional, tag = "11")] + #[prost(message, optional, tag = "4")] pub stt: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Iaaccafgepi { - #[prost(uint32, tag = "15")] - pub map_id: u32, - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "5")] pub hhcbjghkcpc: u32, - #[prost(enumeration = "Ihgjllngdkl", tag = "11")] - pub mafkcbodmmc: i32, - #[prost(bool, tag = "14")] + #[prost(bool, tag = "2")] pub jmdeflafice: bool, + #[prost(enumeration = "Ihgjllngdkl", tag = "1")] + pub mafkcbodmmc: i32, + #[prost(uint32, tag = "11")] + pub map_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Jajgkkdpalc { - #[prost(message, optional, tag = "4")] - pub hgbigbfgbom: ::core::option::Option, - #[prost(uint32, tag = "13")] - pub lbbonkacgej: u32, - #[prost(message, repeated, tag = "1")] + #[prost(message, repeated, tag = "3")] pub nbmpbgpjonh: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "15")] + #[prost(uint32, tag = "11")] + pub lbbonkacgej: u32, + #[prost(message, repeated, tag = "7")] pub imopiejbhod: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "5")] pub pgalbdiiefg: u32, + #[prost(message, optional, tag = "12")] + pub hgbigbfgbom: ::core::option::Option, } /// Obf: NKJHIGBOJGE #[derive(proto_derive::CmdID)] -#[cmdid(7096)] +#[cmdid(7001)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MonopolyEventLoadUpdateScNotify { - #[prost(message, repeated, tag = "6")] - pub nbmpbgpjonh: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "10")] + #[prost(message, repeated, tag = "8")] pub imopiejbhod: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "3")] + pub nbmpbgpjonh: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Comeolglnko { - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "2")] pub event_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Pblcejhpopo { - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "12")] pub event_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Lihocehepdb { - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "10")] pub event_id: u32, - #[prost(uint32, tag = "12")] - pub lfcmbgoaibb: u32, - #[prost(uint32, repeated, tag = "13")] - pub hfejhlniggh: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "6")] pub kdmlllghjon: u32, + #[prost(uint32, tag = "3")] + pub lfcmbgoaibb: u32, + #[prost(uint32, repeated, tag = "11")] + pub hfejhlniggh: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Ohnbchloebl { - #[prost(uint32, tag = "5")] - pub lfcmbgoaibb: u32, - #[prost(uint32, tag = "8")] - pub event_id: u32, - #[prost(uint32, repeated, tag = "9")] - pub hfejhlniggh: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "13")] - pub eccjbglbigm: u32, #[prost(uint32, tag = "11")] + pub eccjbglbigm: u32, + #[prost(uint32, tag = "6")] pub olfnjjklgmk: u32, + #[prost(uint32, tag = "4")] + pub lfcmbgoaibb: u32, + #[prost(uint32, tag = "15")] + pub event_id: u32, + #[prost(uint32, repeated, tag = "14")] + pub hfejhlniggh: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Blmjnffpmcn { - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "6")] pub pifpgkffbpn: u32, - #[prost(message, repeated, tag = "13")] + #[prost(message, repeated, tag = "2")] pub kmkfojahelj: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Aaibakechce { - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "2")] pub pagcamagflb: u32, } #[derive(proto_derive::CmdID)] @@ -14949,23 +16381,23 @@ pub struct Fgonfnidohj { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Iponfkajenj { - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "11")] pub apaobdgjmeg: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Nalpjmljpnp { + #[prost(uint32, tag = "5")] + pub ieejchfepha: u32, #[prost(uint32, tag = "8")] pub oefhmbjblgc: u32, - #[prost(uint32, tag = "6")] - pub ieejchfepha: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Lbenaahcpeo { #[prost(uint32, tag = "11")] pub okdlmejpche: u32, - #[prost(oneof = "lbenaahcpeo::Edapchiojmd", tags = "3, 7, 12, 9, 2, 1, 14, 4, 13")] + #[prost(oneof = "lbenaahcpeo::Edapchiojmd", tags = "3, 13, 10, 6, 1, 12, 15, 9, 14")] pub edapchiojmd: ::core::option::Option, } /// Nested message and enum types in `LBENAAHCPEO`. @@ -14975,287 +16407,287 @@ pub mod lbenaahcpeo { pub enum Edapchiojmd { #[prost(message, tag = "3")] Pecbimkooah(super::Comeolglnko), - #[prost(message, tag = "7")] - Emlnnmlgnkh(super::Pblcejhpopo), - #[prost(message, tag = "12")] - Jbjldppdbbc(super::Lihocehepdb), - #[prost(message, tag = "9")] - Ecoifnnjdap(super::Aaibakechce), - #[prost(message, tag = "2")] - Nbjicdajdgf(super::Fgonfnidohj), - #[prost(message, tag = "1")] - Gajbfpcpigm(super::Iponfkajenj), - #[prost(message, tag = "14")] - Joppaemppfh(super::Nalpjmljpnp), - #[prost(message, tag = "4")] - Joadhbldimf(super::Ohnbchloebl), #[prost(message, tag = "13")] + Emlnnmlgnkh(super::Pblcejhpopo), + #[prost(message, tag = "10")] + Jbjldppdbbc(super::Lihocehepdb), + #[prost(message, tag = "6")] + Ecoifnnjdap(super::Aaibakechce), + #[prost(message, tag = "1")] + Nbjicdajdgf(super::Fgonfnidohj), + #[prost(message, tag = "12")] + Gajbfpcpigm(super::Iponfkajenj), + #[prost(message, tag = "15")] + Joppaemppfh(super::Nalpjmljpnp), + #[prost(message, tag = "9")] + Joadhbldimf(super::Ohnbchloebl), + #[prost(message, tag = "14")] Iefoghngcmc(super::Blmjnffpmcn), } } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Icihabolhpn { - #[prost(message, optional, tag = "14")] + #[prost(message, optional, tag = "8")] pub fhnpagihinf: ::core::option::Option, } /// Obf: BAOJKHHNIPI #[derive(proto_derive::CmdID)] -#[cmdid(7025)] +#[cmdid(7041)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MonopolyContentUpdateScNotify { - #[prost(message, optional, tag = "7")] + #[prost(message, optional, tag = "15")] pub fhnpagihinf: ::core::option::Option, } /// Obf: KIJLBDPPDLN #[derive(proto_derive::CmdID)] -#[cmdid(7040)] +#[cmdid(7039)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MonopolyCellUpdateNotify { - #[prost(message, optional, tag = "3")] + #[prost(message, optional, tag = "5")] pub hgbigbfgbom: ::core::option::Option, } /// Obf: BLAHEBDCJFP #[derive(proto_derive::CmdID)] -#[cmdid(7048)] +#[cmdid(7021)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MonopolyRollDiceCsReq {} /// Obf: GAMAKOOBJPJ #[derive(proto_derive::CmdID)] -#[cmdid(7071)] +#[cmdid(7070)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MonopolyRollDiceScRsp { - #[prost(uint32, tag = "3")] - pub retcode: u32, - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "5")] pub blhiabbkgpb: u32, + #[prost(uint32, tag = "14")] + pub retcode: u32, } /// Obf: KFCDDEOCHHA #[derive(proto_derive::CmdID)] -#[cmdid(7011)] +#[cmdid(7044)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MonopolyCheatDiceCsReq { - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "11")] pub ocfhhdcbfbh: u32, } /// Obf: DFNEFIHIBGP #[derive(proto_derive::CmdID)] -#[cmdid(7093)] +#[cmdid(7049)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MonopolyCheatDiceScRsp { - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "4")] pub retcode: u32, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "5")] pub ocfhhdcbfbh: u32, } /// Obf: BDONOPOFPNF #[derive(proto_derive::CmdID)] -#[cmdid(7052)] +#[cmdid(7059)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MonopolyMoveCsReq { - #[prost(uint32, tag = "14")] - pub dgbmdpbialg: u32, - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "12")] pub cnifhnbiofj: u32, + #[prost(uint32, tag = "9")] + pub dgbmdpbialg: u32, } /// Obf: EEJEKFGIOKO #[derive(proto_derive::CmdID)] -#[cmdid(7022)] +#[cmdid(7054)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MonopolyMoveScRsp { - #[prost(uint32, tag = "10")] - pub retcode: u32, - #[prost(message, optional, tag = "13")] + #[prost(message, optional, tag = "6")] pub map_info: ::core::option::Option, - #[prost(message, repeated, tag = "11")] + #[prost(message, repeated, tag = "4")] pub hecjnjniakk: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "3")] + pub retcode: u32, } /// Obf: KGKAJKPJLFC #[derive(proto_derive::CmdID)] -#[cmdid(7056)] +#[cmdid(7077)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MonopolySelectOptionCsReq { - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "10")] pub event_id: u32, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "6")] pub kdmlllghjon: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Ddcelcojgnp { - #[prost(uint32, tag = "8")] - pub kdmlllghjon: u32, - #[prost(uint32, tag = "11")] - pub event_id: u32, - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "13")] pub lgiiahidlmg: u32, + #[prost(uint32, tag = "6")] + pub event_id: u32, + #[prost(uint32, tag = "11")] + pub kdmlllghjon: u32, } /// Obf: OICAPHLMKFG #[derive(proto_derive::CmdID)] -#[cmdid(7072)] +#[cmdid(7080)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MonopolySelectOptionScRsp { - #[prost(uint32, tag = "8")] - pub kdmlllghjon: u32, - #[prost(message, optional, tag = "13")] - pub gpfgdokngel: ::core::option::Option, - #[prost(uint32, tag = "7")] - pub event_id: u32, - #[prost(message, repeated, tag = "4")] + #[prost(message, repeated, tag = "2")] pub abnoinlokln: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "3")] + pub kdmlllghjon: u32, + #[prost(uint32, tag = "12")] + pub event_id: u32, + #[prost(uint32, tag = "10")] pub retcode: u32, + #[prost(message, optional, tag = "4")] + pub gpfgdokngel: ::core::option::Option, } /// Obf: CHOHHHJCANJ #[derive(proto_derive::CmdID)] -#[cmdid(7083)] +#[cmdid(7073)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MonopolyRollRandomCsReq { - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "8")] pub event_id: u32, } /// Obf: KCAHEEPIEPD #[derive(proto_derive::CmdID)] -#[cmdid(7060)] +#[cmdid(7098)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MonopolyRollRandomScRsp { - #[prost(message, optional, tag = "15")] + #[prost(message, optional, tag = "1")] pub gpfgdokngel: ::core::option::Option, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "2")] pub event_id: u32, - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "10")] pub retcode: u32, } /// Obf: JNIOMAMDMLP #[derive(proto_derive::CmdID)] -#[cmdid(7002)] +#[cmdid(7085)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MonopolyReRollRandomCsReq { - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "15")] pub event_id: u32, } /// Obf: GEAAFLHKNMI #[derive(proto_derive::CmdID)] -#[cmdid(7039)] +#[cmdid(7038)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MonopolyReRollRandomScRsp { - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "15")] pub event_id: u32, - #[prost(message, optional, tag = "1")] + #[prost(message, optional, tag = "12")] pub gpfgdokngel: ::core::option::Option, #[prost(uint32, tag = "10")] pub retcode: u32, } /// Obf: FAGIFHGCFJN #[derive(proto_derive::CmdID)] -#[cmdid(7043)] +#[cmdid(7052)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MonopolyConfirmRandomCsReq { - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "10")] pub event_id: u32, } /// Obf: ILDHPDFMMBM #[derive(proto_derive::CmdID)] -#[cmdid(7033)] +#[cmdid(7068)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MonopolyConfirmRandomScRsp { - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "9")] pub event_id: u32, - #[prost(uint32, tag = "11")] - pub retcode: u32, - #[prost(message, optional, tag = "3")] + #[prost(message, optional, tag = "15")] pub gpfgdokngel: ::core::option::Option, + #[prost(uint32, tag = "13")] + pub retcode: u32, } /// Obf: GONIBBGGNAN #[derive(proto_derive::CmdID)] -#[cmdid(7042)] +#[cmdid(7094)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MonopolyBuyGoodsCsReq { - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "10")] pub goods_id: u32, - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "15")] pub shop_id: u32, } /// Obf: BMMNBPLHDLA #[derive(proto_derive::CmdID)] -#[cmdid(7077)] +#[cmdid(7036)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MonopolyBuyGoodsScRsp { #[prost(uint32, tag = "12")] - pub retcode: u32, - #[prost(uint32, tag = "7")] - pub goods_id: u32, - #[prost(uint32, tag = "2")] pub shop_id: u32, + #[prost(uint32, tag = "6")] + pub retcode: u32, + #[prost(uint32, tag = "14")] + pub goods_id: u32, } /// Obf: IJOFOKMGGCC #[derive(proto_derive::CmdID)] -#[cmdid(7058)] +#[cmdid(7087)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MonopolyUpgradeAssetCsReq { - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "3")] pub pagcamagflb: u32, } /// Obf: NJBGCNPGLPM #[derive(proto_derive::CmdID)] -#[cmdid(7021)] +#[cmdid(7009)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MonopolyUpgradeAssetScRsp { - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "1")] pub retcode: u32, - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "13")] pub pagcamagflb: u32, } /// Obf: CHDLDBAAOAF #[derive(proto_derive::CmdID)] -#[cmdid(7029)] +#[cmdid(7006)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MonopolyGiveUpCurContentCsReq { - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "5")] pub content_id: u32, } /// Obf: DEGAJKFEMJO #[derive(proto_derive::CmdID)] -#[cmdid(7063)] +#[cmdid(7031)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MonopolyGiveUpCurContentScRsp { - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "3")] pub retcode: u32, - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "8")] pub content_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MonopolyActionResult { - #[prost(uint32, tag = "1")] - pub trigger_cell_id: u32, - #[prost(message, optional, tag = "2")] - pub detail: ::core::option::Option, - #[prost(uint32, tag = "5")] - pub click_map_id: u32, - #[prost(uint32, tag = "3")] - pub trigger_map_id: u32, - #[prost(uint32, tag = "13")] - pub effect_type: u32, - #[prost(enumeration = "Gkejfkakenm", tag = "6")] - pub source_type: i32, - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "6")] pub click_cell_id: u32, + #[prost(enumeration = "Gkejfkakenm", tag = "13")] + pub source_type: i32, + #[prost(uint32, tag = "10")] + pub trigger_map_id: u32, + #[prost(uint32, tag = "4")] + pub click_map_id: u32, + #[prost(uint32, tag = "2")] + pub effect_type: u32, + #[prost(uint32, tag = "11")] + pub trigger_cell_id: u32, + #[prost(message, optional, tag = "15")] + pub detail: ::core::option::Option, } /// Obf: FOEBKCBKMGI #[derive(proto_derive::CmdID)] -#[cmdid(7031)] +#[cmdid(7067)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MonopolyActionResultScNotify { - #[prost(message, repeated, tag = "13")] + #[prost(message, repeated, tag = "6")] pub pfnokncdpge: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Lmmebmbgldn { - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "10")] pub hkmihejcaem: u32, - #[prost(bool, tag = "8")] + #[prost(bool, tag = "11")] pub blhdohmacbm: bool, } #[derive(proto_derive::CmdID)] @@ -15263,7 +16695,7 @@ pub struct Lmmebmbgldn { pub struct Nibjamfmefd { #[prost( oneof = "nibjamfmefd::Pfablbbfojf", - tags = "5, 6, 2, 7, 4, 1, 12, 3, 15, 13, 9, 8, 14" + tags = "11, 9, 12, 4, 10, 13, 6, 7, 8, 1, 5, 15, 3" )] pub pfablbbfojf: ::core::option::Option, } @@ -15272,80 +16704,80 @@ pub mod nibjamfmefd { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Oneof)] pub enum Pfablbbfojf { - #[prost(message, tag = "5")] + #[prost(message, tag = "11")] Mecllcdabno(super::Lmkaaefpffo), - #[prost(message, tag = "6")] - Ffipkmhckhj(super::Lmkaaefpffo), - #[prost(message, tag = "2")] - Nfbcgknopda(super::Aidfbbiapep), - #[prost(message, tag = "7")] - Dachanhppbg(super::Aidfbbiapep), - #[prost(message, tag = "4")] - Noenhhilnah(super::Bmplfjkeolf), - #[prost(message, tag = "1")] - Kpbjipgejpl(super::Bmplfjkeolf), - #[prost(message, tag = "12")] - Dmdpcooafjk(super::Lnkmknbpijh), - #[prost(message, tag = "3")] - Hhibfnagkff(super::Lnkmknbpijh), - #[prost(message, tag = "15")] - Nkcmgbcpjgg(super::Lmmebmbgldn), - #[prost(message, tag = "13")] - Hanogacjpkb(super::Lpbamokkjcm), #[prost(message, tag = "9")] - Omfecimladc(super::Bmplfjkeolf), + Ffipkmhckhj(super::Lmkaaefpffo), + #[prost(message, tag = "12")] + Nfbcgknopda(super::Aidfbbiapep), + #[prost(message, tag = "4")] + Dachanhppbg(super::Aidfbbiapep), + #[prost(message, tag = "10")] + Noenhhilnah(super::Bmplfjkeolf), + #[prost(message, tag = "13")] + Kpbjipgejpl(super::Bmplfjkeolf), + #[prost(message, tag = "6")] + Dmdpcooafjk(super::Lnkmknbpijh), + #[prost(message, tag = "7")] + Hhibfnagkff(super::Lnkmknbpijh), #[prost(message, tag = "8")] + Nkcmgbcpjgg(super::Lmmebmbgldn), + #[prost(message, tag = "1")] + Hanogacjpkb(super::Lpbamokkjcm), + #[prost(message, tag = "5")] + Omfecimladc(super::Bmplfjkeolf), + #[prost(message, tag = "15")] Ngonccblaol(super::Lnkmknbpijh), - #[prost(message, tag = "14")] + #[prost(message, tag = "3")] Fjghnlnjlph(super::Nmghfolkfaj), } } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Nmghfolkfaj { - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "15")] pub gjlkoggiifo: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Lmkaaefpffo { - #[prost(uint32, tag = "11")] - pub ogjofmcmfpg: u32, - #[prost(uint32, tag = "15")] - pub bmalpkekbel: u32, - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "1")] pub item_id: u32, + #[prost(uint32, tag = "12")] + pub bmalpkekbel: u32, + #[prost(uint32, tag = "6")] + pub ogjofmcmfpg: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Lnkmknbpijh { - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "15")] pub ognkmdnjgog: u32, - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "5")] pub igdbofcdjol: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Lpbamokkjcm { #[prost(uint32, tag = "3")] - pub knggppiogae: u32, - #[prost(uint32, tag = "9")] - pub hnlfmjoknbn: u32, - #[prost(uint32, tag = "4")] pub mdflfllmgna: u32, - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "12")] + pub knggppiogae: u32, + #[prost(uint32, tag = "2")] pub njdggjbefcn: u32, + #[prost(uint32, tag = "5")] + pub hnlfmjoknbn: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Haknofdpbod { - #[prost(uint32, tag = "14")] - pub config_id: u32, - #[prost(uint32, tag = "7")] - pub acdopcbmpnl: u32, #[prost(uint32, tag = "12")] pub fpogialmcip: u32, - #[prost(oneof = "haknofdpbod::Heaiaedbpkl", tags = "10, 15, 8")] + #[prost(uint32, tag = "13")] + pub acdopcbmpnl: u32, + #[prost(uint32, tag = "14")] + pub config_id: u32, + #[prost(oneof = "haknofdpbod::Heaiaedbpkl", tags = "6, 4, 5")] pub heaiaedbpkl: ::core::option::Option, } /// Nested message and enum types in `HAKNOFDPBOD`. @@ -15353,202 +16785,202 @@ pub mod haknofdpbod { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] pub enum Heaiaedbpkl { - #[prost(message, tag = "10")] + #[prost(message, tag = "6")] Ejcolgnjgdc(super::Gjkiapipgan), - #[prost(message, tag = "15")] + #[prost(message, tag = "4")] Lkaniplnkgc(super::Eimobgllefo), - #[prost(message, tag = "8")] + #[prost(message, tag = "5")] Bdempakhgmj(super::Eopfmpaooje), } } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Hfdgmjjfohm { + #[prost(message, optional, tag = "12")] + pub ajcinkhbdjb: ::core::option::Option, + #[prost(message, repeated, tag = "11")] + pub pefmdfkecod: ::prost::alloc::vec::Vec, #[prost(message, optional, tag = "4")] pub npoigjpcgfb: ::core::option::Option, - #[prost(message, optional, tag = "13")] - pub ajcinkhbdjb: ::core::option::Option, - #[prost(message, repeated, tag = "9")] - pub pefmdfkecod: ::prost::alloc::vec::Vec, } /// Obf: PNKJEDCNKGB #[derive(proto_derive::CmdID)] -#[cmdid(7037)] +#[cmdid(7034)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MonopolyGameSettleScNotify { - #[prost(message, optional, tag = "2")] - pub item_list: ::core::option::Option, - #[prost(message, optional, tag = "10")] + #[prost(message, optional, tag = "15")] pub pemijimjmio: ::core::option::Option, - #[prost(message, optional, tag = "1")] + #[prost(message, optional, tag = "10")] pub gajbfpcpigm: ::core::option::Option, + #[prost(message, optional, tag = "13")] + pub item_list: ::core::option::Option, } /// Obf: DGCAJCANMDL #[derive(proto_derive::CmdID)] -#[cmdid(7007)] +#[cmdid(7022)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MonopolyGameCreateScNotify { - #[prost(message, optional, tag = "9")] - pub gajbfpcpigm: ::core::option::Option, #[prost(message, optional, tag = "5")] pub npoigjpcgfb: ::core::option::Option, + #[prost(message, optional, tag = "9")] + pub gajbfpcpigm: ::core::option::Option, } /// Obf: BFGMDKIECKC #[derive(proto_derive::CmdID)] -#[cmdid(7014)] +#[cmdid(7084)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MonopolyGameRaiseRatioCsReq { - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "6")] pub acdopcbmpnl: u32, } /// Obf: MonopolyGameRaiseRatioScRsp #[derive(proto_derive::CmdID)] -#[cmdid(7084)] +#[cmdid(7078)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MonopolyGameRaiseRatioScRsp { - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "7")] pub ratio: u32, - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "9")] pub retcode: u32, } /// Obf: AIMLCLGENNA #[derive(proto_derive::CmdID)] -#[cmdid(7016)] +#[cmdid(7005)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct DailyFirstEnterMonopolyActivityCsReq {} /// Obf: FHDEONMIKGP #[derive(proto_derive::CmdID)] -#[cmdid(7046)] +#[cmdid(7074)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct DailyFirstEnterMonopolyActivityScRsp { - #[prost(uint32, tag = "4")] - pub retcode: u32, - #[prost(int64, tag = "5")] - pub iihkiklioji: i64, - #[prost(message, optional, tag = "13")] + #[prost(message, optional, tag = "4")] pub ljaogapdfha: ::core::option::Option, + #[prost(int64, tag = "1")] + pub iihkiklioji: i64, + #[prost(uint32, tag = "14")] + pub retcode: u32, + #[prost(uint32, tag = "9")] + pub kekjcdmiddl: u32, #[prost(bool, tag = "3")] pub oicaghgmmfp: bool, - #[prost(uint32, tag = "1")] - pub kekjcdmiddl: u32, } /// Obf: PGBJBGAIODA #[derive(proto_derive::CmdID)] -#[cmdid(7050)] +#[cmdid(7017)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MonopolyGetDailyInitItemCsReq { - #[prost(bool, tag = "15")] + #[prost(bool, tag = "13")] pub ifhpjjblndl: bool, } /// Obf: ACCPMEMJOPK #[derive(proto_derive::CmdID)] -#[cmdid(7019)] +#[cmdid(7100)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MonopolyGetDailyInitItemScRsp { + #[prost(uint32, tag = "8")] + pub hbfffgpjkic: u32, + #[prost(uint32, tag = "14")] + pub ofgnignohaf: u32, + #[prost(int64, tag = "10")] + pub iihkiklioji: i64, + #[prost(uint32, tag = "12")] + pub retcode: u32, + #[prost(uint32, tag = "11")] + pub hcdbbflpcfl: u32, + #[prost(uint32, tag = "15")] + pub ioabhfpabbe: u32, #[prost(uint32, tag = "13")] pub heoofpgkdcd: u32, - #[prost(uint32, tag = "3")] - pub hbfffgpjkic: u32, - #[prost(uint32, tag = "5")] - pub ofgnignohaf: u32, - #[prost(uint32, tag = "12")] - pub hcdbbflpcfl: u32, - #[prost(uint32, tag = "10")] - pub ioabhfpabbe: u32, - #[prost(uint32, tag = "4")] - pub retcode: u32, - #[prost(int64, tag = "2")] - pub iihkiklioji: i64, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Gjkiapipgan { - #[prost(bool, tag = "3")] + #[prost(uint32, repeated, tag = "5")] + pub fhbopepjaen: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "9")] + pub oefjmefpipl: u32, + #[prost(bool, tag = "4")] pub nfeadmfnflk: bool, #[prost(uint32, repeated, tag = "15")] - pub pogemmicila: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "11")] pub leghknnkomg: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "8")] - pub oefjmefpipl: u32, - #[prost(uint32, repeated, tag = "1")] - pub fhbopepjaen: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "6")] + pub pogemmicila: ::prost::alloc::vec::Vec, } /// Obf: ICMGJFBMAAI #[derive(proto_derive::CmdID)] -#[cmdid(7051)] +#[cmdid(7003)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MonopolyGameBingoFlipCardCsReq { - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "10")] pub hcfpofmdgkn: u32, } /// Obf: OEFGMALBJKO #[derive(proto_derive::CmdID)] -#[cmdid(7091)] +#[cmdid(7024)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MonopolyGameBingoFlipCardScRsp { - #[prost(uint32, tag = "2")] - pub retcode: u32, - #[prost(uint32, repeated, tag = "9")] + #[prost(uint32, repeated, tag = "5")] pub leghknnkomg: ::prost::alloc::vec::Vec, - #[prost(bool, tag = "3")] - pub nfeadmfnflk: bool, - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "12")] + pub retcode: u32, + #[prost(uint32, tag = "3")] pub npjeecedpok: u32, + #[prost(bool, tag = "1")] + pub nfeadmfnflk: bool, } /// Obf: MJAKJJGNEAL #[derive(proto_derive::CmdID)] -#[cmdid(7030)] +#[cmdid(7045)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MonopolyGameGachaCsReq {} /// Obf: MonopolyGameGachaScRsp #[derive(proto_derive::CmdID)] -#[cmdid(7075)] +#[cmdid(7069)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MonopolyGameGachaScRsp { - #[prost(uint32, repeated, tag = "3")] - pub result_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "15")] pub retcode: u32, + #[prost(uint32, repeated, tag = "5")] + pub result_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Nkacimeoapd { - #[prost(uint32, tag = "11")] - pub ibadobadhjh: u32, - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "14")] pub pogjhkfbmch: u32, + #[prost(uint32, tag = "10")] + pub ibadobadhjh: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Eimobgllefo { - #[prost(uint32, repeated, tag = "9")] - pub hpnhhcmkjcb: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "1")] - pub bhpfpejbkec: u32, - #[prost(message, repeated, tag = "10")] + #[prost(message, repeated, tag = "8")] pub ndggacpicbf: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "5")] + #[prost(uint32, repeated, tag = "2")] + pub hpnhhcmkjcb: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "10")] pub chjngdioome: u32, #[prost(uint32, tag = "4")] - pub ohlepkekmnh: u32, - #[prost(uint32, tag = "13")] pub eaejlofgafo: u32, + #[prost(uint32, tag = "3")] + pub bhpfpejbkec: u32, + #[prost(uint32, tag = "12")] + pub ohlepkekmnh: u32, } /// Obf: AOMIOINGDPN #[derive(proto_derive::CmdID)] -#[cmdid(7024)] +#[cmdid(7028)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MonopolyAcceptQuizCsReq { - #[prost(message, repeated, tag = "14")] + #[prost(message, repeated, tag = "7")] pub ndggacpicbf: ::prost::alloc::vec::Vec, } /// Obf: EPHJEICDHFJ #[derive(proto_derive::CmdID)] -#[cmdid(7057)] +#[cmdid(7023)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MonopolyAcceptQuizScRsp { - #[prost(message, optional, tag = "8")] + #[prost(message, optional, tag = "15")] pub lkaniplnkgc: ::core::option::Option, #[prost(uint32, tag = "6")] pub retcode: u32, @@ -15556,320 +16988,320 @@ pub struct MonopolyAcceptQuizScRsp { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Oockalnfhnp { - #[prost(uint32, tag = "2")] - pub hmcjobjbpkj: u32, - #[prost(uint32, tag = "1")] - pub chjngdioome: u32, - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "6")] pub bgbihidhcon: u32, + #[prost(uint32, tag = "3")] + pub hmcjobjbpkj: u32, + #[prost(uint32, tag = "10")] + pub chjngdioome: u32, } /// Obf: HLPGDGFIGIJ #[derive(proto_derive::CmdID)] -#[cmdid(7078)] +#[cmdid(7071)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MonopolyQuizDurationChangeScNotify { - #[prost(message, repeated, tag = "13")] + #[prost(message, repeated, tag = "12")] pub leadmneimdp: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Eopfmpaooje { - #[prost(bool, tag = "8")] - pub lopdbaegfkp: bool, - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "2")] pub hmhjdbifgdi: u32, - #[prost(uint32, tag = "4")] + #[prost(bool, tag = "11")] + pub lopdbaegfkp: bool, + #[prost(uint32, tag = "14")] pub ppclbdbjlmo: u32, } /// Obf: NKIPFEOEBDL #[derive(proto_derive::CmdID)] -#[cmdid(7098)] +#[cmdid(7040)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MonopolyGuessChooseCsReq { - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "7")] pub hmhjdbifgdi: u32, } /// Obf: KGLDAEPCPPC #[derive(proto_derive::CmdID)] -#[cmdid(7064)] +#[cmdid(7018)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MonopolyGuessChooseScRsp { - #[prost(uint32, tag = "7")] - pub hmhjdbifgdi: u32, #[prost(uint32, tag = "15")] pub retcode: u32, + #[prost(uint32, tag = "1")] + pub hmhjdbifgdi: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Ackncaaamjm { - #[prost(uint32, tag = "12")] - pub ppclbdbjlmo: u32, - #[prost(message, optional, tag = "4")] + #[prost(message, optional, tag = "3")] pub item_list: ::core::option::Option, - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "10")] pub giacfcddjnm: u32, + #[prost(uint32, tag = "2")] + pub ppclbdbjlmo: u32, } /// Obf: PCFNKGHKKIP #[derive(proto_derive::CmdID)] -#[cmdid(7013)] +#[cmdid(7055)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MonopolyGuessDrawScNotify { - #[prost(message, repeated, tag = "14")] + #[prost(message, repeated, tag = "11")] pub jhiikpejeie: ::prost::alloc::vec::Vec, } /// Obf: MAOFCHPDPAM #[derive(proto_derive::CmdID)] -#[cmdid(7006)] +#[cmdid(7047)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MonopolyGuessBuyInformationCsReq {} /// Obf: IBGPAPKJDNP #[derive(proto_derive::CmdID)] -#[cmdid(7045)] +#[cmdid(7019)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MonopolyGuessBuyInformationScRsp { - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "4")] pub retcode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Aidfbbiapep { - #[prost(uint32, tag = "5")] - pub milkeacflpo: u32, - #[prost(uint32, tag = "2")] - pub level: u32, #[prost(uint32, tag = "4")] pub pagcamagflb: u32, + #[prost(uint32, tag = "7")] + pub milkeacflpo: u32, + #[prost(uint32, tag = "14")] + pub level: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Cannibgclcl { - #[prost(message, repeated, tag = "5")] + #[prost(message, repeated, tag = "12")] pub magefljgjnd: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Aedkpbfckgo { + #[prost(uint32, tag = "15")] + pub fnigpgbgehn: u32, #[prost(uint32, tag = "13")] - pub kmgiemofogb: u32, - #[prost(uint32, tag = "7")] + pub pkdlkcbkkpf: u32, + #[prost(uint32, tag = "14")] pub pddngkncpeb: u32, - #[prost(uint32, tag = "1")] - pub pilaagokaof: u32, - #[prost(uint32, tag = "3")] - pub gimdhbnjooo: u32, + #[prost(uint32, tag = "12")] + pub kmgiemofogb: u32, #[prost(uint32, tag = "5")] pub ifkdgebcdeg: u32, - #[prost(uint32, tag = "11")] - pub fnigpgbgehn: u32, - #[prost(uint32, tag = "15")] - pub pkdlkcbkkpf: u32, - #[prost(bool, tag = "8")] + #[prost(bool, tag = "9")] pub imoblgoajcb: bool, - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "8")] pub efinfpkkjle: u32, + #[prost(uint32, tag = "7")] + pub pilaagokaof: u32, + #[prost(uint32, tag = "2")] + pub gimdhbnjooo: u32, } /// Obf: GNPCMAINBOH #[derive(proto_derive::CmdID)] -#[cmdid(7054)] +#[cmdid(7096)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MonopolyDailySettleScNotify { - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "2")] pub kekjcdmiddl: u32, - #[prost(message, optional, tag = "3")] + #[prost(message, optional, tag = "4")] pub ljaogapdfha: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Bmplfjkeolf { - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "3")] pub okdlmejpche: u32, - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "4")] pub coffebnibhk: u32, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "5")] pub buff_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Afdalbganpc { - #[prost(message, repeated, tag = "6")] + #[prost(message, repeated, tag = "10")] pub buff_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Indglkcecdc { - #[prost(uint32, tag = "11")] - pub hdilbdipgho: u32, - #[prost(uint32, tag = "12")] - pub fnigpgbgehn: u32, - #[prost(uint32, tag = "5")] - pub dpjkojgcjlp: u32, #[prost(uint32, tag = "10")] + pub hdilbdipgho: u32, + #[prost(uint32, tag = "8")] pub uid: u32, - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "5")] pub pilaagokaof: u32, + #[prost(uint32, tag = "11")] + pub dpjkojgcjlp: u32, + #[prost(uint32, tag = "2")] + pub fnigpgbgehn: u32, } /// Obf: FKDHPCNODPP #[derive(proto_derive::CmdID)] -#[cmdid(7099)] +#[cmdid(7016)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetMonopolyFriendRankingListCsReq {} /// Obf: DIJGFBLHPGL #[derive(proto_derive::CmdID)] -#[cmdid(7087)] +#[cmdid(7093)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetMonopolyFriendRankingListScRsp { + #[prost(uint32, tag = "10")] + pub retcode: u32, #[prost(message, optional, tag = "9")] pub icmgegefdle: ::core::option::Option, - #[prost(uint32, tag = "1")] - pub retcode: u32, - #[prost(message, repeated, tag = "13")] + #[prost(message, repeated, tag = "12")] pub dcfhgaajlnn: ::prost::alloc::vec::Vec, } /// Obf: MHKOGIOKNAP #[derive(proto_derive::CmdID)] -#[cmdid(7008)] +#[cmdid(7064)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MonopolyLikeCsReq { - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "3")] pub cbegnbkmhcd: u32, } /// Obf: HCDMGGFKIKK #[derive(proto_derive::CmdID)] -#[cmdid(7035)] +#[cmdid(7057)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MonopolyLikeScRsp { - #[prost(uint32, tag = "8")] - pub retcode: u32, - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "2")] pub cbegnbkmhcd: u32, - #[prost(message, optional, tag = "4")] + #[prost(message, optional, tag = "9")] pub reward_list: ::core::option::Option, + #[prost(uint32, tag = "4")] + pub retcode: u32, } /// Obf: AKAHKDACKEF #[derive(proto_derive::CmdID)] -#[cmdid(7034)] +#[cmdid(7026)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MonopolyLikeScNotify { - #[prost(uint32, repeated, tag = "15")] + #[prost(uint32, repeated, tag = "1")] pub ofiodjnlbea: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "5")] pub hdilbdipgho: u32, } /// Obf: IEKJNICCCHH #[derive(proto_derive::CmdID)] -#[cmdid(7068)] +#[cmdid(7090)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetMbtiReportCsReq {} #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Mfdkinpdmke { - #[prost(uint32, tag = "10")] - pub cnt: u32, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "13")] pub fioepgpebfd: u32, + #[prost(uint32, tag = "8")] + pub cnt: u32, } /// Obf: ABFNDLALHHE #[derive(proto_derive::CmdID)] -#[cmdid(7001)] +#[cmdid(7089)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetMbtiReportScRsp { - #[prost(message, repeated, tag = "13")] - pub gmdhhogbacn: ::prost::alloc::vec::Vec, - #[prost(int32, tag = "9")] - pub ljhaifciabh: i32, - #[prost(int32, tag = "12")] - pub phnkkellanm: i32, #[prost(message, repeated, tag = "7")] pub abnoinlokln: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "8")] pub retcode: u32, - #[prost(uint32, tag = "14")] - pub progress: u32, - #[prost(bool, tag = "5")] - pub pcadcgcelin: bool, - #[prost(bool, tag = "1")] + #[prost(bool, tag = "15")] pub is_taken_reward: bool, + #[prost(message, repeated, tag = "1")] + pub gmdhhogbacn: ::prost::alloc::vec::Vec, + #[prost(int32, tag = "12")] + pub ljhaifciabh: i32, + #[prost(uint32, tag = "5")] + pub progress: u32, + #[prost(bool, tag = "11")] + pub pcadcgcelin: bool, + #[prost(int32, tag = "2")] + pub phnkkellanm: i32, } /// Obf: LFAOJFBGGCA #[derive(proto_derive::CmdID)] -#[cmdid(7053)] +#[cmdid(7037)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MonopolyEventSelectFriendCsReq { - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "14")] pub ipgeclelhgj: u32, - #[prost(bool, tag = "5")] + #[prost(bool, tag = "15")] pub bagmaoipmje: bool, } /// Obf: NOEKNNOFPIJ #[derive(proto_derive::CmdID)] -#[cmdid(7036)] +#[cmdid(7072)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MonopolyEventSelectFriendScRsp { - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "13")] pub ieejchfepha: u32, - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "12")] pub retcode: u32, - #[prost(uint32, tag = "2")] - pub oefhmbjblgc: u32, #[prost(message, optional, tag = "7")] pub hgbigbfgbom: ::core::option::Option, + #[prost(uint32, tag = "8")] + pub oefhmbjblgc: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SocialEventServerCache { - #[prost(uint32, tag = "1")] - pub id: u32, - #[prost(uint32, tag = "6")] - pub sub_coin: u32, - #[prost(uint32, tag = "12")] - pub src_uid: u32, - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "2")] pub add_coin: u32, + #[prost(uint32, tag = "6")] + pub id: u32, + #[prost(uint32, tag = "1")] + pub src_uid: u32, + #[prost(uint32, tag = "12")] + pub sub_coin: u32, } /// Obf: BFLFJLLPECM #[derive(proto_derive::CmdID)] -#[cmdid(7094)] +#[cmdid(7035)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MonopolySocialEventEffectScNotify { - #[prost(message, repeated, tag = "2")] + #[prost(message, repeated, tag = "10")] pub miaeaffdgmh: ::prost::alloc::vec::Vec, } /// Obf: IJLONAMLBOP #[derive(proto_derive::CmdID)] -#[cmdid(7027)] +#[cmdid(7053)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetSocialEventServerCacheCsReq {} /// Obf: OEPOLBLMDCC #[derive(proto_derive::CmdID)] -#[cmdid(7074)] +#[cmdid(7033)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetSocialEventServerCacheScRsp { - #[prost(message, repeated, tag = "12")] + #[prost(message, repeated, tag = "7")] pub miaeaffdgmh: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "5")] pub retcode: u32, } /// Obf: NHNLBGAFNKC #[derive(proto_derive::CmdID)] -#[cmdid(7090)] +#[cmdid(7007)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct DeleteSocialEventServerCacheCsReq { - #[prost(uint32, repeated, tag = "6")] + #[prost(uint32, repeated, tag = "15")] pub jiddlnhjnpb: ::prost::alloc::vec::Vec, } /// Obf: OKNHFAIDLEG #[derive(proto_derive::CmdID)] -#[cmdid(7017)] +#[cmdid(7048)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct DeleteSocialEventServerCacheScRsp { - #[prost(uint32, repeated, tag = "3")] + #[prost(uint32, repeated, tag = "2")] pub bfgjmmpcpnj: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "3")] pub retcode: u32, } /// Obf: PBOBNKMDDJJ #[derive(proto_derive::CmdID)] -#[cmdid(7049)] +#[cmdid(7043)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MonopolyGetRaffleTicketCsReq { #[prost(uint32, tag = "11")] @@ -15877,658 +17309,658 @@ pub struct MonopolyGetRaffleTicketCsReq { } /// Obf: PKCHELEEKNG #[derive(proto_derive::CmdID)] -#[cmdid(7003)] +#[cmdid(7012)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MonopolyGetRaffleTicketScRsp { - #[prost(uint32, tag = "7")] - pub hhjpblekapn: u32, - #[prost(uint32, tag = "11")] - pub retcode: u32, - #[prost(message, repeated, tag = "1")] + #[prost(message, repeated, tag = "10")] pub blmedlnokei: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "1")] + pub retcode: u32, + #[prost(uint32, tag = "2")] + pub hhjpblekapn: u32, } /// Obf: FEKKJNLIPFA #[derive(proto_derive::CmdID)] -#[cmdid(7010)] +#[cmdid(7062)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MonopolyTakeRaffleTicketRewardCsReq { - #[prost(uint32, tag = "7")] - pub hhjpblekapn: u32, - #[prost(uint64, tag = "5")] + #[prost(uint64, tag = "9")] pub pmelcdfhgkc: u64, + #[prost(uint32, tag = "11")] + pub hhjpblekapn: u32, } /// Obf: DJDDCAONCNB #[derive(proto_derive::CmdID)] -#[cmdid(7097)] +#[cmdid(7014)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MonopolyTakeRaffleTicketRewardScRsp { - #[prost(message, optional, tag = "7")] - pub reward_list: ::core::option::Option, - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "4")] pub retcode: u32, - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "13")] pub hhjpblekapn: u32, - #[prost(uint32, tag = "14")] + #[prost(message, optional, tag = "8")] + pub reward_list: ::core::option::Option, + #[prost(uint32, tag = "12")] pub pmelcdfhgkc: u32, } /// Obf: EPFBHNCHCKC #[derive(proto_derive::CmdID)] -#[cmdid(7079)] +#[cmdid(7086)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MonopolyScrachRaffleTicketCsReq { - #[prost(uint64, tag = "6")] - pub pmelcdfhgkc: u64, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "7")] pub hhjpblekapn: u32, + #[prost(uint64, tag = "13")] + pub pmelcdfhgkc: u64, } /// Obf: DDGPLANABJG #[derive(proto_derive::CmdID)] -#[cmdid(7070)] +#[cmdid(7075)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MonopolyScrachRaffleTicketScRsp { - #[prost(uint64, tag = "8")] - pub pmelcdfhgkc: u64, - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "3")] pub hhjpblekapn: u32, - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "4")] pub retcode: u32, + #[prost(uint64, tag = "11")] + pub pmelcdfhgkc: u64, } /// Obf: KKCKKABGKHJ #[derive(proto_derive::CmdID)] -#[cmdid(7004)] +#[cmdid(7030)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MonopolyGetRegionProgressCsReq {} /// Obf: KPEJBKLMIHN #[derive(proto_derive::CmdID)] -#[cmdid(7018)] +#[cmdid(7083)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MonopolyGetRegionProgressScRsp { - #[prost(uint32, tag = "6")] - pub eimgbknlgnf: u32, - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "9")] pub retcode: u32, #[prost(uint32, tag = "11")] + pub eimgbknlgnf: u32, + #[prost(uint32, tag = "2")] pub dpjkojgcjlp: u32, } /// Obf: HCIOCHHDGNK #[derive(proto_derive::CmdID)] -#[cmdid(7044)] +#[cmdid(7032)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MonopolyGetRafflePoolInfoCsReq {} /// Obf: HNFEFIGIMAK #[derive(proto_derive::CmdID)] -#[cmdid(7026)] +#[cmdid(7011)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MonopolyGetRafflePoolInfoScRsp { - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "1")] pub retcode: u32, - #[prost(message, optional, tag = "4")] + #[prost(message, optional, tag = "9")] pub iedgkhdjjdc: ::core::option::Option, } /// Obf: HOBMIAMCMII #[derive(proto_derive::CmdID)] -#[cmdid(7073)] +#[cmdid(7051)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MonopolyTakePhaseRewardCsReq { - #[prost(uint32, repeated, tag = "8")] + #[prost(uint32, repeated, tag = "3")] pub ljbgjhpkkjj: ::prost::alloc::vec::Vec, } /// Obf: IAFNBEMJPCG #[derive(proto_derive::CmdID)] -#[cmdid(7067)] +#[cmdid(7056)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MonopolyTakePhaseRewardScRsp { - #[prost(uint32, tag = "14")] - pub retcode: u32, - #[prost(message, optional, tag = "6")] - pub reward_list: ::core::option::Option, - #[prost(uint32, repeated, tag = "8")] + #[prost(uint32, repeated, tag = "5")] pub ljbgjhpkkjj: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "6")] + pub retcode: u32, + #[prost(message, optional, tag = "15")] + pub reward_list: ::core::option::Option, } /// Obf: FENPKDMBFPM #[derive(proto_derive::CmdID)] -#[cmdid(7041)] +#[cmdid(7082)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetMonopolyMbtiReportRewardCsReq {} /// Obf: BGJHENBJOOI #[derive(proto_derive::CmdID)] -#[cmdid(7062)] +#[cmdid(7099)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetMonopolyMbtiReportRewardScRsp { - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "15")] pub retcode: u32, - #[prost(message, optional, tag = "1")] + #[prost(message, optional, tag = "7")] pub reward_list: ::core::option::Option, } /// Obf: PPHLPCEDDPK #[derive(proto_derive::CmdID)] -#[cmdid(7028)] +#[cmdid(7061)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetMonopolyDailyReportCsReq {} /// Obf: OBOPOLGHGJB #[derive(proto_derive::CmdID)] -#[cmdid(7015)] +#[cmdid(7008)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetMonopolyDailyReportScRsp { + #[prost(uint32, tag = "7")] + pub retcode: u32, #[prost(message, optional, tag = "12")] pub ljaogapdfha: ::core::option::Option, - #[prost(uint32, tag = "15")] - pub retcode: u32, } /// Obf: DENONDBCBPH #[derive(proto_derive::CmdID)] -#[cmdid(7055)] +#[cmdid(7097)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MonopolyClickCellCsReq { - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "10")] pub hhcbjghkcpc: u32, - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "2")] pub map_id: u32, } /// Obf: EEGODLEDHLG #[derive(proto_derive::CmdID)] -#[cmdid(7080)] +#[cmdid(7066)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MonopolyClickCellScRsp { - #[prost(uint32, tag = "1")] - pub hhcbjghkcpc: u32, #[prost(uint32, tag = "4")] + pub hhcbjghkcpc: u32, + #[prost(uint32, tag = "9")] pub map_id: u32, - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "15")] pub retcode: u32, } /// Obf: GLDPPDPGFEN #[derive(proto_derive::CmdID)] -#[cmdid(7088)] +#[cmdid(7046)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MonopolyClickMbtiReportCsReq {} /// Obf: JDCBEKMDNJJ #[derive(proto_derive::CmdID)] -#[cmdid(7038)] +#[cmdid(7042)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MonopolyClickMbtiReportScRsp { - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "12")] pub retcode: u32, } /// Obf: MEICPFNIMHE #[derive(proto_derive::CmdID)] -#[cmdid(1095)] +#[cmdid(1020)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MultiplayerFightGameStateCsReq {} /// Obf: GJIKIHKIPNE #[derive(proto_derive::CmdID)] -#[cmdid(1032)] +#[cmdid(1091)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MultiplayerFightGameStateScRsp { - #[prost(uint32, tag = "3")] - pub retcode: u32, - #[prost(message, optional, tag = "8")] + #[prost(message, optional, tag = "3")] pub pfffjngnpom: ::core::option::Option, #[prost(message, repeated, tag = "12")] pub lipjdjpmokb: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "4")] + pub retcode: u32, } /// Obf: MHGHLJGBPOA #[derive(proto_derive::CmdID)] -#[cmdid(1031)] +#[cmdid(1067)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MultiplayerGetFightGateCsReq { - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "8")] pub player_data: u32, } /// Obf: GGIMNLGIGIO #[derive(proto_derive::CmdID)] -#[cmdid(1040)] +#[cmdid(1039)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MultiplayerGetFightGateScRsp { - #[prost(uint64, tag = "13")] - pub nogfeemnhpc: u64, - #[prost(string, tag = "15")] - pub aokcmmpfgbc: ::prost::alloc::string::String, - #[prost(string, tag = "14")] - pub ip: ::prost::alloc::string::String, - #[prost(uint32, tag = "12")] - pub retcode: u32, - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "14")] pub port: u32, + #[prost(uint64, tag = "6")] + pub nogfeemnhpc: u64, + #[prost(string, tag = "1")] + pub aokcmmpfgbc: ::prost::alloc::string::String, + #[prost(string, tag = "8")] + pub ip: ::prost::alloc::string::String, + #[prost(uint32, tag = "2")] + pub retcode: u32, } /// Obf: BPGNJJGIECJ #[derive(proto_derive::CmdID)] -#[cmdid(1076)] +#[cmdid(1027)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MultiplayerFightGiveUpCsReq { - #[prost(uint64, tag = "10")] + #[prost(uint64, tag = "7")] pub nogfeemnhpc: u64, } /// Obf: HBEPKKHKBMB #[derive(proto_derive::CmdID)] -#[cmdid(1048)] +#[cmdid(1021)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MultiplayerFightGiveUpScRsp { - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "11")] pub retcode: u32, } /// Obf: IHBKNEBEHFA #[derive(proto_derive::CmdID)] -#[cmdid(1071)] +#[cmdid(1070)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MultiplayerFightGameStartScNotify { - #[prost(message, optional, tag = "11")] + #[prost(message, optional, tag = "1")] pub pfffjngnpom: ::core::option::Option, - #[prost(message, repeated, tag = "1")] + #[prost(message, repeated, tag = "4")] pub lipjdjpmokb: ::prost::alloc::vec::Vec, } /// Obf: CHENLDLOLJH #[derive(proto_derive::CmdID)] -#[cmdid(1052)] +#[cmdid(1059)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MultiplayerFightGameFinishScNotify { - #[prost(message, optional, tag = "15")] + #[prost(message, optional, tag = "3")] pub pfffjngnpom: ::core::option::Option, } /// Obf: BHGJKCGLBMG #[derive(proto_derive::CmdID)] -#[cmdid(1022)] +#[cmdid(1054)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MultiplayerMatch3FinishScNotify { - #[prost(uint32, tag = "9")] - pub fdgdokafbdh: u32, - #[prost(enumeration = "Keekddahfoe", tag = "1")] - pub reason: i32, - #[prost(uint32, tag = "3")] - pub kojihjihkia: u32, - #[prost(message, optional, tag = "13")] + #[prost(message, optional, tag = "6")] pub niaeghjlnmb: ::core::option::Option, + #[prost(uint32, tag = "10")] + pub fdgdokafbdh: u32, + #[prost(enumeration = "Keekddahfoe", tag = "12")] + pub reason: i32, + #[prost(uint32, tag = "13")] + pub kojihjihkia: u32, } /// Obf: BLIEMPKGMNA #[derive(proto_derive::CmdID)] -#[cmdid(4695)] +#[cmdid(4620)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetMultipleDropInfoCsReq {} #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Eccnnonkfca { - #[prost(uint32, tag = "8")] - pub id: u32, - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "2")] pub olalhikmjop: u32, + #[prost(uint32, tag = "10")] + pub id: u32, } /// Obf: DLCIFEFLJCC #[derive(proto_derive::CmdID)] -#[cmdid(4632)] +#[cmdid(4691)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetMultipleDropInfoScRsp { - #[prost(message, repeated, tag = "6")] + #[prost(message, repeated, tag = "14")] pub ljcpdmnkjif: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "11")] + #[prost(message, repeated, tag = "7")] pub fchnnkekfcl: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "10")] pub retcode: u32, } /// Obf: AHLLFEKHALO #[derive(proto_derive::CmdID)] -#[cmdid(4631)] +#[cmdid(4667)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MultipleDropInfoScNotify { - #[prost(message, repeated, tag = "7")] + #[prost(message, repeated, tag = "5")] pub ljcpdmnkjif: ::prost::alloc::vec::Vec, } /// Obf: DIDAECIMCFO #[derive(proto_derive::CmdID)] -#[cmdid(4640)] +#[cmdid(4639)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetPlayerReturnMultiDropInfoCsReq {} #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Jbfipijjidl { - #[prost(uint32, tag = "4")] - pub module_id: u32, - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "15")] pub ljkffdmhojh: u32, - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "3")] + pub module_id: u32, + #[prost(uint32, tag = "6")] pub pjhdjkmjpkh: u32, - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "12")] pub dkjgcbjkeen: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Ohdnchfgfma { - #[prost(uint32, tag = "12")] - pub blfaanhjpad: u32, - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "10")] pub module_id: u32, - #[prost(uint32, tag = "4")] - pub bjfbglbjbnn: u32, + #[prost(uint32, tag = "3")] + pub blfaanhjpad: u32, #[prost(uint32, tag = "1")] + pub bjfbglbjbnn: u32, + #[prost(uint32, tag = "5")] pub lclmhegdggb: u32, } /// Obf: MGJNGCPOAIM #[derive(proto_derive::CmdID)] -#[cmdid(4676)] +#[cmdid(4627)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetPlayerReturnMultiDropInfoScRsp { - #[prost(uint32, tag = "1")] - pub retcode: u32, - #[prost(message, repeated, tag = "6")] + #[prost(message, repeated, tag = "10")] pub fchnnkekfcl: ::prost::alloc::vec::Vec, - #[prost(message, optional, tag = "15")] + #[prost(uint32, tag = "7")] + pub retcode: u32, + #[prost(message, optional, tag = "13")] pub ikgfoejpjcf: ::core::option::Option, } /// Obf: DOJHANCDKJJ #[derive(proto_derive::CmdID)] -#[cmdid(4648)] +#[cmdid(4621)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MultipleDropInfoNotify { - #[prost(message, repeated, tag = "12")] - pub fchnnkekfcl: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "11")] + #[prost(message, repeated, tag = "6")] pub ponjjnddkbh: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "15")] + #[prost(message, repeated, tag = "14")] + pub fchnnkekfcl: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "3")] pub ljcpdmnkjif: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Opgjgdoggnj { - #[prost(enumeration = "Kamlglmnjgj", tag = "8")] + #[prost(enumeration = "Kamlglmnjgj", tag = "2")] pub pos: i32, - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "6")] pub bdjcgcdjoeo: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Jmeaocpfeol { - #[prost(uint32, tag = "12")] - pub hjjfmdheapb: u32, - #[prost(message, repeated, tag = "7")] - pub bojmnafdjkh: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "13")] pub hihlgaghlni: u32, - #[prost(uint32, tag = "6")] - pub level: u32, #[prost(uint32, tag = "9")] - pub cdnngagbaak: u32, - #[prost(uint32, tag = "10")] + pub hjjfmdheapb: u32, + #[prost(uint32, tag = "11")] pub area_id: u32, + #[prost(message, repeated, tag = "3")] + pub bojmnafdjkh: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "2")] + pub level: u32, + #[prost(uint32, tag = "7")] + pub cdnngagbaak: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Panaijbjmen { - #[prost(bool, tag = "11")] - pub hlnfbgacnpo: bool, - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "15")] pub beleodaiinb: u32, + #[prost(bool, tag = "3")] + pub hlnfbgacnpo: bool, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Dolgfnlheae { #[prost(uint32, tag = "4")] - pub fileddcmdoc: u32, - #[prost(uint32, tag = "2")] pub fnpphmblkoa: u32, - #[prost(message, repeated, tag = "7")] - pub fmbfbgnaboc: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "15")] pub dcehogagkom: u32, - #[prost(uint32, tag = "6")] - pub ggfddejhlif: u32, - #[prost(uint32, tag = "14")] + #[prost(message, repeated, tag = "6")] + pub fmbfbgnaboc: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "10")] pub pngddnajcgg: u32, + #[prost(uint32, tag = "13")] + pub ggfddejhlif: u32, + #[prost(uint32, tag = "1")] + pub fileddcmdoc: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Olkmlfeefcj { - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "12")] pub bdjcgcdjoeo: u32, - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "4")] pub lgkiielghdj: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Blnehdifmoo { + #[prost(uint32, tag = "3")] + pub hcaglclejnd: u32, + #[prost(uint32, tag = "12")] + pub event_id: u32, #[prost(uint32, tag = "14")] pub bmbgklkecaj: u32, - #[prost(uint32, repeated, tag = "4")] - pub haabefkhami: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "9")] - pub hcaglclejnd: u32, - #[prost(enumeration = "Aihadkbhpbm", tag = "2")] - pub state: i32, - #[prost(uint32, tag = "15")] - pub cogbcplmnfd: u32, - #[prost(uint32, tag = "6")] - pub event_id: u32, - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "1")] pub dgjbacbiico: u32, + #[prost(enumeration = "Aihadkbhpbm", tag = "9")] + pub state: i32, + #[prost(uint32, tag = "2")] + pub cogbcplmnfd: u32, + #[prost(uint32, repeated, tag = "11")] + pub haabefkhami: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Jnbcpncnoho { - #[prost(uint32, repeated, tag = "4")] - pub pnjeepoemca: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "15")] + pub lhnjmbgndkc: u32, #[prost(message, repeated, tag = "11")] pub bjcmphlpknf: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "12")] - pub lhnjmbgndkc: u32, + #[prost(uint32, repeated, tag = "12")] + pub pnjeepoemca: ::prost::alloc::vec::Vec, } /// Obf: PMCANDKDEGB #[derive(proto_derive::CmdID)] -#[cmdid(4395)] +#[cmdid(4320)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetMuseumInfoCsReq {} /// Obf: JAPGKGGLDFO #[derive(proto_derive::CmdID)] -#[cmdid(4332)] +#[cmdid(4391)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetMuseumInfoScRsp { - #[prost(uint32, repeated, tag = "3")] - pub kndmdpefadc: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "5")] - pub level: u32, - #[prost(message, repeated, tag = "2")] - pub llephoelgda: ::prost::alloc::vec::Vec, - #[prost(message, optional, tag = "11")] - pub jpibmbbkgnd: ::core::option::Option, - #[prost(message, repeated, tag = "7")] + #[prost(message, repeated, tag = "8")] pub bojmnafdjkh: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "13")] - pub exp: u32, #[prost(uint32, tag = "4")] pub dbjhemippim: u32, - #[prost(uint32, tag = "15")] - pub retcode: u32, - #[prost(uint32, repeated, tag = "9")] - pub kndjapnpapk: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "6")] - pub ejnkmkffccl: u32, - #[prost(message, optional, tag = "12")] - pub ekkolcccnnk: ::core::option::Option, - #[prost(uint32, tag = "8")] - pub hpnmpdocjma: u32, - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "2")] pub ejkghbemoob: u32, - #[prost(uint32, tag = "10")] + #[prost(message, optional, tag = "9")] + pub jpibmbbkgnd: ::core::option::Option, + #[prost(uint32, tag = "5")] + pub ejnkmkffccl: u32, + #[prost(uint32, tag = "7")] + pub retcode: u32, + #[prost(uint32, repeated, tag = "10")] + pub kndjapnpapk: ::prost::alloc::vec::Vec, + #[prost(message, optional, tag = "1")] + pub ekkolcccnnk: ::core::option::Option, + #[prost(uint32, tag = "12")] + pub level: u32, + #[prost(uint32, tag = "11")] + pub hpnmpdocjma: u32, + #[prost(uint32, tag = "15")] + pub exp: u32, + #[prost(uint32, tag = "13")] pub jbjldppdbbc: u32, + #[prost(message, repeated, tag = "3")] + pub llephoelgda: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "14")] + pub kndmdpefadc: ::prost::alloc::vec::Vec, } /// Obf: IELFKENKBGM #[derive(proto_derive::CmdID)] -#[cmdid(4331)] +#[cmdid(4367)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct BuyNpcStuffCsReq { - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "2")] pub bdjcgcdjoeo: u32, } /// Obf: KGAFOHOAFAC #[derive(proto_derive::CmdID)] -#[cmdid(4340)] +#[cmdid(4339)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct BuyNpcStuffScRsp { - #[prost(uint32, tag = "8")] - pub bdjcgcdjoeo: u32, - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "2")] pub retcode: u32, + #[prost(uint32, tag = "13")] + pub bdjcgcdjoeo: u32, } /// Obf: BJCNDPEODHI #[derive(proto_derive::CmdID)] -#[cmdid(4376)] +#[cmdid(4327)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SetStuffToAreaCsReq { - #[prost(enumeration = "Kamlglmnjgj", tag = "6")] + #[prost(enumeration = "Kamlglmnjgj", tag = "7")] pub pos: i32, - #[prost(uint32, tag = "10")] - pub bdjcgcdjoeo: u32, - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "6")] pub lgkiielghdj: u32, + #[prost(uint32, tag = "12")] + pub bdjcgcdjoeo: u32, } /// Obf: JDIPLKMKLEI #[derive(proto_derive::CmdID)] -#[cmdid(4348)] +#[cmdid(4321)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SetStuffToAreaScRsp { - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "6")] pub retcode: u32, - #[prost(enumeration = "Kamlglmnjgj", tag = "11")] - pub pos: i32, - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "2")] pub lgkiielghdj: u32, - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "10")] pub bdjcgcdjoeo: u32, + #[prost(enumeration = "Kamlglmnjgj", tag = "1")] + pub pos: i32, } /// Obf: LCDDFEECNGG #[derive(proto_derive::CmdID)] -#[cmdid(4371)] +#[cmdid(4370)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RemoveStuffFromAreaCsReq { - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "5")] pub bdjcgcdjoeo: u32, } /// Obf: BPKBEMJPPBF #[derive(proto_derive::CmdID)] -#[cmdid(4352)] +#[cmdid(4359)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RemoveStuffFromAreaScRsp { - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "8")] pub retcode: u32, - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "10")] pub bdjcgcdjoeo: u32, } /// Obf: ODBFDDMDNAK #[derive(proto_derive::CmdID)] -#[cmdid(4322)] +#[cmdid(4354)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetStuffScNotify { - #[prost(enumeration = "Kgjjjkpdcfg", tag = "1")] + #[prost(enumeration = "Kgjjjkpdcfg", tag = "15")] pub aocelkonhob: i32, - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "7")] pub bdjcgcdjoeo: u32, } /// Obf: MIACMEBIFCH #[derive(proto_derive::CmdID)] -#[cmdid(4356)] +#[cmdid(4377)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetExhibitScNotify { - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "5")] pub bccgcfmabgm: u32, } /// Obf: LFPEOCEMGMF #[derive(proto_derive::CmdID)] -#[cmdid(4372)] +#[cmdid(4380)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct FinishCurTurnCsReq { - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "15")] pub cciecpfpfjg: u32, } /// Obf: IPOHMPKNALK #[derive(proto_derive::CmdID)] -#[cmdid(4385)] +#[cmdid(4302)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct FinishCurTurnScRsp { - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "4")] pub retcode: u32, - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "6")] pub gpoieccpamn: u32, } /// Obf: FFIKBMOHGCH #[derive(proto_derive::CmdID)] -#[cmdid(4316)] +#[cmdid(4305)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct UpgradeAreaCsReq { #[prost(uint32, tag = "1")] - pub level: u32, - #[prost(uint32, tag = "12")] - pub area_id: u32, -} -/// Obf: POBHKLNOAPI -#[derive(proto_derive::CmdID)] -#[cmdid(4346)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct UpgradeAreaScRsp { - #[prost(uint32, tag = "13")] pub area_id: u32, #[prost(uint32, tag = "11")] pub level: u32, - #[prost(uint32, tag = "2")] +} +/// Obf: POBHKLNOAPI +#[derive(proto_derive::CmdID)] +#[cmdid(4374)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct UpgradeAreaScRsp { + #[prost(uint32, tag = "4")] pub retcode: u32, + #[prost(uint32, tag = "12")] + pub level: u32, + #[prost(uint32, tag = "1")] + pub area_id: u32, } /// Obf: DKFJFHDOGFA #[derive(proto_derive::CmdID)] -#[cmdid(4383)] +#[cmdid(4373)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct UpgradeAreaStatCsReq { - #[prost(enumeration = "Ibbgdgghejl", tag = "5")] - pub status_info: i32, - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "10")] pub area_id: u32, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "6")] pub level: u32, + #[prost(enumeration = "Ibbgdgghejl", tag = "1")] + pub status_info: i32, } /// Obf: GIMHGGFPHJK #[derive(proto_derive::CmdID)] -#[cmdid(4360)] +#[cmdid(4398)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct UpgradeAreaStatScRsp { - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "6")] + pub retcode: u32, + #[prost(uint32, tag = "13")] pub level: u32, + #[prost(uint32, tag = "15")] + pub area_id: u32, #[prost(enumeration = "Ibbgdgghejl", tag = "2")] pub status_info: i32, - #[prost(uint32, tag = "10")] - pub retcode: u32, - #[prost(uint32, tag = "14")] - pub area_id: u32, } /// Obf: JHCFEAAHFKC #[derive(proto_derive::CmdID)] -#[cmdid(4302)] +#[cmdid(4385)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MuseumInfoChangedScNotify { + #[prost(uint32, tag = "2")] + pub hpnmpdocjma: u32, + #[prost(uint32, tag = "12")] + pub ejnkmkffccl: u32, + #[prost(uint32, tag = "10")] + pub ejkghbemoob: u32, #[prost(uint32, tag = "14")] pub level: u32, - #[prost(uint32, tag = "8")] - pub ejkghbemoob: u32, - #[prost(uint32, tag = "10")] - pub exp: u32, - #[prost(uint32, tag = "5")] - pub jbjldppdbbc: u32, - #[prost(message, repeated, tag = "1")] - pub bojmnafdjkh: ::prost::alloc::vec::Vec, - #[prost(message, optional, tag = "6")] - pub ekkolcccnnk: ::core::option::Option, #[prost(uint32, repeated, tag = "11")] - pub kndmdpefadc: ::prost::alloc::vec::Vec, + pub kndjapnpapk: ::prost::alloc::vec::Vec, #[prost(uint32, tag = "4")] pub dbjhemippim: u32, - #[prost(message, repeated, tag = "3")] - pub llephoelgda: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "12")] - pub hpnmpdocjma: u32, - #[prost(uint32, tag = "15")] - pub ejnkmkffccl: u32, - #[prost(uint32, repeated, tag = "13")] - pub kndjapnpapk: ::prost::alloc::vec::Vec, - #[prost(message, optional, tag = "2")] + #[prost(uint32, tag = "13")] + pub jbjldppdbbc: u32, + #[prost(message, optional, tag = "7")] pub jpibmbbkgnd: ::core::option::Option, + #[prost(uint32, repeated, tag = "5")] + pub kndmdpefadc: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "15")] + pub bojmnafdjkh: ::prost::alloc::vec::Vec, + #[prost(message, optional, tag = "3")] + pub ekkolcccnnk: ::core::option::Option, + #[prost(message, repeated, tag = "8")] + pub llephoelgda: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "1")] + pub exp: u32, } /// Obf: NJKGECLEIEJ #[derive(proto_derive::CmdID)] -#[cmdid(4343)] +#[cmdid(4352)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MuseumRandomEventStartScNotify { #[prost(message, optional, tag = "10")] @@ -16536,124 +17968,124 @@ pub struct MuseumRandomEventStartScNotify { } /// Obf: BOOMIEGPOPL #[derive(proto_derive::CmdID)] -#[cmdid(4333)] +#[cmdid(4368)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MuseumRandomEventQueryCsReq { - #[prost(int32, tag = "7")] + #[prost(int32, tag = "4")] pub cehfiilmjkm: i32, } /// Obf: FOCGEBJIEBB #[derive(proto_derive::CmdID)] -#[cmdid(4342)] +#[cmdid(4394)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MuseumRandomEventQueryScRsp { - #[prost(uint32, tag = "4")] - pub retcode: u32, - #[prost(message, optional, tag = "10")] + #[prost(message, optional, tag = "3")] pub hndlhicdnpc: ::core::option::Option, + #[prost(uint32, tag = "7")] + pub retcode: u32, } /// Obf: IIGHGCLDOLA #[derive(proto_derive::CmdID)] -#[cmdid(4377)] +#[cmdid(4336)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MuseumRandomEventSelectCsReq { - #[prost(uint32, tag = "8")] - pub event_id: u32, - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "7")] pub dgjbacbiico: u32, + #[prost(uint32, tag = "5")] + pub event_id: u32, } /// Obf: JAMLDHMGDFA #[derive(proto_derive::CmdID)] -#[cmdid(4358)] +#[cmdid(4387)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MuseumRandomEventSelectScRsp { #[prost(uint32, tag = "10")] pub event_id: u32, - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "5")] pub retcode: u32, - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "14")] pub dgjbacbiico: u32, } /// Obf: NGJDOPNPPGE #[derive(proto_derive::CmdID)] -#[cmdid(4339)] +#[cmdid(4338)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MuseumFundsChangedScNotify { - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "9")] pub dbjhemippim: u32, } /// Obf: IGCMGNCHJHL #[derive(proto_derive::CmdID)] -#[cmdid(4321)] +#[cmdid(4309)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MuseumDispatchFinishedScNotify { - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "10")] pub imblgcaadfl: u32, - #[prost(uint32, tag = "2")] - pub dbjhemippim: u32, #[prost(uint32, tag = "7")] pub modfabddnkl: u32, - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "13")] pub bdjcgcdjoeo: u32, + #[prost(uint32, tag = "9")] + pub dbjhemippim: u32, } /// Obf: OPGANLFJPIA #[derive(proto_derive::CmdID)] -#[cmdid(4329)] +#[cmdid(4306)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MuseumTargetStartNotify { - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "15")] pub pngddnajcgg: u32, } /// Obf: ABHEGCGEGFD #[derive(proto_derive::CmdID)] -#[cmdid(4363)] +#[cmdid(4331)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MuseumTargetMissionFinishNotify { - #[prost(uint32, repeated, tag = "2")] - pub beleodaiinb: ::prost::alloc::vec::Vec, - #[prost(bool, tag = "11")] - pub fpbgadbmead: bool, - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "12")] pub pngddnajcgg: u32, + #[prost(bool, tag = "4")] + pub fpbgadbmead: bool, + #[prost(uint32, repeated, tag = "6")] + pub beleodaiinb: ::prost::alloc::vec::Vec, } /// Obf: OANCDPOFCMJ #[derive(proto_derive::CmdID)] -#[cmdid(4311)] +#[cmdid(4344)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MuseumTargetRewardNotify { - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "13")] pub item_id: u32, - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "10")] pub pngddnajcgg: u32, - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "15")] pub mbejblfhcbh: u32, } /// Obf: ACPBHBHLNNP #[derive(proto_derive::CmdID)] -#[cmdid(4393)] +#[cmdid(4349)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MuseumTakeCollectRewardCsReq { - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "5")] pub item_id: u32, } /// Obf: PEBFOFMPHLD #[derive(proto_derive::CmdID)] -#[cmdid(4325)] +#[cmdid(4341)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MuseumTakeCollectRewardScRsp { - #[prost(uint32, tag = "10")] - pub item_id: u32, - #[prost(uint32, tag = "11")] - pub retcode: u32, - #[prost(message, optional, tag = "4")] + #[prost(message, optional, tag = "13")] pub reward: ::core::option::Option, + #[prost(uint32, tag = "3")] + pub item_id: u32, + #[prost(uint32, tag = "14")] + pub retcode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Lleogoohjim { - #[prost(bool, tag = "5")] + #[prost(bool, tag = "11")] pub gkjgcbpojcm: bool, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "7")] pub acjcphifmln: u32, #[prost(uint32, tag = "1")] pub immaphmhijk: u32, @@ -16661,328 +18093,328 @@ pub struct Lleogoohjim { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Pakpcciloln { - #[prost(uint32, repeated, tag = "1")] + #[prost(uint32, repeated, tag = "2")] pub dnkjdjjbcdk: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "6")] - pub ojamobmgfbd: u32, - #[prost(uint32, tag = "12")] - pub blpbigkjpch: u32, #[prost(uint32, repeated, tag = "5")] pub nbboabglcjc: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "3")] + pub ojamobmgfbd: u32, + #[prost(uint32, tag = "8")] + pub blpbigkjpch: u32, } /// Obf: LLOEKNIFJGH #[derive(proto_derive::CmdID)] -#[cmdid(7573)] +#[cmdid(7572)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MusicRhythmDataCsReq { - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "11")] pub player_data: u32, } /// Obf: PNCLMCMOCDH #[derive(proto_derive::CmdID)] -#[cmdid(7590)] +#[cmdid(7596)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MusicRhythmDataScRsp { - #[prost(uint32, repeated, tag = "13")] + #[prost(uint32, tag = "7")] + pub retcode: u32, + #[prost(uint32, repeated, tag = "1")] pub fkliofdpjbe: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "15")] + pub lkmjinniadi: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "2")] + pub amdcjjjabcc: ::prost::alloc::vec::Vec, #[prost(uint32, tag = "5")] pub ljekppnpbpp: u32, - #[prost(message, repeated, tag = "1")] - pub lkmjinniadi: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "2")] - pub bmkmenhffok: ::prost::alloc::vec::Vec, - #[prost(bool, tag = "9")] + #[prost(bool, tag = "13")] pub ocephgbcmib: bool, - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "11")] pub cdigalbeima: u32, - #[prost(uint32, repeated, tag = "7")] + #[prost(uint32, repeated, tag = "3")] pub bnanpjbdghb: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "14")] - pub amdcjjjabcc: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "8")] - pub retcode: u32, + #[prost(uint32, repeated, tag = "4")] + pub bmkmenhffok: ::prost::alloc::vec::Vec, } /// Obf: FEPACLABFKH #[derive(proto_derive::CmdID)] -#[cmdid(7596)] +#[cmdid(7576)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MusicRhythmStartLevelCsReq { - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "1")] pub acjcphifmln: u32, } /// Obf: CMECLLJDMJI #[derive(proto_derive::CmdID)] -#[cmdid(7589)] +#[cmdid(7577)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MusicRhythmStartLevelScRsp { - #[prost(string, tag = "15")] - pub mdlndgijnml: ::prost::alloc::string::String, #[prost(uint32, tag = "10")] - pub acjcphifmln: u32, - #[prost(uint32, tag = "4")] pub retcode: u32, + #[prost(string, tag = "2")] + pub mdlndgijnml: ::prost::alloc::string::String, + #[prost(uint32, tag = "6")] + pub acjcphifmln: u32, } /// Obf: DOEJALIHJCD #[derive(proto_derive::CmdID)] -#[cmdid(7571)] +#[cmdid(7583)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MusicRhythmFinishLevelCsReq { - #[prost(uint32, tag = "1")] - pub score: u32, - #[prost(bool, tag = "12")] + #[prost(bool, tag = "13")] pub gkjgcbpojcm: bool, - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "10")] pub mhkhaclnbpm: u32, + #[prost(uint32, tag = "14")] + pub score: u32, } /// Obf: FLJGCBPELHO #[derive(proto_derive::CmdID)] -#[cmdid(7594)] +#[cmdid(7584)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MusicRhythmFinishLevelScRsp { - #[prost(uint32, tag = "4")] - pub retcode: u32, - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "2")] pub acjcphifmln: u32, + #[prost(uint32, tag = "8")] + pub retcode: u32, } /// Obf: JEMOIIJGKAO #[derive(proto_derive::CmdID)] -#[cmdid(7577)] +#[cmdid(7586)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MusicRhythmUnlockTrackScNotify { - #[prost(uint32, repeated, tag = "8")] + #[prost(uint32, repeated, tag = "3")] pub jikjhneacjb: ::prost::alloc::vec::Vec, } /// Obf: DHAKCHLIBNH #[derive(proto_derive::CmdID)] -#[cmdid(7588)] +#[cmdid(7580)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MusicRhythmSaveSongConfigDataCsReq { - #[prost(message, optional, tag = "15")] + #[prost(message, optional, tag = "12")] pub cgedaboaboh: ::core::option::Option, } /// Obf: KNFHFMIDCGE #[derive(proto_derive::CmdID)] -#[cmdid(7600)] +#[cmdid(7597)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MusicRhythmSaveSongConfigDataScRsp { - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "13")] pub retcode: u32, - #[prost(uint32, tag = "4")] - pub mbldfhldcpi: u32, - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "1")] pub cdigalbeima: u32, + #[prost(uint32, tag = "6")] + pub mbldfhldcpi: u32, } /// Obf: ICKBFLLLNLH #[derive(proto_derive::CmdID)] -#[cmdid(7581)] +#[cmdid(7599)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MusicRhythmUnlockSongNotify { - #[prost(uint32, repeated, tag = "6")] + #[prost(uint32, repeated, tag = "10")] pub oafhaopejpo: ::prost::alloc::vec::Vec, } /// Obf: PJCMNLHELJG #[derive(proto_derive::CmdID)] -#[cmdid(7579)] +#[cmdid(7590)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MusicRhythmMaxDifficultyLevelsUnlockNotify {} /// Obf: MABNDMNEOBP #[derive(proto_derive::CmdID)] -#[cmdid(7592)] +#[cmdid(7593)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MusicRhythmUnlockSongSfxScNotify { - #[prost(uint32, repeated, tag = "15")] + #[prost(uint32, repeated, tag = "5")] pub oafhaopejpo: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Hkmkchnpkdc { - #[prost(uint32, tag = "1")] - pub hidbcpinlmh: u32, - #[prost(enumeration = "Fbomlibegoc", tag = "4")] + #[prost(enumeration = "Fbomlibegoc", tag = "15")] pub mjgdopckeif: i32, - #[prost(uint32, tag = "11")] - pub mkkfmndmhje: u32, - #[prost(uint32, tag = "10")] - pub njhlopcjjda: u32, - #[prost(uint32, repeated, tag = "7")] + #[prost(uint32, repeated, tag = "13")] pub fcfdbnjenjf: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "5")] + pub hidbcpinlmh: u32, + #[prost(uint32, tag = "10")] pub kmnlbgoeehg: u32, + #[prost(uint32, tag = "14")] + pub mkkfmndmhje: u32, + #[prost(uint32, tag = "9")] + pub njhlopcjjda: u32, } /// Obf: FBCNGILDCAL #[derive(proto_derive::CmdID)] -#[cmdid(6934)] +#[cmdid(6938)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetOfferingInfoCsReq { - #[prost(uint32, repeated, tag = "14")] + #[prost(uint32, repeated, tag = "8")] pub gpjcdjglgof: ::prost::alloc::vec::Vec, } /// Obf: OOMAIBAJOAN #[derive(proto_derive::CmdID)] -#[cmdid(6933)] +#[cmdid(6929)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetOfferingInfoScRsp { - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "12")] pub retcode: u32, - #[prost(message, repeated, tag = "2")] + #[prost(message, repeated, tag = "9")] pub gdamadmhhgf: ::prost::alloc::vec::Vec, } /// Obf: OPCMLGFFFKD #[derive(proto_derive::CmdID)] -#[cmdid(6928)] +#[cmdid(6930)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SubmitOfferingItemCsReq { - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "4")] pub interacted_prop_entity_id: u32, - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "14")] pub kmnlbgoeehg: u32, } /// Obf: DLIFLGGHNCM #[derive(proto_derive::CmdID)] -#[cmdid(6930)] +#[cmdid(6936)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SubmitOfferingItemScRsp { - #[prost(uint32, tag = "5")] - pub retcode: u32, - #[prost(message, optional, tag = "11")] + #[prost(message, optional, tag = "15")] pub ppjdapbpoap: ::core::option::Option, + #[prost(uint32, tag = "2")] + pub retcode: u32, } /// Obf: NCNENNJGCEJ #[derive(proto_derive::CmdID)] -#[cmdid(6924)] +#[cmdid(6927)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TakeOfferingRewardCsReq { - #[prost(uint32, tag = "15")] - pub interacted_prop_entity_id: u32, - #[prost(uint32, tag = "13")] - pub kmnlbgoeehg: u32, - #[prost(uint32, repeated, tag = "11")] + #[prost(uint32, repeated, tag = "14")] pub fbkccpkieia: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "10")] + pub kmnlbgoeehg: u32, + #[prost(uint32, tag = "5")] + pub interacted_prop_entity_id: u32, } /// Obf: CBPGDFBGMLC #[derive(proto_derive::CmdID)] -#[cmdid(6922)] +#[cmdid(6931)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TakeOfferingRewardScRsp { - #[prost(message, optional, tag = "3")] - pub reward: ::core::option::Option, - #[prost(message, optional, tag = "8")] - pub ppjdapbpoap: ::core::option::Option, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "13")] pub retcode: u32, + #[prost(message, optional, tag = "14")] + pub reward: ::core::option::Option, + #[prost(message, optional, tag = "2")] + pub ppjdapbpoap: ::core::option::Option, } /// Obf: AGDKFNEMODP #[derive(proto_derive::CmdID)] -#[cmdid(6940)] +#[cmdid(6925)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct OfferingInfoScNotify { - #[prost(message, optional, tag = "8")] + #[prost(message, optional, tag = "10")] pub ppjdapbpoap: ::core::option::Option, } /// Obf: KNHNOIKKCAA #[derive(proto_derive::CmdID)] -#[cmdid(4095)] +#[cmdid(4020)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct AcceptedPamMissionExpireCsReq { - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "3")] pub main_mission_id: u32, } /// Obf: HFCKILKEBMH #[derive(proto_derive::CmdID)] -#[cmdid(4032)] +#[cmdid(4091)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct AcceptedPamMissionExpireScRsp { - #[prost(uint32, tag = "5")] - pub main_mission_id: u32, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "4")] pub retcode: u32, + #[prost(uint32, tag = "2")] + pub main_mission_id: u32, } /// Obf: OKPOKDGMOEI #[derive(proto_derive::CmdID)] -#[cmdid(4031)] +#[cmdid(4067)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SyncAcceptedPamMissionNotify { - #[prost(uint64, tag = "10")] - pub pambjbfngpo: u64, - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "10")] pub main_mission_id: u32, + #[prost(uint64, tag = "6")] + pub pambjbfngpo: u64, } /// Obf: IANFOLLDCFN #[derive(proto_derive::CmdID)] -#[cmdid(8134)] +#[cmdid(8138)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetPamSkinDataCsReq {} /// Obf: IMMHJOKNGPA #[derive(proto_derive::CmdID)] -#[cmdid(8133)] +#[cmdid(8129)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetPamSkinDataScRsp { - #[prost(uint32, repeated, tag = "15")] + #[prost(uint32, repeated, tag = "5")] pub unlocked_pam_skins: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "7")] pub retcode: u32, - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "14")] pub current_pam_skin_id: u32, } /// Obf: GKGPODJKBIP #[derive(proto_derive::CmdID)] -#[cmdid(8128)] +#[cmdid(8130)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SelectPamSkinCsReq { - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "11")] pub pam_skin_id: u32, } /// Obf: KEAHBIODCID #[derive(proto_derive::CmdID)] -#[cmdid(8130)] +#[cmdid(8136)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SelectPamSkinScRsp { - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "14")] pub retcode: u32, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "5")] pub current_pam_skin_id: u32, - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "1")] pub select_pam_skin_id: u32, } /// Obf: IOLKOFECEKC #[derive(proto_derive::CmdID)] -#[cmdid(8124)] +#[cmdid(8127)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct UnlockPamSkinScNotify { - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "3")] pub pam_skin_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Ggdemgbofgo { - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "1")] pub time: u32, - #[prost(bool, tag = "5")] - pub kkehmbpjooc: bool, - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "13")] pub acjcphifmln: u32, + #[prost(bool, tag = "15")] + pub kkehmbpjooc: bool, } /// Obf: CEHPIACKNMO #[derive(proto_derive::CmdID)] -#[cmdid(8394)] +#[cmdid(8398)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ParkourGetDataCsReq {} /// Obf: MEDMMLKPLNL #[derive(proto_derive::CmdID)] -#[cmdid(8393)] +#[cmdid(8389)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ParkourGetDataScRsp { + #[prost(uint32, tag = "11")] + pub retcode: u32, #[prost(message, repeated, tag = "4")] pub kcmcmpfonko: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "3")] - pub retcode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Dgefmlbpfmm { #[prost(uint32, tag = "1")] pub time: u32, - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "3")] pub id: u32, #[prost(uint32, tag = "8")] pub lpbhomfclon: u32, @@ -16990,383 +18422,383 @@ pub struct Dgefmlbpfmm { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Oofkebpanlp { - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "2")] pub acjcphifmln: u32, - #[prost(message, repeated, tag = "7")] + #[prost(message, repeated, tag = "4")] pub dcfhgaajlnn: ::prost::alloc::vec::Vec, } /// Obf: LAAICGPFABC #[derive(proto_derive::CmdID)] -#[cmdid(8388)] +#[cmdid(8390)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ParkourGetRankingInfoCsReq {} /// Obf: FLIGGDLDOKH #[derive(proto_derive::CmdID)] -#[cmdid(8390)] +#[cmdid(8396)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ParkourGetRankingInfoScRsp { - #[prost(message, repeated, tag = "8")] + #[prost(message, repeated, tag = "13")] pub pfengldjcmg: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "5")] - pub retcode: u32, - #[prost(message, optional, tag = "15")] + #[prost(message, optional, tag = "14")] pub njgpikcfjnl: ::core::option::Option, + #[prost(uint32, tag = "9")] + pub retcode: u32, } /// Obf: FCMADPMOMGD #[derive(proto_derive::CmdID)] -#[cmdid(8384)] +#[cmdid(8387)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ParkourStartLevelCsReq { - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "9")] pub pofmcalhooc: u32, - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "3")] pub acjcphifmln: u32, } /// Obf: GPFIOILCDDH #[derive(proto_derive::CmdID)] -#[cmdid(8382)] +#[cmdid(8391)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ParkourStartLevelScRsp { - #[prost(uint32, tag = "14")] - pub retcode: u32, - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "15")] pub acjcphifmln: u32, - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "4")] + pub retcode: u32, + #[prost(uint32, tag = "13")] pub pofmcalhooc: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Bfpolegccpj { - #[prost(uint32, tag = "5")] - pub cnt: u32, - #[prost(enumeration = "Hcfffeimcmf", tag = "7")] + #[prost(enumeration = "Hcfffeimcmf", tag = "11")] pub slot: i32, + #[prost(uint32, tag = "13")] + pub cnt: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Dckpbicnmkk { - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "3")] pub id: u32, - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "6")] pub cnt: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Ooalaodncpe { - #[prost(uint32, tag = "11")] - pub dhdlndfibkc: u32, - #[prost(uint32, tag = "14")] - pub nbnekbdillk: u32, - #[prost(uint32, tag = "15")] - pub mmabimiejnj: u32, - #[prost(message, repeated, tag = "1")] - pub apnnbdbenlc: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "3")] - pub oggegaolpgn: u32, - #[prost(uint32, tag = "9")] - pub gfdipldifhg: u32, - #[prost(uint32, tag = "7")] - pub jehjljdkbge: u32, - #[prost(uint32, tag = "10")] - pub nfphcjipijh: u32, - #[prost(uint32, tag = "5")] - pub oigkboohnii: u32, - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "2")] pub fodekcobffa: u32, - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "10")] pub neefgjbmcll: u32, + #[prost(uint32, tag = "5")] + pub oggegaolpgn: u32, + #[prost(uint32, tag = "3")] + pub oigkboohnii: u32, + #[prost(uint32, tag = "12")] + pub gfdipldifhg: u32, + #[prost(uint32, tag = "13")] + pub dhdlndfibkc: u32, + #[prost(uint32, tag = "7")] + pub nbnekbdillk: u32, + #[prost(uint32, tag = "9")] + pub nfphcjipijh: u32, + #[prost(uint32, tag = "8")] + pub jehjljdkbge: u32, + #[prost(message, repeated, tag = "15")] + pub apnnbdbenlc: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "4")] + pub mmabimiejnj: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Fjjofekpddh { - #[prost(uint32, tag = "6")] - pub adjopiaibmg: u32, - #[prost(uint32, tag = "9")] - pub hlkdfincppm: u32, #[prost(uint32, tag = "13")] - pub cnjjhfpmiip: u32, - #[prost(uint32, tag = "1")] pub chakndokncb: u32, + #[prost(uint32, tag = "2")] + pub adjopiaibmg: u32, + #[prost(uint32, tag = "11")] + pub cnjjhfpmiip: u32, + #[prost(uint32, tag = "4")] + pub hlkdfincppm: u32, } /// Obf: FCEFAKEBFFM #[derive(proto_derive::CmdID)] -#[cmdid(8400)] +#[cmdid(8385)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ParkourEndLevelCsReq { - #[prost(message, optional, tag = "11")] - pub ifenfkggiem: ::core::option::Option, #[prost(uint32, tag = "9")] - pub rank: u32, - #[prost(enumeration = "Poahabdkpkj", tag = "5")] - pub hbgclmcgnfm: i32, - #[prost(uint32, tag = "12")] pub baabddjehmc: u32, + #[prost(uint32, tag = "4")] + pub eefcbbkkflc: u32, + #[prost(uint32, tag = "3")] + pub acjcphifmln: u32, #[prost(uint32, tag = "7")] pub pofmcalhooc: u32, - #[prost(message, repeated, tag = "1")] - pub aedbpadegfi: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "14")] - pub acjcphifmln: u32, - #[prost(uint32, tag = "15")] - pub time: u32, - #[prost(uint32, tag = "2")] - pub eefcbbkkflc: u32, - #[prost(message, repeated, tag = "8")] + #[prost(enumeration = "Poahabdkpkj", tag = "11")] + pub hbgclmcgnfm: i32, + #[prost(message, repeated, tag = "6")] pub hmbheigkdbk: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "14")] + pub rank: u32, + #[prost(message, repeated, tag = "12")] + pub aedbpadegfi: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "13")] + pub time: u32, + #[prost(message, optional, tag = "10")] + pub ifenfkggiem: ::core::option::Option, } /// Obf: PIOJEPCPKAC #[derive(proto_derive::CmdID)] -#[cmdid(8389)] +#[cmdid(8383)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ParkourEndLevelScRsp { - #[prost(enumeration = "Poahabdkpkj", tag = "10")] - pub hbgclmcgnfm: i32, - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "6")] pub acjcphifmln: u32, #[prost(bool, tag = "12")] pub kkehmbpjooc: bool, - #[prost(message, optional, tag = "2")] - pub blmdkjkoioh: ::core::option::Option, - #[prost(bool, tag = "1")] + #[prost(bool, tag = "4")] pub fdgmoeoajkp: bool, - #[prost(uint32, tag = "9")] - pub retcode: u32, - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "10")] pub time: u32, + #[prost(uint32, tag = "8")] + pub retcode: u32, + #[prost(enumeration = "Poahabdkpkj", tag = "15")] + pub hbgclmcgnfm: i32, + #[prost(message, optional, tag = "14")] + pub blmdkjkoioh: ::core::option::Option, } /// Obf: BKFCEFHDPCF #[derive(proto_derive::CmdID)] -#[cmdid(7611)] +#[cmdid(7609)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetPetDataCsReq {} /// Obf: DPLNLFKGHHO #[derive(proto_derive::CmdID)] -#[cmdid(7620)] +#[cmdid(7611)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetPetDataScRsp { - #[prost(uint32, tag = "10")] - pub pet_id: u32, - #[prost(uint32, repeated, tag = "3")] + #[prost(uint32, repeated, tag = "2")] pub owned_pet_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "15")] + pub pet_id: u32, + #[prost(uint32, tag = "10")] pub retcode: u32, } /// Obf: FMNKJCBDLEJ #[derive(proto_derive::CmdID)] -#[cmdid(7609)] +#[cmdid(7605)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SummonPetCsReq { - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "3")] pub summoned_pet_id: u32, } /// Obf: FIFKOAJCKEJ #[derive(proto_derive::CmdID)] -#[cmdid(7619)] +#[cmdid(7610)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SummonPetScRsp { - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "8")] pub pet_item_id: u32, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "4")] pub retcode: u32, - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "2")] pub pet_id: u32, } /// Obf: EKNDMAJKKKB #[derive(proto_derive::CmdID)] -#[cmdid(7624)] +#[cmdid(7620)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RecallPetCsReq { - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "1")] pub summoned_pet_id: u32, } /// Obf: CILLCOPKKDL #[derive(proto_derive::CmdID)] -#[cmdid(7601)] +#[cmdid(7607)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RecallPetScRsp { - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "8")] pub pet_id: u32, - #[prost(uint32, tag = "7")] - pub pet_item_id: u32, - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "2")] pub retcode: u32, + #[prost(uint32, tag = "12")] + pub pet_item_id: u32, } /// Obf: KIJFPBFKMKA #[derive(proto_derive::CmdID)] -#[cmdid(7603)] +#[cmdid(7612)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct CurPetChangedScNotify { - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "11")] pub pet_id: u32, } /// Obf: FKOOKNOIDAB #[derive(proto_derive::CmdID)] -#[cmdid(5195)] +#[cmdid(5120)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetPhoneDataCsReq {} /// Obf: PMPAJBKNDHC #[derive(proto_derive::CmdID)] -#[cmdid(5132)] +#[cmdid(5191)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetPhoneDataScRsp { + #[prost(uint32, repeated, tag = "2")] + pub kkneegdkemd: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "5")] + pub cur_chat_bubble: u32, + #[prost(uint32, tag = "10")] + pub lmocamklkpi: u32, + #[prost(uint32, repeated, tag = "4")] + pub owned_chat_bubbles: ::prost::alloc::vec::Vec, #[prost(uint32, tag = "7")] pub cur_phone_theme: u32, - #[prost(uint32, repeated, tag = "10")] - pub owned_phone_themes: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "9")] pub retcode: u32, - #[prost(uint32, tag = "11")] - pub cur_chat_bubble: u32, - #[prost(uint32, tag = "4")] - pub lmocamklkpi: u32, - #[prost(uint32, repeated, tag = "9")] - pub owned_chat_bubbles: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "5")] - pub kkneegdkemd: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "1")] + pub owned_phone_themes: ::prost::alloc::vec::Vec, } /// Obf: CMGEDCCBJGH #[derive(proto_derive::CmdID)] -#[cmdid(5131)] +#[cmdid(5167)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SelectChatBubbleCsReq { - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "2")] pub bubble_id: u32, } /// Obf: MALLKFJAEAH #[derive(proto_derive::CmdID)] -#[cmdid(5140)] +#[cmdid(5139)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SelectChatBubbleScRsp { - #[prost(uint32, tag = "6")] - pub cur_chat_bubble: u32, - #[prost(uint32, tag = "3")] - pub retcode: u32, - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "11")] pub pmdcbfopchb: u32, + #[prost(uint32, tag = "1")] + pub retcode: u32, + #[prost(uint32, tag = "14")] + pub cur_chat_bubble: u32, } /// Obf: GHAALGCBPCA #[derive(proto_derive::CmdID)] -#[cmdid(5176)] +#[cmdid(5127)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct UnlockChatBubbleScNotify { - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "15")] pub bubble_id: u32, } /// Obf: EDHCHAJIMCA #[derive(proto_derive::CmdID)] -#[cmdid(5148)] +#[cmdid(5121)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SelectPhoneThemeCsReq { - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "1")] pub theme_id: u32, } /// Obf: KODDPLOIHFK #[derive(proto_derive::CmdID)] -#[cmdid(5171)] +#[cmdid(5170)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SelectPhoneThemeScRsp { #[prost(uint32, tag = "13")] - pub retcode: u32, - #[prost(uint32, tag = "4")] - pub achopojlcce: u32, - #[prost(uint32, tag = "12")] pub cur_phone_theme: u32, + #[prost(uint32, tag = "3")] + pub retcode: u32, + #[prost(uint32, tag = "10")] + pub achopojlcce: u32, } /// Obf: GOAAANNKAPL #[derive(proto_derive::CmdID)] -#[cmdid(5152)] +#[cmdid(5159)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct UnlockPhoneThemeScNotify { - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "2")] pub theme_id: u32, } /// Obf: PDNNFCNOHIK #[derive(proto_derive::CmdID)] -#[cmdid(5122)] +#[cmdid(5154)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SelectPhoneCaseCsReq { - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "12")] pub gianhliikia: u32, } /// Obf: BJKCHHNNHGO #[derive(proto_derive::CmdID)] -#[cmdid(5156)] +#[cmdid(5177)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SelectPhoneCaseScRsp { - #[prost(uint32, tag = "2")] - pub retcode: u32, - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "9")] pub pdacjdieojg: u32, - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "5")] pub lmocamklkpi: u32, + #[prost(uint32, tag = "11")] + pub retcode: u32, } /// Obf: GNAJBMACMDG #[derive(proto_derive::CmdID)] -#[cmdid(5172)] +#[cmdid(5180)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct UnlockPhoneCaseScNotify { - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "10")] pub gianhliikia: u32, } /// Obf: PEJKMMNDPFJ #[derive(proto_derive::CmdID)] -#[cmdid(8204)] +#[cmdid(8249)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetPlanetFesDataCsReq {} /// Obf: OCHEDCALAOF #[derive(proto_derive::CmdID)] -#[cmdid(8246)] +#[cmdid(8227)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetPlanetFesDataScRsp { - #[prost(message, optional, tag = "7")] - pub hljmhnabfmc: ::core::option::Option, - #[prost(uint32, tag = "4")] - pub retcode: u32, - #[prost(message, optional, tag = "6")] - pub lapcheignmj: ::core::option::Option, - #[prost(message, repeated, tag = "11")] - pub kfbpcfdhlhl: ::prost::alloc::vec::Vec, - #[prost(message, optional, tag = "12")] - pub heojnaimgkc: ::core::option::Option, #[prost(message, optional, tag = "13")] - pub fdhgikjdlgd: ::core::option::Option, - #[prost(message, optional, tag = "3")] - pub ebgngdgbolh: ::core::option::Option, - #[prost(message, optional, tag = "15")] - pub admjkkoiagd: ::core::option::Option, - #[prost(message, optional, tag = "1")] - pub lmgkmaoicgc: ::core::option::Option, - #[prost(message, optional, tag = "9")] pub kjkbkegighk: ::core::option::Option, - #[prost(message, optional, tag = "10")] - pub hmffhbhalge: ::core::option::Option, #[prost(message, optional, tag = "14")] + pub heojnaimgkc: ::core::option::Option, + #[prost(uint32, tag = "1")] + pub retcode: u32, + #[prost(message, optional, tag = "7")] pub skill_info: ::core::option::Option, + #[prost(message, optional, tag = "15")] + pub fdhgikjdlgd: ::core::option::Option, + #[prost(message, repeated, tag = "4")] + pub kfbpcfdhlhl: ::prost::alloc::vec::Vec, + #[prost(message, optional, tag = "9")] + pub admjkkoiagd: ::core::option::Option, + #[prost(message, optional, tag = "6")] + pub ebgngdgbolh: ::core::option::Option, + #[prost(message, optional, tag = "11")] + pub lapcheignmj: ::core::option::Option, + #[prost(message, optional, tag = "5")] + pub hljmhnabfmc: ::core::option::Option, #[prost(message, optional, tag = "2")] pub hbdliicpkob: ::core::option::Option, + #[prost(message, optional, tag = "3")] + pub lmgkmaoicgc: ::core::option::Option, + #[prost(message, optional, tag = "8")] + pub hmffhbhalge: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Iikngnhdmfi { - #[prost(uint32, repeated, tag = "7")] + #[prost(uint32, repeated, tag = "14")] pub mcnmhbjhmme: ::prost::alloc::vec::Vec, } /// Obf: GLLLJCAAFFE #[derive(proto_derive::CmdID)] -#[cmdid(8202)] +#[cmdid(8218)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct PlanetFesSyncChangeScNotify { - #[prost(message, repeated, tag = "9")] + #[prost(message, repeated, tag = "3")] pub leadmneimdp: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Oidffleeall { - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "14")] pub ihelajnmmbf: u32, - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "2")] pub imfcimkmjpl: u32, - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "5")] pub kejnimghoig: u32, } #[derive(proto_derive::CmdID)] @@ -17374,38 +18806,38 @@ pub struct Oidffleeall { pub struct Ccnanlcoddf { #[prost(message, optional, tag = "9")] pub source: ::core::option::Option, - #[prost(message, optional, tag = "3")] + #[prost(message, optional, tag = "7")] pub pbhmgchkjgo: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Ofgbmcknldj { - #[prost(message, optional, tag = "8")] - pub jcfplghkjaa: ::core::option::Option, - #[prost(int64, tag = "6")] - pub mfknhhnfkgi: i64, - #[prost(uint32, tag = "5")] - pub dgcflhcpjln: u32, - #[prost(message, optional, tag = "1")] + #[prost(message, optional, tag = "6")] pub bjodeepgopc: ::core::option::Option, + #[prost(message, optional, tag = "15")] + pub jcfplghkjaa: ::core::option::Option, + #[prost(uint32, tag = "3")] + pub dgcflhcpjln: u32, + #[prost(int64, tag = "8")] + pub mfknhhnfkgi: i64, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Kofollacigo { - #[prost(message, repeated, tag = "13")] + #[prost(message, repeated, tag = "8")] pub inllekamnpf: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Eoaegaefpfh { - #[prost(uint32, tag = "4")] - pub level: u32, - #[prost(uint32, tag = "6")] - pub mhkhaclnbpm: u32, - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "3")] pub paehamjhndd: u32, - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "10")] pub avatar_id: u32, + #[prost(uint32, tag = "11")] + pub level: u32, + #[prost(uint32, tag = "5")] + pub mhkhaclnbpm: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] @@ -17416,66 +18848,66 @@ pub struct Dkejeoehagm { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Ceoddceiddl { - #[prost(uint32, tag = "12")] - pub item_id: u32, - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "9")] pub mbejblfhcbh: u32, + #[prost(uint32, tag = "5")] + pub item_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Ajcjchljbgf { - #[prost(message, repeated, tag = "9")] + #[prost(message, repeated, tag = "4")] pub item_list: ::prost::alloc::vec::Vec, - #[prost(message, optional, tag = "4")] - pub item_value: ::core::option::Option, - #[prost(message, optional, tag = "13")] + #[prost(message, optional, tag = "6")] pub pcajncbmimm: ::core::option::Option, + #[prost(message, optional, tag = "7")] + pub item_value: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Oainkjlpcdk { - #[prost(message, repeated, tag = "12")] + #[prost(message, repeated, tag = "6")] pub pocjcmkkjik: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Ppfcjhekolg { - #[prost(message, optional, tag = "3")] - pub source: ::core::option::Option, - #[prost(uint64, tag = "4")] - pub unique_id: u64, - #[prost(message, repeated, tag = "10")] - pub dfcfhhlbgdc: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "7")] pub config_id: u32, + #[prost(message, repeated, tag = "13")] + pub dfcfhhlbgdc: ::prost::alloc::vec::Vec, + #[prost(message, optional, tag = "11")] + pub source: ::core::option::Option, + #[prost(uint64, tag = "1")] + pub unique_id: u64, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Fimacphlmno { - #[prost(oneof = "fimacphlmno::Buff", tags = "9")] - pub buff: ::core::option::Option, + #[prost(oneof = "fimacphlmno::Info", tags = "1")] + pub info: ::core::option::Option, } /// Nested message and enum types in `FIMACPHLMNO`. pub mod fimacphlmno { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Oneof)] - pub enum Buff { - #[prost(int64, tag = "9")] + pub enum Info { + #[prost(int64, tag = "1")] Kbefcmiiiin(i64), } } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Adafjfojdeg { - #[prost(uint32, tag = "1")] - pub jlfabhhnhcm: u32, - #[prost(uint32, tag = "12")] - pub progress: u32, #[prost(uint32, tag = "3")] pub mfanncagdmp: u32, + #[prost(uint32, tag = "2")] + pub progress: u32, + #[prost(uint32, tag = "8")] + pub jlfabhhnhcm: u32, #[prost(enumeration = "Gmfejefibbi", tag = "6")] pub status: i32, - #[prost(oneof = "adafjfojdeg::Gniohlclpmp", tags = "5, 4")] + #[prost(oneof = "adafjfojdeg::Gniohlclpmp", tags = "15, 5")] pub gniohlclpmp: ::core::option::Option, } /// Nested message and enum types in `ADAFJFOJDEG`. @@ -17483,303 +18915,303 @@ pub mod adafjfojdeg { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] pub enum Gniohlclpmp { - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "15")] Bonaghbbicf(u32), - #[prost(message, tag = "4")] + #[prost(message, tag = "5")] Nnhpcoiikff(super::Iikngnhdmfi), } } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Pcodfcnkhjk { - #[prost(uint32, tag = "13")] - pub eofeldeapeo: u32, - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "9")] pub dcnphbdddip: u32, + #[prost(uint32, tag = "6")] + pub eofeldeapeo: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Clknibojlgp { - #[prost(message, repeated, tag = "4")] + #[prost(message, repeated, tag = "15")] pub quest_list: ::prost::alloc::vec::Vec, - #[prost(message, optional, tag = "3")] + #[prost(message, optional, tag = "13")] pub cmhnljjodjf: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Gcamegpepol { - #[prost(uint32, tag = "2")] - pub pjolemhlgnl: u32, - #[prost(message, optional, tag = "4")] + #[prost(message, optional, tag = "5")] pub ehbjbpcnplg: ::core::option::Option, + #[prost(uint32, tag = "13")] + pub pjolemhlgnl: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Dhnfbgenlig { - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "6")] pub progress: u32, - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "7")] pub bhpcnnfokee: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Afbamplgheh { - #[prost(uint32, repeated, tag = "2")] + #[prost(uint32, repeated, tag = "1")] pub ihbjiihbibp: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "8")] + #[prost(message, repeated, tag = "6")] pub nckcmgcbehk: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Hfocnhojlah { - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "10")] pub level: u32, - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "9")] pub skill_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Iacfpgolflm { - #[prost(message, repeated, tag = "9")] + #[prost(message, repeated, tag = "6")] pub skill_info_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Gjbfgabaamo { - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "2")] pub eimgbknlgnf: u32, - #[prost(uint32, repeated, tag = "15")] + #[prost(uint32, repeated, tag = "11")] pub hignfpjlfka: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Mioaegbpoma { - #[prost(uint32, repeated, tag = "2")] + #[prost(uint32, repeated, tag = "14")] pub fgimacchhdk: ::prost::alloc::vec::Vec, - #[prost(int64, tag = "12")] + #[prost(int64, tag = "10")] pub epcpdocdocb: i64, - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "1")] pub fgpacihlanb: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Hmbanckgbii { #[prost( - oneof = "hmbanckgbii::Buff", - tags = "3, 7, 13, 12, 9, 10, 8, 4, 5, 1, 6, 15, 11, 14, 2, 390, 1303, 1145, 1384, 797, 1446, 198, 1683, 1978, 79, 1725, 958, 656" + oneof = "hmbanckgbii::Info", + tags = "7, 14, 1, 12, 15, 2, 11, 3, 13, 9, 8, 4, 6, 10, 5, 160, 1136, 1401, 728, 1142, 1027, 359, 500, 1061, 1117, 247, 423, 1828" )] - pub buff: ::core::option::Option, + pub info: ::core::option::Option, } /// Nested message and enum types in `HMBANCKGBII`. pub mod hmbanckgbii { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum Buff { - #[prost(message, tag = "3")] - Lkmlgoeeekh(super::Giedcjdlege), + pub enum Info { #[prost(message, tag = "7")] + Lkmlgoeeekh(super::Giedcjdlege), + #[prost(message, tag = "14")] Cohnlgmifbo(super::Giedcjdlege), - #[prost(message, tag = "13")] + #[prost(message, tag = "1")] Pmlocbhiddl(super::Hpgagbgjlid), #[prost(message, tag = "12")] Lebmnloakhc(super::Hpgagbgjlid), - #[prost(message, tag = "9")] - Kbnligljenn(super::Ofgbmcknldj), - #[prost(message, tag = "10")] - Mmfbenambne(super::Ofgbmcknldj), - #[prost(message, tag = "8")] - Gnaidhhjebi(super::Eoaegaefpfh), - #[prost(message, tag = "4")] - Jbdhlhhfdge(super::Eoaegaefpfh), - #[prost(message, tag = "5")] - Jplplfcookd(super::Ppfcjhekolg), - #[prost(message, tag = "1")] - Mkofoocokbk(super::Ppfcjhekolg), - #[prost(message, tag = "6")] - Olmgneoahop(super::Phfbdnnlinf), #[prost(message, tag = "15")] - Gbffgphfmdp(super::Adafjfojdeg), - #[prost(message, tag = "11")] - Dmnmifjhecl(super::Adafjfojdeg), - #[prost(message, tag = "14")] - Imfcdmieopl(super::Pcodfcnkhjk), + Kbnligljenn(super::Ofgbmcknldj), #[prost(message, tag = "2")] + Mmfbenambne(super::Ofgbmcknldj), + #[prost(message, tag = "11")] + Gnaidhhjebi(super::Eoaegaefpfh), + #[prost(message, tag = "3")] + Jbdhlhhfdge(super::Eoaegaefpfh), + #[prost(message, tag = "13")] + Jplplfcookd(super::Ppfcjhekolg), + #[prost(message, tag = "9")] + Mkofoocokbk(super::Ppfcjhekolg), + #[prost(message, tag = "8")] + Olmgneoahop(super::Phfbdnnlinf), + #[prost(message, tag = "4")] + Gbffgphfmdp(super::Adafjfojdeg), + #[prost(message, tag = "6")] + Dmnmifjhecl(super::Adafjfojdeg), + #[prost(message, tag = "10")] + Imfcdmieopl(super::Pcodfcnkhjk), + #[prost(message, tag = "5")] Pcllcbmhcbd(super::Olbopgjffpm), - #[prost(message, tag = "390")] + #[prost(message, tag = "160")] Biedmjpaebd(super::Hfocnhojlah), - #[prost(message, tag = "1303")] + #[prost(message, tag = "1136")] Foicfogcgia(super::Pgndibbgijn), - #[prost(message, tag = "1145")] + #[prost(message, tag = "1401")] Nceidlnkbbg(super::Djoeeghmcfj), - #[prost(message, tag = "1384")] + #[prost(message, tag = "728")] Kmmdpejakec(super::Cbikmffdcgi), - #[prost(message, tag = "797")] + #[prost(message, tag = "1142")] Gpnlpneehdm(super::Hpcaimkjdij), - #[prost(message, tag = "1446")] + #[prost(message, tag = "1027")] Cneklokhahl(super::Hohdmmndknj), - #[prost(message, tag = "198")] + #[prost(message, tag = "359")] Dmfjdahpiid(super::Fhngonefbde), - #[prost(message, tag = "1683")] + #[prost(message, tag = "500")] Iloekhkejaj(super::Ppfcjhekolg), - #[prost(message, tag = "1978")] + #[prost(message, tag = "1061")] Laegjpilnnd(super::Iljjbgifdpe), - #[prost(message, tag = "79")] + #[prost(message, tag = "1117")] Lcdklahgkji(super::Deinadpehke), - #[prost(message, tag = "1725")] + #[prost(message, tag = "247")] Bcaddfdbfna(super::Bkbilpdkoil), - #[prost(message, tag = "958")] + #[prost(message, tag = "423")] Liglefjmlhm(super::Eikaiidaepp), - #[prost(message, tag = "656")] + #[prost(message, tag = "1828")] Gbncidjnlpl(super::Gjipjngnfej), } } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Olbopgjffpm { - #[prost(bool, tag = "15")] + #[prost(bool, tag = "5")] pub biinncndpcg: bool, - #[prost(message, optional, tag = "3")] + #[prost(message, optional, tag = "1")] pub kjkbkegighk: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Phfbdnnlinf { - #[prost(message, optional, tag = "9")] - pub ehbjbpcnplg: ::core::option::Option, - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "13")] pub pjolemhlgnl: u32, + #[prost(message, optional, tag = "8")] + pub ehbjbpcnplg: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Giedcjdlege { - #[prost(message, optional, tag = "3")] - pub mfnaglkdpni: ::core::option::Option, - #[prost(message, optional, tag = "6")] + #[prost(message, optional, tag = "12")] pub bmalpkekbel: ::core::option::Option, - #[prost(message, optional, tag = "4")] + #[prost(message, optional, tag = "9")] + pub mfnaglkdpni: ::core::option::Option, + #[prost(message, optional, tag = "3")] pub ogjofmcmfpg: ::core::option::Option, - #[prost(uint32, repeated, tag = "2")] + #[prost(uint32, repeated, tag = "14")] pub blcabemfach: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Hpgagbgjlid { - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "7")] pub item_id: u32, - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "3")] pub ogjofmcmfpg: u32, - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "4")] pub bmalpkekbel: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Pgndibbgijn { - #[prost(uint32, tag = "15")] - pub ecilicnolfn: u32, - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "14")] pub gfjaghljjdn: u32, + #[prost(uint32, tag = "8")] + pub ecilicnolfn: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Npaiinekefb { - #[prost(message, optional, tag = "7")] - pub dmaimcppjgh: ::core::option::Option, - #[prost(uint32, tag = "2")] - pub pefdlajlcjb: u32, - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "5")] pub avatar_id: u32, - #[prost(uint32, tag = "6")] + #[prost(message, optional, tag = "6")] + pub dmaimcppjgh: ::core::option::Option, + #[prost(uint32, tag = "12")] + pub pefdlajlcjb: u32, + #[prost(uint32, tag = "15")] pub jlceefbljdc: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Iljjbgifdpe { - #[prost(uint32, tag = "9")] - pub nijmjbmcfjf: u32, - #[prost(message, optional, tag = "11")] - pub pehingjkgcb: ::core::option::Option, - #[prost(uint32, tag = "7")] - pub ccigdjcgamd: u32, - #[prost(message, optional, tag = "15")] + #[prost(message, optional, tag = "14")] pub eajpdpcdjpk: ::core::option::Option, - #[prost(uint32, tag = "3")] - pub nlaompdenkk: u32, - #[prost(message, optional, tag = "12")] - pub fofhieiicpb: ::core::option::Option, + #[prost(message, repeated, tag = "13")] + pub oebafbigmbc: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "8")] + pub nijmjbmcfjf: u32, #[prost(map = "uint32, uint32", tag = "2")] pub bjelclbgalf: ::std::collections::HashMap, - #[prost(uint32, tag = "13")] + #[prost(message, optional, tag = "10")] + pub fofhieiicpb: ::core::option::Option, + #[prost(uint32, tag = "5")] + pub nlaompdenkk: u32, + #[prost(uint32, tag = "3")] pub hdkafnkhala: u32, #[prost(uint32, tag = "1")] + pub ccigdjcgamd: u32, + #[prost(message, optional, tag = "9")] + pub pehingjkgcb: ::core::option::Option, + #[prost(uint32, tag = "6")] pub membicnifli: u32, - #[prost(message, repeated, tag = "5")] - pub oebafbigmbc: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Djoeeghmcfj { - #[prost(message, optional, tag = "13")] + #[prost(message, optional, tag = "14")] pub aakdahhigif: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Hpcaimkjdij { - #[prost(message, optional, tag = "2")] + #[prost(message, optional, tag = "9")] pub jilaggdmall: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Cbikmffdcgi { - #[prost(message, optional, tag = "1")] + #[prost(message, optional, tag = "9")] pub hhjocipobcf: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Hohdmmndknj { - #[prost(enumeration = "Dfhejcijbej", tag = "5")] + #[prost(enumeration = "Dfhejcijbej", tag = "7")] pub podgjpekeeg: i32, - #[prost(message, optional, tag = "8")] + #[prost(message, optional, tag = "15")] pub nfjlfnbpppg: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Fhngonefbde { - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "7")] pub eimgbknlgnf: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Ohdhpclijnh { - #[prost(uint32, tag = "11")] - pub eafomflmojj: u32, - #[prost(uint32, tag = "14")] - pub iacphgojhmb: u32, - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "3")] pub cioaogdkfog: u32, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "14")] + pub eafomflmojj: u32, + #[prost(uint32, tag = "8")] pub ginmoibglnm: u32, - #[prost(message, optional, tag = "3")] + #[prost(uint32, tag = "9")] + pub iacphgojhmb: u32, + #[prost(message, optional, tag = "12")] pub kjbkngcfbbp: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Djiaemangcg { - #[prost(message, repeated, tag = "3")] - pub transfer_item_list: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "13")] + #[prost(message, repeated, tag = "4")] pub item_list: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "9")] + pub transfer_item_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Bfaaefcejpa { - #[prost(message, optional, tag = "14")] - pub pkbbhjpaeki: ::core::option::Option, - #[prost(message, optional, tag = "5")] + #[prost(message, optional, tag = "13")] pub hocnlijhjjk: ::core::option::Option, + #[prost(message, optional, tag = "12")] + pub pkbbhjpaeki: ::core::option::Option, } /// Obf: BAILPFJGMLE #[derive(proto_derive::CmdID)] -#[cmdid(8237)] +#[cmdid(8236)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct PlanetFesCollectIncomeCsReq { #[prost(uint32, tag = "8")] @@ -17787,58 +19219,58 @@ pub struct PlanetFesCollectIncomeCsReq { } /// Obf: PNJJMKEHDPG #[derive(proto_derive::CmdID)] -#[cmdid(8236)] +#[cmdid(8211)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct PlanetFesCollectIncomeScRsp { - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "7")] pub retcode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Pfbfimjfegi { - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "14")] pub avatar_id: u32, - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "1")] pub dgcflhcpjln: u32, } /// Obf: NHMBLKBLDOP #[derive(proto_derive::CmdID)] -#[cmdid(8217)] +#[cmdid(8237)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct PlanetFesSetAvatarWorkCsReq { - #[prost(message, repeated, tag = "4")] + #[prost(message, repeated, tag = "1")] pub kngpofhnfaj: ::prost::alloc::vec::Vec, } /// Obf: DNEJNDIJELO #[derive(proto_derive::CmdID)] -#[cmdid(8227)] +#[cmdid(8217)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct PlanetFesSetAvatarWorkScRsp { - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "10")] pub retcode: u32, } /// Obf: JNNOGMCDKJK #[derive(proto_derive::CmdID)] -#[cmdid(8215)] +#[cmdid(8239)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct PlanetFesBuyLandCsReq { - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "9")] pub dgcflhcpjln: u32, } /// Obf: EEFNFHKOIJP #[derive(proto_derive::CmdID)] -#[cmdid(8243)] +#[cmdid(8212)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct PlanetFesBuyLandScRsp { - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "13")] pub retcode: u32, } /// Obf: CAHHKIIFJMG #[derive(proto_derive::CmdID)] -#[cmdid(8209)] +#[cmdid(8210)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct PlanetFesClientStatusCsReq { - #[prost(bool, tag = "15")] + #[prost(bool, tag = "13")] pub fjinnlfcboj: bool, } /// Obf: OJNMBPDDGOK @@ -17851,75 +19283,75 @@ pub struct PlanetFesClientStatusScRsp { } /// Obf: HNJCKGGBCOB #[derive(proto_derive::CmdID)] -#[cmdid(8207)] +#[cmdid(8206)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct PlanetFesCollectAllIncomeCsReq {} /// Obf: NLHNGPHIGNA #[derive(proto_derive::CmdID)] -#[cmdid(8250)] +#[cmdid(8228)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct PlanetFesCollectAllIncomeScRsp { - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "12")] pub retcode: u32, - #[prost(message, optional, tag = "5")] + #[prost(message, optional, tag = "6")] pub gndcammiloi: ::core::option::Option, } /// Obf: JNIDOJLNOFD #[derive(proto_derive::CmdID)] -#[cmdid(8240)] +#[cmdid(8219)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct PlanetFesDoGachaCsReq { - #[prost(uint32, tag = "7")] - pub ifngnhhcngl: u32, - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "14")] pub gacha_id: u32, - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "6")] + pub ifngnhhcngl: u32, + #[prost(uint32, tag = "15")] pub simulate_magic: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Neihldgebhe { - #[prost(uint32, tag = "8")] - pub avatar_id: u32, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "5")] pub jkjncnclfld: u32, - #[prost(message, optional, tag = "4")] + #[prost(message, optional, tag = "8")] pub lpdeopgelle: ::core::option::Option, #[prost(uint32, tag = "15")] + pub avatar_id: u32, + #[prost(uint32, tag = "4")] pub fljpkfjajfp: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Cgojkboeofo { - #[prost(message, repeated, tag = "9")] - pub dhhaphnmedf: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "13")] + #[prost(uint32, repeated, tag = "1")] pub jcdjcanehjd: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "6")] - pub gmofklbfapl: ::prost::alloc::vec::Vec, - #[prost(message, optional, tag = "15")] + #[prost(message, repeated, tag = "13")] + pub dhhaphnmedf: ::prost::alloc::vec::Vec, + #[prost(message, optional, tag = "12")] pub cabcgkngaoc: ::core::option::Option, + #[prost(message, repeated, tag = "15")] + pub gmofklbfapl: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Pjcakifoocp { - #[prost(message, optional, tag = "15")] - pub jfmahmofjpi: ::core::option::Option, - #[prost(uint32, repeated, tag = "5")] + #[prost(uint32, repeated, tag = "10")] pub ecdambiifci: ::prost::alloc::vec::Vec, + #[prost(message, optional, tag = "5")] + pub jfmahmofjpi: ::core::option::Option, } /// Obf: DMBEKDDJJKE #[derive(proto_derive::CmdID)] -#[cmdid(8220)] +#[cmdid(8226)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct PlanetFesDoGachaScRsp { - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "1")] pub retcode: u32, - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "5")] pub gacha_id: u32, - #[prost(message, repeated, tag = "10")] + #[prost(message, repeated, tag = "13")] pub cikepdangfd: ::prost::alloc::vec::Vec, - #[prost(oneof = "planet_fes_do_gacha_sc_rsp::Ccpfabancnn", tags = "12, 11")] + #[prost(oneof = "planet_fes_do_gacha_sc_rsp::Ccpfabancnn", tags = "3, 12")] pub ccpfabancnn: ::core::option::Option, } /// Nested message and enum types in `PlanetFesDoGachaScRsp`. @@ -17927,170 +19359,170 @@ pub mod planet_fes_do_gacha_sc_rsp { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] pub enum Ccpfabancnn { - #[prost(message, tag = "12")] + #[prost(message, tag = "3")] Idgklmcepbo(super::Cgojkboeofo), - #[prost(message, tag = "11")] + #[prost(message, tag = "12")] Jabdcpfpoke(super::Pjcakifoocp), } } /// Obf: AOHIONCOMDE #[derive(proto_derive::CmdID)] -#[cmdid(8244)] +#[cmdid(8234)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct PlanetFesAvatarLevelUpCsReq { #[prost(uint32, tag = "15")] - pub ldnjeacfbje: u32, - #[prost(uint32, tag = "14")] pub avatar_id: u32, + #[prost(uint32, tag = "4")] + pub ldnjeacfbje: u32, } /// Obf: PDPLMFMOLKN #[derive(proto_derive::CmdID)] -#[cmdid(8232)] +#[cmdid(8246)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct PlanetFesAvatarLevelUpScRsp { - #[prost(uint32, tag = "13")] - pub avatar_id: u32, - #[prost(uint32, tag = "11")] - pub ldnjeacfbje: u32, - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "8")] pub retcode: u32, - #[prost(message, optional, tag = "10")] - pub reward: ::core::option::Option, - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "14")] pub bhpfpejbkec: u32, + #[prost(uint32, tag = "7")] + pub ldnjeacfbje: u32, + #[prost(message, optional, tag = "6")] + pub reward: ::core::option::Option, + #[prost(uint32, tag = "3")] + pub avatar_id: u32, } /// Obf: ENBMABHKKOL #[derive(proto_derive::CmdID)] -#[cmdid(8223)] +#[cmdid(8222)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct PlanetFesTakeQuestRewardCsReq { - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "5")] pub jlfabhhnhcm: u32, } /// Obf: EPDMGGGFJFH #[derive(proto_derive::CmdID)] -#[cmdid(8226)] +#[cmdid(8225)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct PlanetFesTakeQuestRewardScRsp { - #[prost(message, optional, tag = "9")] + #[prost(message, optional, tag = "4")] pub dnffkabfoef: ::core::option::Option, #[prost(uint32, tag = "12")] - pub retcode: u32, - #[prost(uint32, tag = "5")] pub jlfabhhnhcm: u32, + #[prost(uint32, tag = "14")] + pub retcode: u32, } /// Obf: MDILHLHLHKI #[derive(proto_derive::CmdID)] -#[cmdid(8211)] +#[cmdid(8248)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct PlanetFesUpgradeSkillLevelCsReq { - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "4")] pub ldnjeacfbje: u32, - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "9")] pub skill_id: u32, } /// Obf: KMDOBGMMNDE #[derive(proto_derive::CmdID)] -#[cmdid(8238)] +#[cmdid(8232)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct PlanetFesUpgradeSkillLevelScRsp { - #[prost(uint32, tag = "11")] - pub skill_level: u32, - #[prost(message, optional, tag = "14")] + #[prost(uint32, tag = "12")] + pub skill_id: u32, + #[prost(message, optional, tag = "3")] pub item_cost_list: ::core::option::Option, #[prost(uint32, tag = "1")] + pub skill_level: u32, + #[prost(uint32, tag = "9")] pub retcode: u32, - #[prost(uint32, tag = "15")] - pub skill_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct PlanetFesReward { - #[prost(message, optional, tag = "3")] - pub coin: ::core::option::Option, - #[prost(map = "uint32, uint32", tag = "12")] + #[prost(map = "uint32, uint32", tag = "6")] pub buff_map: ::std::collections::HashMap, - #[prost(message, repeated, tag = "6")] + #[prost(message, repeated, tag = "9")] pub item_list: ::prost::alloc::vec::Vec, + #[prost(message, optional, tag = "4")] + pub coin: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Knokilfkohi { + #[prost(uint32, tag = "7")] + pub joooeafokhk: u32, + #[prost(uint32, tag = "6")] + pub avatar_id: u32, #[prost(uint32, tag = "12")] pub aopikhkkglm: u32, - #[prost(uint32, tag = "15")] - pub joooeafokhk: u32, - #[prost(uint32, tag = "11")] - pub avatar_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Dlljmiaghdd { - #[prost(message, repeated, tag = "5")] + #[prost(message, repeated, tag = "1")] pub fjhgckenopf: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Efhabdofkde { - #[prost(map = "uint32, uint32", tag = "4")] - pub agmgppaomka: ::std::collections::HashMap, - #[prost(uint32, tag = "12")] - pub epmoohcjnho: u32, - #[prost(uint32, tag = "3")] - pub nngopakjicc: u32, - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "6")] pub bpcfoeghonc: u32, + #[prost(uint32, tag = "7")] + pub epmoohcjnho: u32, + #[prost(uint32, tag = "12")] + pub nngopakjicc: u32, + #[prost(map = "uint32, uint32", tag = "2")] + pub agmgppaomka: ::std::collections::HashMap, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Cgomnlbljgh { - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "2")] pub oohnkojhdho: u32, - #[prost(uint32, tag = "12")] - pub afgkfifjfcl: u32, - #[prost(message, optional, tag = "14")] + #[prost(message, optional, tag = "8")] pub omcbcgchlgn: ::core::option::Option, + #[prost(uint32, tag = "1")] + pub afgkfifjfcl: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Pohniiflcge { - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "3")] pub dgddjnhlggj: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Bkodhaeecjh { - #[prost(uint32, tag = "9")] - pub dgddjnhlggj: u32, #[prost(uint32, tag = "13")] - pub cgdgpgjlknm: u32, - #[prost(uint32, tag = "12")] pub hddijnadfdd: u32, + #[prost(uint32, tag = "11")] + pub cgdgpgjlknm: u32, + #[prost(uint32, tag = "8")] + pub dgddjnhlggj: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Cboemejiffe { - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "1")] pub dgddjnhlggj: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Jofgdaiadbo { - #[prost(bool, tag = "14")] - pub chnliokglbp: bool, - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "11")] pub hoiokbkgfdn: u32, - #[prost(bool, tag = "7")] - pub fomjlfjckdb: bool, - #[prost(bool, tag = "5")] - pub pklcnhicgia: bool, - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "8")] pub bkmamgapegh: u32, - #[prost(int64, tag = "12")] + #[prost(bool, tag = "15")] + pub pklcnhicgia: bool, + #[prost(bool, tag = "5")] + pub chnliokglbp: bool, + #[prost(int64, tag = "9")] pub ljheochhcab: i64, - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "7")] pub dajjjfchooj: u32, - #[prost(oneof = "jofgdaiadbo::Item", tags = "1, 15, 2, 11, 9, 10")] + #[prost(bool, tag = "14")] + pub fomjlfjckdb: bool, + #[prost(oneof = "jofgdaiadbo::Item", tags = "12, 2, 10, 6, 1, 13")] pub item: ::core::option::Option, } /// Nested message and enum types in `JOFGDAIADBO`. @@ -18098,60 +19530,60 @@ pub mod jofgdaiadbo { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] pub enum Item { - #[prost(message, tag = "1")] + #[prost(message, tag = "12")] Pgmblloobma(super::Dlljmiaghdd), - #[prost(message, tag = "15")] - Gildjpkdpnn(super::Efhabdofkde), #[prost(message, tag = "2")] - Bolaiplefpi(super::Cgomnlbljgh), - #[prost(message, tag = "11")] - Genpkdaeihc(super::Pohniiflcge), - #[prost(message, tag = "9")] - Jfnhpiegmmm(super::Bkodhaeecjh), + Gildjpkdpnn(super::Efhabdofkde), #[prost(message, tag = "10")] + Bolaiplefpi(super::Cgomnlbljgh), + #[prost(message, tag = "6")] + Genpkdaeihc(super::Pohniiflcge), + #[prost(message, tag = "1")] + Jfnhpiegmmm(super::Bkodhaeecjh), + #[prost(message, tag = "13")] Jlefnhikfoc(super::Cboemejiffe), } } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Ilmelfjccmd { - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "4")] pub bkmamgapegh: u32, - #[prost(int64, tag = "3")] - pub coifhfpegph: i64, - #[prost(message, repeated, tag = "9")] + #[prost(message, repeated, tag = "15")] pub kmndebcffad: ::prost::alloc::vec::Vec, - #[prost(message, optional, tag = "12")] + #[prost(message, optional, tag = "13")] pub pehingjkgcb: ::core::option::Option, - #[prost(bool, tag = "1")] + #[prost(bool, tag = "5")] pub biinncndpcg: bool, - #[prost(bool, tag = "8")] + #[prost(int64, tag = "11")] + pub coifhfpegph: i64, + #[prost(bool, tag = "1")] pub dkhigcipekf: bool, - #[prost(map = "uint32, uint32", tag = "15")] + #[prost(map = "uint32, uint32", tag = "10")] pub hijddfbedpo: ::std::collections::HashMap, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Flnidkiggbk { - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "3")] pub bkmamgapegh: u32, - #[prost(bool, tag = "14")] - pub dkhigcipekf: bool, - #[prost(uint32, tag = "15")] - pub gjpanocngbm: u32, - #[prost(message, optional, tag = "11")] + #[prost(message, optional, tag = "1")] pub pehingjkgcb: ::core::option::Option, - #[prost(message, repeated, tag = "12")] - pub oebafbigmbc: ::prost::alloc::vec::Vec, - #[prost(message, optional, tag = "4")] + #[prost(bool, tag = "7")] + pub dkhigcipekf: bool, + #[prost(message, optional, tag = "15")] pub kneinmnlcdi: ::core::option::Option, + #[prost(message, repeated, tag = "11")] + pub oebafbigmbc: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "10")] + pub gjpanocngbm: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Leaahdpaieg { - #[prost(bool, tag = "14")] + #[prost(bool, tag = "11")] pub agmambdehlk: bool, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "5")] pub hoiokbkgfdn: u32, } #[derive(proto_derive::CmdID)] @@ -18159,20 +19591,20 @@ pub struct Leaahdpaieg { pub struct Egbkgemfodn { #[prost(message, repeated, tag = "9")] pub dppimjndndf: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "1")] - pub nfioacfhjnk: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "11")] pub hjnoiengedl: u32, - #[prost(uint32, repeated, tag = "3")] + #[prost(uint32, repeated, tag = "14")] pub ccbbdgfffag: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "6")] - pub blmnekfpagh: u32, - #[prost(message, optional, tag = "5")] + #[prost(message, optional, tag = "8")] pub ncikkfenhjf: ::core::option::Option, + #[prost(uint32, tag = "1")] + pub blmnekfpagh: u32, + #[prost(message, repeated, tag = "4")] + pub nfioacfhjnk: ::prost::alloc::vec::Vec, } /// Obf: NPMMPIHFJAJ #[derive(proto_derive::CmdID)] -#[cmdid(8222)] +#[cmdid(8243)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct PlanetFesGetBusinessDayInfoCsReq { #[prost(bool, tag = "14")] @@ -18180,172 +19612,172 @@ pub struct PlanetFesGetBusinessDayInfoCsReq { } /// Obf: KDFDMOIACFK #[derive(proto_derive::CmdID)] -#[cmdid(8216)] +#[cmdid(8230)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct PlanetFesGetBusinessDayInfoScRsp { - #[prost(uint32, tag = "12")] - pub retcode: u32, - #[prost(int64, tag = "15")] - pub bcfbfmmenjk: i64, #[prost(message, optional, tag = "4")] pub aakdahhigif: ::core::option::Option, + #[prost(uint32, tag = "1")] + pub retcode: u32, + #[prost(int64, tag = "12")] + pub bcfbfmmenjk: i64, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Jnipiaadoip { - #[prost(int64, tag = "7")] - pub bcfbfmmenjk: i64, - #[prost(uint32, tag = "6")] - pub mlgfjgchonh: u32, - #[prost(bool, tag = "10")] + #[prost(bool, tag = "9")] pub dkhigcipekf: bool, - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "15")] pub hjnoiengedl: u32, - #[prost(uint32, tag = "5")] - pub blmnekfpagh: u32, - #[prost(bool, tag = "11")] + #[prost(bool, tag = "10")] pub biinncndpcg: bool, + #[prost(uint32, tag = "11")] + pub blmnekfpagh: u32, + #[prost(uint32, tag = "7")] + pub mlgfjgchonh: u32, + #[prost(int64, tag = "1")] + pub bcfbfmmenjk: i64, } /// Obf: HNCIHJEDCAM #[derive(proto_derive::CmdID)] -#[cmdid(8242)] +#[cmdid(8203)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct PlanetFesBusinessDayRefreshEventCsReq { - #[prost(bool, tag = "11")] - pub kblpjcfnhle: bool, - #[prost(uint32, tag = "2")] - pub hoiokbkgfdn: u32, - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "1")] pub bkmamgapegh: u32, + #[prost(uint32, tag = "12")] + pub hoiokbkgfdn: u32, + #[prost(bool, tag = "7")] + pub kblpjcfnhle: bool, } /// Obf: POEDGCNDAHM #[derive(proto_derive::CmdID)] -#[cmdid(8229)] +#[cmdid(8213)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct PlanetFesBusinessDayRefreshEventScRsp { - #[prost(uint32, tag = "1")] - pub retcode: u32, - #[prost(message, optional, tag = "3")] - pub nfjlfnbpppg: ::core::option::Option, -} -/// Obf: KIHFHLJNJIG -#[derive(proto_derive::CmdID)] -#[cmdid(8234)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct PlanetFesDeliverPamCargoCsReq { - #[prost(uint32, tag = "4")] - pub aopikhkkglm: u32, - #[prost(uint32, tag = "12")] - pub avatar_id: u32, -} -/// Obf: FAABKBGLAPB -#[derive(proto_derive::CmdID)] -#[cmdid(8218)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct PlanetFesDeliverPamCargoScRsp { - #[prost(message, optional, tag = "6")] - pub gcbdedabgko: ::core::option::Option, - #[prost(uint32, tag = "13")] - pub avatar_id: u32, - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "9")] pub retcode: u32, #[prost(message, optional, tag = "1")] pub nfjlfnbpppg: ::core::option::Option, } +/// Obf: KIHFHLJNJIG +#[derive(proto_derive::CmdID)] +#[cmdid(8240)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct PlanetFesDeliverPamCargoCsReq { + #[prost(uint32, tag = "8")] + pub avatar_id: u32, + #[prost(uint32, tag = "4")] + pub aopikhkkglm: u32, +} +/// Obf: FAABKBGLAPB +#[derive(proto_derive::CmdID)] +#[cmdid(8224)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct PlanetFesDeliverPamCargoScRsp { + #[prost(uint32, tag = "9")] + pub avatar_id: u32, + #[prost(uint32, tag = "11")] + pub retcode: u32, + #[prost(message, optional, tag = "2")] + pub nfjlfnbpppg: ::core::option::Option, + #[prost(message, optional, tag = "14")] + pub gcbdedabgko: ::core::option::Option, +} /// Obf: PPAJMNJLOBK #[derive(proto_derive::CmdID)] -#[cmdid(8201)] +#[cmdid(8214)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct PlanetFesChooseAvatarEventOptionCsReq { - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "10")] pub nfcaambmmmb: u32, } /// Obf: LBHGOPHMBFD #[derive(proto_derive::CmdID)] -#[cmdid(8205)] +#[cmdid(8201)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct PlanetFesChooseAvatarEventOptionScRsp { - #[prost(message, optional, tag = "15")] - pub nfjlfnbpppg: ::core::option::Option, - #[prost(uint32, tag = "5")] - pub hakkgodicfi: u32, - #[prost(uint32, tag = "12")] - pub epmoohcjnho: u32, #[prost(uint32, tag = "6")] - pub retcode: u32, - #[prost(uint32, tag = "11")] pub ojkjpkhdepe: u32, - #[prost(message, optional, tag = "13")] + #[prost(message, optional, tag = "2")] pub reward: ::core::option::Option, + #[prost(uint32, tag = "5")] + pub epmoohcjnho: u32, + #[prost(message, optional, tag = "13")] + pub nfjlfnbpppg: ::core::option::Option, + #[prost(uint32, tag = "12")] + pub hakkgodicfi: u32, + #[prost(uint32, tag = "4")] + pub retcode: u32, } /// Obf: LCIKAFGBDLH #[derive(proto_derive::CmdID)] -#[cmdid(8235)] +#[cmdid(8220)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct PlanetFesDealAvatarEventOptionItemCsReq { - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "5")] pub nngopakjicc: u32, - #[prost(bool, tag = "6")] + #[prost(bool, tag = "12")] pub lecdhddceia: bool, } /// Obf: POHFEIJMNHF #[derive(proto_derive::CmdID)] -#[cmdid(8239)] +#[cmdid(8216)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct PlanetFesDealAvatarEventOptionItemScRsp { - #[prost(bool, tag = "4")] - pub lecdhddceia: bool, - #[prost(message, optional, tag = "7")] - pub nfjlfnbpppg: ::core::option::Option, - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "7")] pub hakkgodicfi: u32, - #[prost(message, optional, tag = "2")] - pub reward: ::core::option::Option, - #[prost(uint32, tag = "3")] - pub ojkjpkhdepe: u32, - #[prost(uint32, tag = "12")] + #[prost(bool, tag = "9")] + pub lecdhddceia: bool, + #[prost(uint32, tag = "15")] pub retcode: u32, + #[prost(uint32, tag = "13")] + pub ojkjpkhdepe: u32, + #[prost(message, optional, tag = "14")] + pub nfjlfnbpppg: ::core::option::Option, + #[prost(message, optional, tag = "4")] + pub reward: ::core::option::Option, } /// Obf: HFAAHBMGHLK #[derive(proto_derive::CmdID)] -#[cmdid(8213)] +#[cmdid(8231)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct PlanetFesTakeRegionPhaseRewardCsReq { - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "5")] pub ndbojandnjn: u32, } /// Obf: FECEMMEEGAB #[derive(proto_derive::CmdID)] -#[cmdid(8206)] +#[cmdid(8204)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct PlanetFesTakeRegionPhaseRewardScRsp { - #[prost(uint32, tag = "13")] - pub ndbojandnjn: u32, - #[prost(message, optional, tag = "6")] + #[prost(message, optional, tag = "15")] pub reward_list: ::core::option::Option, - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "7")] + pub ndbojandnjn: u32, + #[prost(uint32, tag = "3")] pub retcode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Cnlmdffefjm { - #[prost(uint32, tag = "13")] - pub gpaghiajicd: u32, - #[prost(uint32, tag = "8")] - pub alhanjklboo: u32, - #[prost(uint32, repeated, tag = "4")] - pub hfkggoepple: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "6")] + #[prost(uint32, repeated, tag = "2")] pub cdlbehlammm: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "13")] + pub hfkggoepple: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "4")] + pub alhanjklboo: u32, + #[prost(uint32, tag = "3")] + pub gpaghiajicd: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Hldhemlpjng { - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "11")] pub acdopcbmpnl: u32, - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "4")] pub oohnkojhdho: u32, - #[prost(oneof = "hldhemlpjng::Heaiaedbpkl", tags = "3")] + #[prost(oneof = "hldhemlpjng::Heaiaedbpkl", tags = "14")] pub heaiaedbpkl: ::core::option::Option, } /// Nested message and enum types in `HLDHEMLPJNG`. @@ -18353,38 +19785,38 @@ pub mod hldhemlpjng { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] pub enum Heaiaedbpkl { - #[prost(message, tag = "3")] + #[prost(message, tag = "14")] Ejcolgnjgdc(super::Cnlmdffefjm), } } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Fmnhlknjnah { - #[prost(uint32, repeated, tag = "10")] + #[prost(uint32, repeated, tag = "2")] pub pkhlgkkippa: ::prost::alloc::vec::Vec, } /// Obf: FEOHKDLJNDN #[derive(proto_derive::CmdID)] -#[cmdid(8221)] +#[cmdid(8235)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct PlanetFesStartMiniGameCsReq { - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "14")] pub oohnkojhdho: u32, - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "10")] pub acdopcbmpnl: u32, } /// Obf: PIHDBLHKMBP #[derive(proto_derive::CmdID)] -#[cmdid(8249)] +#[cmdid(8247)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct PlanetFesStartMiniGameScRsp { - #[prost(message, optional, tag = "7")] + #[prost(message, optional, tag = "5")] pub reward: ::core::option::Option, - #[prost(message, optional, tag = "9")] - pub omcbcgchlgn: ::core::option::Option, - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "7")] pub retcode: u32, - #[prost(oneof = "planet_fes_start_mini_game_sc_rsp::Gocoklaemoh", tags = "12")] + #[prost(message, optional, tag = "12")] + pub omcbcgchlgn: ::core::option::Option, + #[prost(oneof = "planet_fes_start_mini_game_sc_rsp::Gocoklaemoh", tags = "14")] pub gocoklaemoh: ::core::option::Option< planet_fes_start_mini_game_sc_rsp::Gocoklaemoh, >, @@ -18394,263 +19826,263 @@ pub mod planet_fes_start_mini_game_sc_rsp { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] pub enum Gocoklaemoh { - #[prost(message, tag = "12")] + #[prost(message, tag = "14")] Jfmahmofjpi(super::Fmnhlknjnah), } } /// Obf: NLBPMNKBMEH #[derive(proto_derive::CmdID)] -#[cmdid(8214)] +#[cmdid(8209)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct PlanetFesUseItemCsReq { - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "15")] pub diookfoccmo: u32, - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "4")] pub item_id: u32, } /// Obf: ICJALLAKNNN #[derive(proto_derive::CmdID)] -#[cmdid(8208)] +#[cmdid(8250)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct PlanetFesUseItemScRsp { - #[prost(message, optional, tag = "9")] - pub reward: ::core::option::Option, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "9")] pub retcode: u32, + #[prost(message, optional, tag = "11")] + pub reward: ::core::option::Option, } /// Obf: LHBDNBMDMLD #[derive(proto_derive::CmdID)] -#[cmdid(8228)] +#[cmdid(8229)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct PlanetFesGameBingoFlipCsReq { - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "8")] pub hcfpofmdgkn: u32, } /// Obf: AJKBNNEJAKF #[derive(proto_derive::CmdID)] -#[cmdid(8225)] +#[cmdid(8223)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct PlanetFesGameBingoFlipScRsp { - #[prost(bool, tag = "2")] - pub nfeadmfnflk: bool, - #[prost(message, optional, tag = "1")] + #[prost(message, optional, tag = "9")] pub reward: ::core::option::Option, - #[prost(uint32, tag = "9")] - pub retcode: u32, #[prost(uint32, tag = "7")] pub hcfpofmdgkn: u32, + #[prost(uint32, tag = "6")] + pub retcode: u32, + #[prost(bool, tag = "3")] + pub nfeadmfnflk: bool, } /// Obf: GHHEPGMFLKN #[derive(proto_derive::CmdID)] -#[cmdid(8210)] +#[cmdid(8221)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct PlanetFesBonusEventInteractCsReq { - #[prost(uint32, tag = "2")] - pub apmodagohna: u32, #[prost(uint32, tag = "3")] pub hoiokbkgfdn: u32, + #[prost(uint32, tag = "15")] + pub apmodagohna: u32, } /// Obf: HNNHDFFJHEI #[derive(proto_derive::CmdID)] -#[cmdid(8219)] +#[cmdid(8242)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct PlanetFesBonusEventInteractScRsp { - #[prost(message, optional, tag = "12")] - pub nfjlfnbpppg: ::core::option::Option, - #[prost(uint32, tag = "6")] - pub hoiokbkgfdn: u32, - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "4")] pub retcode: u32, - #[prost(message, optional, tag = "3")] + #[prost(uint32, tag = "3")] + pub hoiokbkgfdn: u32, + #[prost(message, optional, tag = "15")] + pub nfjlfnbpppg: ::core::option::Option, + #[prost(message, optional, tag = "8")] pub reward: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Eikaiidaepp { - #[prost(uint32, tag = "1")] - pub bkmamgapegh: u32, - #[prost(uint32, tag = "15")] - pub lnjiihhpmed: u32, - #[prost(uint32, tag = "8")] - pub uid: u32, - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "12")] pub hdcbejdenla: u32, - #[prost(uint32, tag = "5")] - pub pjolemhlgnl: u32, - #[prost(message, optional, tag = "3")] - pub hhjocgomeco: ::core::option::Option, - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "10")] + pub bkmamgapegh: u32, + #[prost(uint32, tag = "11")] + pub uid: u32, + #[prost(uint32, tag = "2")] pub dgjdmocbbii: u32, + #[prost(uint32, tag = "4")] + pub pjolemhlgnl: u32, + #[prost(message, optional, tag = "6")] + pub hhjocgomeco: ::core::option::Option, + #[prost(uint32, tag = "3")] + pub lnjiihhpmed: u32, } /// Obf: DNCDENAAEBC #[derive(proto_derive::CmdID)] -#[cmdid(8203)] +#[cmdid(8205)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct PlanetFesGetFriendRankingInfoListCsReq {} /// Obf: OJMAAPPBENG #[derive(proto_derive::CmdID)] -#[cmdid(8247)] +#[cmdid(8202)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct PlanetFesGetFriendRankingInfoListScRsp { - #[prost(uint32, tag = "4")] - pub retcode: u32, - #[prost(message, optional, tag = "5")] + #[prost(message, optional, tag = "7")] pub icmgegefdle: ::core::option::Option, + #[prost(uint32, tag = "8")] + pub retcode: u32, } /// Obf: JLOIFLNIBDH #[derive(proto_derive::CmdID)] -#[cmdid(8224)] +#[cmdid(8208)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct PlanetFesFriendRankingInfoChangeScNotify { - #[prost(message, repeated, tag = "5")] + #[prost(message, repeated, tag = "6")] pub cnheklkbmhh: ::prost::alloc::vec::Vec, } /// Obf: GCBAMAELHIC #[derive(proto_derive::CmdID)] -#[cmdid(8212)] +#[cmdid(8238)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct PlanetFesSetCustomKeyValueCsReq { - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "3")] pub key: u32, - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "5")] pub value: u32, } /// Obf: LNKOOOBENDP #[derive(proto_derive::CmdID)] -#[cmdid(8248)] +#[cmdid(8241)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct PlanetFesSetCustomKeyValueScRsp { - #[prost(uint32, tag = "4")] - pub key: u32, + #[prost(uint32, tag = "11")] + pub value: u32, #[prost(uint32, tag = "14")] pub retcode: u32, - #[prost(uint32, tag = "3")] - pub value: u32, + #[prost(uint32, tag = "9")] + pub key: u32, } /// Obf: JFGJEHICCCD #[derive(proto_derive::CmdID)] -#[cmdid(8241)] +#[cmdid(8233)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct PlanetFesUpgradeFesLevelCsReq { - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "7")] pub ldnjeacfbje: u32, } /// Obf: MJDFLDMOONF #[derive(proto_derive::CmdID)] -#[cmdid(8233)] +#[cmdid(8244)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct PlanetFesUpgradeFesLevelScRsp { - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "7")] pub retcode: u32, } /// Obf: JOIMPGHIEFC #[derive(proto_derive::CmdID)] -#[cmdid(8231)] +#[cmdid(8215)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct PlanetFesGetAvatarStatCsReq {} /// Obf: PEODBBNDECK #[derive(proto_derive::CmdID)] -#[cmdid(8230)] +#[cmdid(8207)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct PlanetFesGetAvatarStatScRsp { #[prost(uint32, tag = "13")] pub retcode: u32, - #[prost(message, repeated, tag = "9")] + #[prost(message, repeated, tag = "3")] pub oebafbigmbc: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Deinadpehke { - #[prost(int64, tag = "11")] + #[prost(int64, tag = "9")] pub lffcmnahbdp: i64, - #[prost(uint32, repeated, tag = "7")] + #[prost(uint32, tag = "12")] + pub ofgfhcldobg: u32, + #[prost(uint32, repeated, tag = "11")] pub jpacobgbdbg: ::prost::alloc::vec::Vec, #[prost(uint32, tag = "14")] pub pnakhnbdjae: u32, - #[prost(uint32, tag = "12")] - pub ofgfhcldobg: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Bkbilpdkoil { - #[prost(int64, tag = "12")] - pub time: i64, - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "7")] pub lhjpkmdmnmp: u32, - #[prost(bool, tag = "7")] - pub cabehkoflpg: bool, - #[prost(uint32, repeated, tag = "5")] + #[prost(uint32, repeated, tag = "13")] pub jpacobgbdbg: ::prost::alloc::vec::Vec, - #[prost(uint64, tag = "2")] + #[prost(int64, tag = "6")] + pub time: i64, + #[prost(uint64, tag = "1")] pub hpjjdcjhhoa: u64, + #[prost(bool, tag = "9")] + pub cabehkoflpg: bool, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Gjipjngnfej { - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "9")] pub source: u32, + #[prost(uint32, tag = "13")] + pub pnakhnbdjae: u32, #[prost(uint32, repeated, tag = "6")] pub jpacobgbdbg: ::prost::alloc::vec::Vec, - #[prost(int64, tag = "7")] - pub time: i64, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "10")] pub ofgfhcldobg: u32, - #[prost(uint32, tag = "8")] - pub pnakhnbdjae: u32, + #[prost(int64, tag = "11")] + pub time: i64, } /// Obf: IEEHPECGECL #[derive(proto_derive::CmdID)] -#[cmdid(8294)] +#[cmdid(8339)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct PlanetFesGetExtraCardPieceInfoCsReq {} #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Ffapkcnapid { - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "10")] pub hlkpnecambl: u32, - #[prost(message, repeated, tag = "2")] - pub gedglncpggn: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "6")] - pub obboccnflol: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "15")] - pub uid: u32, - #[prost(uint32, repeated, tag = "3")] - pub iemnjhlfgkd: ::prost::alloc::vec::Vec, - #[prost(int64, tag = "11")] + #[prost(int64, tag = "14")] pub aiieklilmjc: i64, - #[prost(uint32, tag = "1")] - pub aoaefeibbmf: u32, - #[prost(message, repeated, tag = "9")] + #[prost(message, repeated, tag = "7")] + pub gedglncpggn: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "13")] + pub iemnjhlfgkd: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "4")] pub pbfhdnbgmbp: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "6")] + pub uid: u32, + #[prost(uint32, tag = "11")] + pub aoaefeibbmf: u32, + #[prost(message, repeated, tag = "2")] + pub obboccnflol: ::prost::alloc::vec::Vec, } /// Obf: MAOJNGJBIIG #[derive(proto_derive::CmdID)] -#[cmdid(8336)] +#[cmdid(8317)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct PlanetFesGetExtraCardPieceInfoScRsp { - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "1")] pub retcode: u32, #[prost(message, optional, tag = "4")] pub baamhdnnkia: ::core::option::Option, } /// Obf: JKAIFEBMLLL #[derive(proto_derive::CmdID)] -#[cmdid(8292)] +#[cmdid(8308)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct PlanetFesGetFriendCardPieceCsReq {} /// Obf: PJNPHHIHHJL #[derive(proto_derive::CmdID)] -#[cmdid(8327)] +#[cmdid(8326)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct PlanetFesGetFriendCardPieceScRsp { + #[prost(uint32, tag = "13")] + pub retcode: u32, #[prost(message, repeated, tag = "3")] pub cgdandnibgj: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "8")] - pub retcode: u32, } /// Obf: KJHEBGGHEOJ #[derive(proto_derive::CmdID)] -#[cmdid(8326)] +#[cmdid(8301)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct PlanetFesChangeCardPieceApplyPermissionCsReq { #[prost(uint32, tag = "12")] @@ -18658,310 +20090,310 @@ pub struct PlanetFesChangeCardPieceApplyPermissionCsReq { } /// Obf: DMBJBMNGJBD #[derive(proto_derive::CmdID)] -#[cmdid(8307)] +#[cmdid(8327)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct PlanetFesChangeCardPieceApplyPermissionScRsp { - #[prost(uint32, tag = "2")] - pub retcode: u32, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "8")] pub hlkpnecambl: u32, + #[prost(uint32, tag = "15")] + pub retcode: u32, } /// Obf: GBIFOPHFAPB #[derive(proto_derive::CmdID)] -#[cmdid(8317)] +#[cmdid(8307)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct PlanetFesApplyCardPieceCsReq { - #[prost(uint32, repeated, tag = "12")] - pub jpacobgbdbg: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "8")] pub cbegnbkmhcd: u32, + #[prost(uint32, repeated, tag = "4")] + pub jpacobgbdbg: ::prost::alloc::vec::Vec, } /// Obf: LJDDBEDBMDI #[derive(proto_derive::CmdID)] -#[cmdid(8305)] +#[cmdid(8329)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct PlanetFesApplyCardPieceScRsp { - #[prost(int64, tag = "9")] + #[prost(int64, tag = "15")] pub epcpdocdocb: i64, - #[prost(uint32, repeated, tag = "13")] - pub jpacobgbdbg: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "1")] - pub cbegnbkmhcd: u32, - #[prost(bool, tag = "11")] - pub mcffpieeknn: bool, - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "5")] pub pnakhnbdjae: u32, - #[prost(uint32, tag = "2")] + #[prost(bool, tag = "4")] + pub mcffpieeknn: bool, + #[prost(uint32, tag = "1")] pub retcode: u32, + #[prost(uint32, tag = "10")] + pub cbegnbkmhcd: u32, + #[prost(uint32, repeated, tag = "6")] + pub jpacobgbdbg: ::prost::alloc::vec::Vec, } /// Obf: MPDFLMMAPDE #[derive(proto_derive::CmdID)] -#[cmdid(8333)] +#[cmdid(8302)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct PlanetFesHandleCardPieceApplyCsReq { - #[prost(uint32, repeated, tag = "15")] - pub dlhbcokcidp: ::prost::alloc::vec::Vec, - #[prost(bool, tag = "7")] - pub mdapcfheljl: bool, - #[prost(uint32, tag = "10")] - pub ofgfhcldobg: u32, #[prost(uint32, tag = "6")] + pub ofgfhcldobg: u32, + #[prost(bool, tag = "14")] + pub mdapcfheljl: bool, + #[prost(uint32, repeated, tag = "13")] + pub dlhbcokcidp: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "2")] pub pnakhnbdjae: u32, } /// Obf: MHKABAJDBHP #[derive(proto_derive::CmdID)] -#[cmdid(8299)] +#[cmdid(8300)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct PlanetFesHandleCardPieceApplyScRsp { - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "15")] pub pnakhnbdjae: u32, - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "9")] pub retcode: u32, - #[prost(bool, tag = "11")] + #[prost(bool, tag = "4")] pub mdapcfheljl: bool, - #[prost(int64, tag = "7")] - pub ppiolclpmpl: i64, - #[prost(uint32, repeated, tag = "2")] + #[prost(uint32, repeated, tag = "8")] pub dlhbcokcidp: ::prost::alloc::vec::Vec, + #[prost(int64, tag = "3")] + pub ppiolclpmpl: i64, } /// Obf: JGHDMOIMEBO #[derive(proto_derive::CmdID)] #[cmdid(8335)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct PlanetFesGetOfferedCardPieceCsReq { - #[prost(bool, tag = "7")] + #[prost(bool, tag = "12")] pub cabehkoflpg: bool, - #[prost(uint64, tag = "9")] + #[prost(uint64, tag = "8")] pub hpjjdcjhhoa: u64, } /// Obf: NHHKGBJLPEM #[derive(proto_derive::CmdID)] -#[cmdid(8297)] +#[cmdid(8296)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct PlanetFesGetOfferedCardPieceScRsp { - #[prost(int64, tag = "2")] - pub dljckcmadhj: i64, - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "5")] pub retcode: u32, - #[prost(message, repeated, tag = "10")] - pub onjgmghcpef: ::prost::alloc::vec::Vec, - #[prost(bool, tag = "12")] + #[prost(bool, tag = "11")] pub cabehkoflpg: bool, + #[prost(message, repeated, tag = "14")] + pub onjgmghcpef: ::prost::alloc::vec::Vec, #[prost(uint64, tag = "6")] pub hpjjdcjhhoa: u64, - #[prost(message, repeated, tag = "13")] + #[prost(int64, tag = "10")] + pub dljckcmadhj: i64, + #[prost(message, repeated, tag = "15")] pub pbfhdnbgmbp: ::prost::alloc::vec::Vec, } /// Obf: EPDCLDLCFKG #[derive(proto_derive::CmdID)] -#[cmdid(8340)] +#[cmdid(8318)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct PlanetFesGiveCardPieceCsReq { - #[prost(uint32, repeated, tag = "7")] - pub dlhbcokcidp: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "13")] pub cbegnbkmhcd: u32, + #[prost(uint32, repeated, tag = "3")] + pub dlhbcokcidp: ::prost::alloc::vec::Vec, } /// Obf: OPGHEBECJHH #[derive(proto_derive::CmdID)] -#[cmdid(8330)] +#[cmdid(8309)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct PlanetFesGiveCardPieceScRsp { - #[prost(uint32, repeated, tag = "3")] - pub dlhbcokcidp: ::prost::alloc::vec::Vec, + #[prost(uint64, tag = "6")] + pub hpjjdcjhhoa: u64, #[prost(uint32, tag = "15")] pub retcode: u32, - #[prost(uint64, tag = "7")] - pub hpjjdcjhhoa: u64, - #[prost(int64, tag = "10")] + #[prost(int64, tag = "12")] pub ppiolclpmpl: i64, - #[prost(uint32, tag = "11")] + #[prost(uint32, repeated, tag = "11")] + pub dlhbcokcidp: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "2")] pub cbegnbkmhcd: u32, } /// Obf: PHGOGJANIDN #[derive(proto_derive::CmdID)] -#[cmdid(8310)] +#[cmdid(8316)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct PlanetFesLargeBonusInteractCsReq { - #[prost(uint32, tag = "5")] - pub mopffbmabcd: u32, - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "15")] pub ihcilnhklmc: u32, - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "7")] + pub mopffbmabcd: u32, + #[prost(uint32, tag = "14")] pub ooiookgmehp: u32, } /// Obf: IKPMCPHNOIA #[derive(proto_derive::CmdID)] -#[cmdid(8334)] +#[cmdid(8324)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct PlanetFesLargeBonusInteractScRsp { - #[prost(message, optional, tag = "11")] + #[prost(message, optional, tag = "10")] pub nfjlfnbpppg: ::core::option::Option, - #[prost(uint32, tag = "2")] - pub retcode: u32, - #[prost(message, optional, tag = "8")] - pub gmidjmmmjkp: ::core::option::Option, - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "14")] pub ihcilnhklmc: u32, + #[prost(uint32, tag = "1")] + pub retcode: u32, + #[prost(message, optional, tag = "12")] + pub gmidjmmmjkp: ::core::option::Option, } /// Obf: GPJACEJJMEB #[derive(proto_derive::CmdID)] -#[cmdid(8322)] +#[cmdid(8336)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct PlanetFesEnterNextBusinessDayCsReq {} /// Obf: FFKKBBACICL #[derive(proto_derive::CmdID)] -#[cmdid(8313)] +#[cmdid(8312)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct PlanetFesEnterNextBusinessDayScRsp { - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "11")] pub retcode: u32, } /// Obf: PGAPOOHJGMB #[derive(proto_derive::CmdID)] -#[cmdid(95)] +#[cmdid(20)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct PlayerLoginCsReq { #[prost(string, tag = "8")] - pub cost_time: ::prost::alloc::string::String, - #[prost(string, tag = "15")] - pub signature: ::prost::alloc::string::String, - #[prost(uint32, tag = "539")] - pub haehhcpoapp: u32, - #[prost(bool, tag = "2032")] - pub oeencfmcahd: bool, - #[prost(string, tag = "3")] - pub kibbnbngijd: ::prost::alloc::string::String, - #[prost(message, optional, tag = "1414")] - pub miohkaoidnk: ::core::option::Option, - #[prost(string, tag = "4")] pub bnigpdooili: ::prost::alloc::string::String, - #[prost(string, tag = "9")] - pub hjdmjpebppm: ::prost::alloc::string::String, - #[prost(string, tag = "6")] - pub bnboaliapae: ::prost::alloc::string::String, - #[prost(string, tag = "293")] + #[prost(string, tag = "713")] pub ignfblgjioj: ::prost::alloc::string::String, - #[prost(string, tag = "14")] - pub lagbgldlgcb: ::prost::alloc::string::String, - #[prost(string, tag = "12")] - pub dmpmhccfbkg: ::prost::alloc::string::String, - #[prost(string, tag = "707")] - pub gmalcpnohbf: ::prost::alloc::string::String, - #[prost(string, tag = "488")] - pub akcejfcfban: ::prost::alloc::string::String, - #[prost(string, tag = "5")] - pub ocdacjnnjnj: ::prost::alloc::string::String, - #[prost(uint32, tag = "195")] - pub nhbhbalhjml: u32, - #[prost(message, optional, tag = "583")] - pub pklicgmeimb: ::core::option::Option, - #[prost(uint32, tag = "10")] - pub jmkhdhaioim: u32, - #[prost(uint64, tag = "13")] + #[prost(uint64, tag = "5")] pub login_random: u64, - #[prost(enumeration = "LanguageType", tag = "7")] - pub fadpdibknbi: i32, - #[prost(string, tag = "1992")] - pub bpckjkdencb: ::prost::alloc::string::String, - #[prost(string, tag = "1951")] - pub kfdjeieobbn: ::prost::alloc::string::String, - #[prost(enumeration = "PlatformType", tag = "2")] - pub platform_type: i32, - #[prost(uint32, tag = "1726")] + #[prost(uint32, tag = "160")] pub mlnabepindb: u32, - #[prost(uint32, tag = "11")] - pub client_res_version: u32, - #[prost(string, tag = "1")] + #[prost(string, tag = "1338")] + pub gmalcpnohbf: ::prost::alloc::string::String, + #[prost(string, tag = "13")] + pub signature: ::prost::alloc::string::String, + #[prost(uint32, tag = "4")] + pub jmkhdhaioim: u32, + #[prost(string, tag = "11")] + pub dmpmhccfbkg: ::prost::alloc::string::String, + #[prost(string, tag = "7")] + pub lagbgldlgcb: ::prost::alloc::string::String, + #[prost(string, tag = "1894")] + pub akcejfcfban: ::prost::alloc::string::String, + #[prost(uint32, tag = "1102")] + pub haehhcpoapp: u32, + #[prost(string, tag = "2")] pub oehjlodahfn: ::prost::alloc::string::String, - #[prost(bool, tag = "786")] - pub gehapnihcdo: bool, - #[prost(string, tag = "1510")] + #[prost(enumeration = "LanguageType", tag = "14")] + pub fadpdibknbi: i32, + #[prost(message, optional, tag = "1522")] + pub pklicgmeimb: ::core::option::Option, + #[prost(string, tag = "3")] + pub cost_time: ::prost::alloc::string::String, + #[prost(string, tag = "6")] + pub kibbnbngijd: ::prost::alloc::string::String, + #[prost(bool, tag = "1062")] + pub oeencfmcahd: bool, + #[prost(string, tag = "10")] + pub hjdmjpebppm: ::prost::alloc::string::String, + #[prost(string, tag = "959")] + pub kfdjeieobbn: ::prost::alloc::string::String, + #[prost(message, optional, tag = "280")] + pub miohkaoidnk: ::core::option::Option, + #[prost(uint32, tag = "908")] + pub nhbhbalhjml: u32, + #[prost(string, tag = "899")] pub ohpckcnaeik: ::prost::alloc::string::String, + #[prost(bool, tag = "578")] + pub gehapnihcdo: bool, + #[prost(enumeration = "PlatformType", tag = "9")] + pub platform_type: i32, + #[prost(string, tag = "1897")] + pub bpckjkdencb: ::prost::alloc::string::String, + #[prost(string, tag = "1")] + pub ocdacjnnjnj: ::prost::alloc::string::String, + #[prost(string, tag = "15")] + pub bnboaliapae: ::prost::alloc::string::String, + #[prost(uint32, tag = "12")] + pub client_res_version: u32, } /// Obf: BKFCFKAKBAL #[derive(proto_derive::CmdID)] -#[cmdid(32)] +#[cmdid(91)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct PlayerLoginScRsp { - #[prost(bool, tag = "4")] - pub jlpkeobincp: bool, - #[prost(string, tag = "12")] - pub pdikpeifann: ::prost::alloc::string::String, - #[prost(uint64, tag = "3")] + #[prost(uint64, tag = "8")] pub login_random: u64, - #[prost(bool, tag = "11")] - pub igkbeamlnbj: bool, - #[prost(string, tag = "8")] - pub nhmhabjkhog: ::prost::alloc::string::String, - #[prost(int32, tag = "5")] - pub cur_timezone: i32, - #[prost(uint32, tag = "6")] - pub retcode: u32, - #[prost(uint64, tag = "13")] + #[prost(uint64, tag = "2")] pub server_timestamp_ms: u64, - #[prost(uint32, tag = "10")] + #[prost(int32, tag = "12")] + pub cur_timezone: i32, + #[prost(uint32, tag = "15")] pub stamina: u32, - #[prost(message, optional, tag = "1")] + #[prost(uint32, tag = "3")] + pub retcode: u32, + #[prost(bool, tag = "7")] + pub igkbeamlnbj: bool, + #[prost(string, tag = "9")] + pub nhmhabjkhog: ::prost::alloc::string::String, + #[prost(message, optional, tag = "4")] pub basic_info: ::core::option::Option, + #[prost(string, tag = "11")] + pub pdikpeifann: ::prost::alloc::string::String, + #[prost(bool, tag = "13")] + pub jlpkeobincp: bool, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Lmipmhhpfhn {} /// Obf: LHNADANEIOG #[derive(proto_derive::CmdID)] -#[cmdid(76)] +#[cmdid(27)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct PlayerGetTokenCsReq { - #[prost(string, tag = "14")] - pub token: ::prost::alloc::string::String, - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "3")] pub platform_type: u32, - #[prost(uint32, tag = "2")] - pub icmfpnpijjf: u32, - #[prost(uint32, tag = "8")] - pub haehhcpoapp: u32, - #[prost(string, tag = "15")] - pub mempbkcjjfj: ::prost::alloc::string::String, - #[prost(string, tag = "9")] + #[prost(string, tag = "5")] pub account_uid: ::prost::alloc::string::String, - #[prost(uint32, tag = "11")] - pub fgojlpaejec: u32, - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "15")] + pub haehhcpoapp: u32, + #[prost(uint32, tag = "1")] pub uid: u32, + #[prost(string, tag = "14")] + pub mempbkcjjfj: ::prost::alloc::string::String, + #[prost(uint32, tag = "4")] + pub fgojlpaejec: u32, + #[prost(string, tag = "6")] + pub token: ::prost::alloc::string::String, + #[prost(uint32, tag = "8")] + pub icmfpnpijjf: u32, } /// Obf: HEDHHDPAOJE #[derive(proto_derive::CmdID)] -#[cmdid(48)] +#[cmdid(21)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct PlayerGetTokenScRsp { - #[prost(message, optional, tag = "12")] + #[prost(message, optional, tag = "1")] pub black_info: ::core::option::Option, - #[prost(uint32, tag = "4")] - pub uid: u32, - #[prost(uint64, tag = "7")] + #[prost(uint64, tag = "14")] pub secret_key_seed: u64, - #[prost(string, tag = "6")] + #[prost(string, tag = "5")] pub msg: ::prost::alloc::string::String, - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "9")] pub retcode: u32, + #[prost(uint32, tag = "2")] + pub uid: u32, } /// Obf: CCANMIHELML #[derive(proto_derive::CmdID)] -#[cmdid(52)] +#[cmdid(59)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GmTalkScNotify { - #[prost(string, tag = "4")] + #[prost(string, tag = "1")] pub msg: ::prost::alloc::string::String, } /// Obf: PLPKJLGANCB #[derive(proto_derive::CmdID)] -#[cmdid(22)] +#[cmdid(54)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct PlayerKickOutScNotify { - #[prost(enumeration = "player_kick_out_sc_notify::Hilaijmdkej", tag = "6")] + #[prost(enumeration = "player_kick_out_sc_notify::Hilaijmdkej", tag = "7")] pub mglldoifgnd: i32, - #[prost(message, optional, tag = "1")] + #[prost(message, optional, tag = "13")] pub black_info: ::core::option::Option, } /// Nested message and enum types in `PlayerKickOutScNotify`. @@ -19018,646 +20450,609 @@ pub mod player_kick_out_sc_notify { } /// Obf: FCLNPHHEBIK #[derive(proto_derive::CmdID)] -#[cmdid(56)] +#[cmdid(77)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GmTalkCsReq { - #[prost(string, tag = "9")] + #[prost(string, tag = "4")] pub msg: ::prost::alloc::string::String, } /// Obf: IDAFMHOMNFO #[derive(proto_derive::CmdID)] -#[cmdid(72)] +#[cmdid(80)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GmTalkScRsp { - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "3")] pub retcode: u32, - #[prost(string, tag = "1")] + #[prost(string, tag = "5")] pub bjdojlkehna: ::prost::alloc::string::String, } /// Obf: NLDIOAKBAEF #[derive(proto_derive::CmdID)] -#[cmdid(86)] +#[cmdid(50)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetBasicInfoCsReq {} #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Ogfiodpilel { - #[prost(uint32, tag = "5")] - pub cacekelnmin: u32, - #[prost(bool, tag = "12")] + #[prost(bool, tag = "14")] pub dmklnjboabo: bool, - #[prost(bool, tag = "2")] + #[prost(bool, tag = "4")] pub akheilmndhj: bool, + #[prost(uint32, tag = "2")] + pub cacekelnmin: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct PlayerSettingInfo { - #[prost(bool, tag = "3")] - pub mmmnjchemfn: bool, - #[prost(bool, tag = "10")] - pub kapdimgjlnf: bool, #[prost(bool, tag = "15")] - pub ilfalcdlaol: bool, - #[prost(bool, tag = "2")] - pub gmjanojmkce: bool, - #[prost(bool, tag = "9")] - pub pbkbglhhkpe: bool, - #[prost(message, optional, tag = "5")] - pub ghkcmdnkopn: ::core::option::Option, - #[prost(bool, tag = "8")] - pub nkekibnjmpa: bool, + pub mmmnjchemfn: bool, #[prost(bool, tag = "6")] - pub kjncckhjfhe: bool, - #[prost(bool, tag = "14")] - pub aicnfaobcpi: bool, - #[prost(bool, tag = "11")] pub aponeidmphl: bool, - #[prost(bool, tag = "13")] + #[prost(bool, tag = "8")] + pub ilfalcdlaol: bool, + #[prost(message, optional, tag = "14")] + pub ghkcmdnkopn: ::core::option::Option, + #[prost(bool, tag = "4")] pub njfmiljofok: bool, + #[prost(bool, tag = "9")] + pub nkekibnjmpa: bool, + #[prost(bool, tag = "2")] + pub kapdimgjlnf: bool, + #[prost(bool, tag = "3")] + pub aicnfaobcpi: bool, + #[prost(bool, tag = "12")] + pub pbkbglhhkpe: bool, + #[prost(bool, tag = "10")] + pub kjncckhjfhe: bool, + #[prost(bool, tag = "1")] + pub gmjanojmkce: bool, } /// Obf: GetBasicInfoScRsp #[derive(proto_derive::CmdID)] -#[cmdid(100)] +#[cmdid(95)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetBasicInfoScRsp { + #[prost(message, optional, tag = "12")] + pub player_setting_info: ::core::option::Option, + #[prost(int64, tag = "5")] + pub last_set_nickname_time: i64, + #[prost(int64, tag = "10")] + pub next_recover_time: i64, + #[prost(uint32, tag = "15")] + pub week_cocoon_finished_count: u32, #[prost(uint32, tag = "8")] pub gender: u32, - #[prost(uint32, tag = "2")] - pub gameplay_birthday: u32, + #[prost(bool, tag = "4")] + pub is_gender_set: bool, #[prost(uint32, tag = "13")] pub exchange_times: u32, - #[prost(uint32, tag = "11")] - pub cur_day: u32, - #[prost(int64, tag = "5")] - pub next_recover_time: i64, - #[prost(message, optional, tag = "15")] - pub player_setting_info: ::core::option::Option, - #[prost(uint32, tag = "7")] - pub week_cocoon_finished_count: u32, - #[prost(int64, tag = "12")] - pub last_set_nickname_time: i64, #[prost(uint32, tag = "3")] pub retcode: u32, - #[prost(bool, tag = "6")] - pub is_gender_set: bool, + #[prost(uint32, tag = "2")] + pub cur_day: u32, + #[prost(uint32, tag = "1")] + pub gameplay_birthday: u32, } /// Obf: CBLCHDHMBGO #[derive(proto_derive::CmdID)] -#[cmdid(46)] +#[cmdid(74)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ExchangeStaminaCsReq {} /// Obf: ExchangeStaminaScRsp #[derive(proto_derive::CmdID)] -#[cmdid(83)] +#[cmdid(73)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ExchangeStaminaScRsp { - #[prost(message, repeated, tag = "12")] - pub item_cost_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "14")] - pub stamina_add: u32, - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "5")] pub retcode: u32, - #[prost(uint32, tag = "13")] - pub exchange_times: u32, - #[prost(int64, tag = "10")] + #[prost(int64, tag = "8")] pub last_recover_time: i64, + #[prost(uint32, tag = "11")] + pub exchange_times: u32, + #[prost(uint32, tag = "12")] + pub stamina_add: u32, + #[prost(message, repeated, tag = "9")] + pub item_cost_list: ::prost::alloc::vec::Vec, } /// Obf: JOIIJKLDFCJ #[derive(proto_derive::CmdID)] -#[cmdid(60)] +#[cmdid(98)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetAuthkeyCsReq { - #[prost(string, tag = "15")] - pub acdjgnhjdai: ::prost::alloc::string::String, #[prost(uint32, tag = "2")] pub goijemcccgl: u32, - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "14")] pub mpgpgfkbmhg: u32, + #[prost(string, tag = "4")] + pub acdjgnhjdai: ::prost::alloc::string::String, } /// Obf: OOMOCDOFBPA #[derive(proto_derive::CmdID)] -#[cmdid(2)] +#[cmdid(85)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetAuthkeyScRsp { - #[prost(uint32, tag = "14")] - pub retcode: u32, - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "9")] pub goijemcccgl: u32, - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "7")] pub mpgpgfkbmhg: u32, - #[prost(string, tag = "3")] + #[prost(string, tag = "5")] pub kbnipiiiccn: ::prost::alloc::string::String, #[prost(string, tag = "11")] pub acdjgnhjdai: ::prost::alloc::string::String, + #[prost(uint32, tag = "2")] + pub retcode: u32, } /// Obf: MBLGHOEJPFL #[derive(proto_derive::CmdID)] -#[cmdid(39)] +#[cmdid(38)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RegionStopScNotify { - #[prost(int64, tag = "6")] - pub stop_begin_time: i64, - #[prost(int64, tag = "4")] + #[prost(int64, tag = "1")] pub stop_end_time: i64, + #[prost(int64, tag = "14")] + pub stop_begin_time: i64, } /// Obf: AntiAddictScNotify #[derive(proto_derive::CmdID)] -#[cmdid(43)] +#[cmdid(52)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct AntiAddictScNotify { - #[prost(string, tag = "7")] + #[prost(string, tag = "5")] pub msg: ::prost::alloc::string::String, - #[prost(string, tag = "2")] - pub level: ::prost::alloc::string::String, - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "2")] pub msg_type: u32, + #[prost(string, tag = "7")] + pub level: ::prost::alloc::string::String, } /// Obf: LCNEGGBICON #[derive(proto_derive::CmdID)] -#[cmdid(33)] +#[cmdid(68)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SetNicknameCsReq { - #[prost(bool, tag = "11")] + #[prost(bool, tag = "7")] pub is_modify: bool, - #[prost(string, tag = "10")] + #[prost(string, tag = "6")] pub nickname: ::prost::alloc::string::String, } /// Obf: KGKHBLPJCNP #[derive(proto_derive::CmdID)] -#[cmdid(42)] +#[cmdid(94)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SetNicknameScRsp { - #[prost(bool, tag = "6")] - pub is_modify: bool, - #[prost(int64, tag = "12")] + #[prost(int64, tag = "10")] pub jendkbooaip: i64, - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "7")] pub retcode: u32, + #[prost(bool, tag = "14")] + pub is_modify: bool, } /// Obf: PKJNDKNFFBP #[derive(proto_derive::CmdID)] -#[cmdid(77)] +#[cmdid(36)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetLevelRewardTakenListCsReq {} /// Obf: NBJDCIIGJOH #[derive(proto_derive::CmdID)] -#[cmdid(58)] +#[cmdid(87)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetLevelRewardTakenListScRsp { - #[prost(uint32, repeated, tag = "4")] + #[prost(uint32, repeated, tag = "9")] pub amcakcpdnnl: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "8")] pub retcode: u32, } /// Obf: PNNCDLMLBCA #[derive(proto_derive::CmdID)] -#[cmdid(21)] +#[cmdid(9)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetLevelRewardCsReq { - #[prost(uint32, tag = "15")] - pub interacted_prop_entity_id: u32, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "3")] pub level: u32, + #[prost(uint32, tag = "7")] + pub interacted_prop_entity_id: u32, } /// Obf: LAOFKBCENHO #[derive(proto_derive::CmdID)] -#[cmdid(29)] +#[cmdid(6)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetLevelRewardScRsp { - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "1")] pub retcode: u32, - #[prost(message, optional, tag = "1")] + #[prost(message, optional, tag = "14")] pub reward: ::core::option::Option, - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "12")] pub level: u32, } /// Obf: PCOPJMAALGD #[derive(proto_derive::CmdID)] -#[cmdid(93)] +#[cmdid(49)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SetLanguageCsReq { - #[prost(enumeration = "LanguageType", tag = "5")] + #[prost(enumeration = "LanguageType", tag = "9")] pub fadpdibknbi: i32, } /// Obf: HKFACMOAFCE #[derive(proto_derive::CmdID)] -#[cmdid(25)] +#[cmdid(41)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SetLanguageScRsp { - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "2")] pub retcode: u32, - #[prost(enumeration = "LanguageType", tag = "1")] + #[prost(enumeration = "LanguageType", tag = "9")] pub fadpdibknbi: i32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Kiphkhhmfac { - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "7")] pub pokidoenkek: u32, - #[prost(string, tag = "7")] - pub adjcaknjcgo: ::prost::alloc::string::String, - #[prost(int64, tag = "6")] - pub begin_time: i64, - #[prost(string, tag = "14")] + #[prost(string, tag = "9")] pub bcafjhgdodi: ::prost::alloc::string::String, - #[prost(bool, tag = "12")] - pub ghcaaonigca: bool, + #[prost(string, tag = "4")] + pub adjcaknjcgo: ::prost::alloc::string::String, #[prost(string, tag = "13")] pub dbckeiojldi: ::prost::alloc::string::String, - #[prost(uint32, tag = "15")] - pub config_id: u32, - #[prost(uint32, tag = "4")] - pub kdcigpamgho: u32, - #[prost(int64, tag = "8")] + #[prost(int64, tag = "10")] pub end_time: i64, + #[prost(int64, tag = "12")] + pub begin_time: i64, + #[prost(uint32, tag = "6")] + pub kdcigpamgho: u32, + #[prost(uint32, tag = "3")] + pub config_id: u32, + #[prost(bool, tag = "14")] + pub ghcaaonigca: bool, } /// Obf: IBAKKGHGKBH #[derive(proto_derive::CmdID)] -#[cmdid(14)] +#[cmdid(84)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ServerAnnounceNotify { - #[prost(message, repeated, tag = "15")] + #[prost(message, repeated, tag = "1")] pub pbehmeaeikc: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Gateserver { - #[prost(string, tag = "1332")] - pub mpnjikpkohj: ::prost::alloc::string::String, - #[prost(string, tag = "1134")] - pub client_secret_key: ::prost::alloc::string::String, - #[prost(string, tag = "1335")] + #[prost(string, tag = "552")] + pub lhoofmaihpc: ::prost::alloc::string::String, + #[prost(uint32, tag = "1810")] + pub rogue_tourn_notice_pic_type: u32, + #[prost(bool, tag = "742")] + pub mtp_switch: bool, + #[prost(uint32, tag = "9")] + pub port: u32, + #[prost(bool, tag = "869")] + pub modibfhpmcp: bool, + #[prost(string, tag = "826")] + pub ngcimholjba: ::prost::alloc::string::String, + #[prost(string, tag = "765")] pub rogue_magic_h5_url: ::prost::alloc::string::String, - #[prost(string, tag = "383")] - pub ehimaoflgil: ::prost::alloc::string::String, - #[prost(string, tag = "974")] - pub web_tool_url: ::prost::alloc::string::String, - #[prost(string, tag = "13")] - pub ex_resource_url: ::prost::alloc::string::String, - #[prost(bool, tag = "6")] - pub enable_design_data_version_update: bool, - #[prost(string, tag = "169")] - pub temporary_maintenance_url: ::prost::alloc::string::String, - #[prost(uint32, tag = "8")] - pub asb_relogin_type: u32, - #[prost(bool, tag = "356")] - pub use_new_networking: bool, - #[prost(string, tag = "1478")] - pub login_white_msg: ::prost::alloc::string::String, - #[prost(uint32, tag = "712")] - pub enable_cdn_ipv6: u32, - #[prost(string, tag = "841")] - pub rogue_tourn_build_ref_h5_url: ::prost::alloc::string::String, - #[prost(string, tag = "1354")] - pub personal_information_in_game_url: ::prost::alloc::string::String, - #[prost(string, tag = "761")] - pub design_data_relogin_desc: ::prost::alloc::string::String, - #[prost(string, tag = "330")] - pub online_replay_download_url: ::prost::alloc::string::String, - #[prost(int64, tag = "9")] - pub stop_end_time: i64, - #[prost(string, tag = "1168")] - pub custom_service_url: ::prost::alloc::string::String, - #[prost(int64, tag = "14")] - pub stop_begin_time: i64, - #[prost(string, tag = "1158")] - pub third_privacy_in_game_url: ::prost::alloc::string::String, - #[prost(string, tag = "1087")] + #[prost(string, tag = "12")] + pub asb_relogin_desc: ::prost::alloc::string::String, + #[prost(string, tag = "1165")] pub official_community_url: ::prost::alloc::string::String, - #[prost(string, tag = "425")] - pub ifix_url: ::prost::alloc::string::String, - #[prost(bool, tag = "1943")] + #[prost(string, tag = "1934")] + pub temporary_maintenance_url: ::prost::alloc::string::String, + #[prost(string, tag = "1005")] + pub mdk_res_version: ::prost::alloc::string::String, + #[prost(string, tag = "1260")] + pub game_start_customer_service_url: ::prost::alloc::string::String, + #[prost(int64, tag = "15")] + pub stop_end_time: i64, + #[prost(string, tag = "632")] + pub rogue_tourn_build_ref_static_data_url_prefix: ::prost::alloc::string::String, + #[prost(string, tag = "1121")] + pub operation_feedback_url: ::prost::alloc::string::String, + #[prost(bool, tag = "796")] pub network_diagnostic: bool, - #[prost(string, tag = "35")] + #[prost(string, tag = "1582")] + pub rogue_tourn_build_ref_api_req_color_header_value: ::prost::alloc::string::String, + #[prost(string, tag = "462")] + pub cloud_game_url: ::prost::alloc::string::String, + #[prost(bool, tag = "1068")] + pub ecbfehfpofj: bool, + #[prost(string, tag = "2000")] pub rogue_tourn_build_ref_api_req_color_header_key: ::prost::alloc::string::String, - #[prost(string, tag = "276")] - pub teenager_privacy_in_game_url: ::prost::alloc::string::String, - #[prost(bool, tag = "1363")] - pub enable_watermark: bool, - #[prost(bool, tag = "1725")] - pub forbid_recharge: bool, - #[prost(uint32, tag = "15")] - pub retcode: u32, + #[prost(string, tag = "1888")] + pub online_replay_download_url: ::prost::alloc::string::String, + #[prost(string, tag = "799")] + pub ehimaoflgil: ::prost::alloc::string::String, + #[prost(string, tag = "1050")] + pub personal_information_in_game_url: ::prost::alloc::string::String, + #[prost(string, tag = "33")] + pub ifix_url: ::prost::alloc::string::String, + #[prost(string, tag = "1391")] + pub ipv6_address: ::prost::alloc::string::String, + #[prost(bool, tag = "786")] + pub event_tracking_open: bool, + #[prost(string, tag = "1331")] + pub player_return_questionnaire_b_url: ::prost::alloc::string::String, + #[prost(string, tag = "1727")] + pub user_agreement_url: ::prost::alloc::string::String, + #[prost(string, tag = "82")] + pub privacy_in_game_url: ::prost::alloc::string::String, + #[prost(string, tag = "1130")] + pub rogue_tourn_build_ref_h5_url: ::prost::alloc::string::String, + #[prost(bool, tag = "208")] + pub use_new_networking: bool, + #[prost(string, repeated, tag = "2032")] + pub oaohiecdgcc: ::prost::alloc::vec::Vec<::prost::alloc::string::String>, + #[prost(string, tag = "966")] + pub redeem_code_url: ::prost::alloc::string::String, + #[prost(string, tag = "385")] + pub client_secret_key: ::prost::alloc::string::String, + #[prost(uint32, tag = "1675")] + pub enable_cdn_ipv6: u32, #[prost(bool, tag = "4")] pub enable_version_update: bool, - #[prost(string, tag = "1761")] - pub operation_feedback_url: ::prost::alloc::string::String, - #[prost(string, tag = "1456")] - pub community_activity_url: ::prost::alloc::string::String, - #[prost(bool, tag = "438")] - pub ecbfehfpofj: bool, - #[prost(string, tag = "1423")] - pub redeem_code_url: ::prost::alloc::string::String, - #[prost(uint32, tag = "1204")] - pub rogue_tourn_notice_pic_type: u32, - #[prost(string, tag = "30")] - pub lhoofmaihpc: ::prost::alloc::string::String, - #[prost(string, tag = "236")] - pub ifix_version: ::prost::alloc::string::String, - #[prost(string, tag = "2")] - pub lua_url: ::prost::alloc::string::String, - #[prost(string, tag = "2038")] - pub privacy_in_game_url: ::prost::alloc::string::String, - #[prost(string, tag = "11")] - pub ip: ::prost::alloc::string::String, - #[prost(string, tag = "3")] - pub region_name: ::prost::alloc::string::String, - #[prost(uint32, tag = "526")] - pub rogue_tourn_notice_id: u32, - #[prost(string, tag = "705")] - pub mdk_res_version: ::prost::alloc::string::String, - #[prost(string, tag = "259")] - pub game_start_customer_service_url: ::prost::alloc::string::String, - #[prost(bool, tag = "344")] - pub enable_android_middle_package: bool, - #[prost(string, tag = "499")] - pub rogue_tourn_build_ref_static_data_url_prefix: ::prost::alloc::string::String, - #[prost(bool, tag = "923")] - pub event_tracking_open: bool, - #[prost(string, tag = "283")] - pub player_return_questionnaire_a_url: ::prost::alloc::string::String, - #[prost(string, tag = "5")] - pub asset_bundle_url: ::prost::alloc::string::String, - #[prost(string, repeated, tag = "373")] - pub oaohiecdgcc: ::prost::alloc::vec::Vec<::prost::alloc::string::String>, - #[prost(bool, tag = "609")] - pub close_redeem_code: bool, - #[prost(bool, tag = "565")] - pub use_tcp: bool, - #[prost(uint32, tag = "1")] - pub port: u32, - #[prost(string, tag = "905")] - pub pooolgfkkjl: ::prost::alloc::string::String, - #[prost(string, tag = "1874")] - pub ipv6_address: ::prost::alloc::string::String, - #[prost(bool, tag = "2023")] - pub enable_upload_battle_log: bool, - #[prost(string, tag = "2036")] - pub player_return_questionnaire_b_url: ::prost::alloc::string::String, - #[prost(string, tag = "1598")] - pub cloud_game_url: ::prost::alloc::string::String, - #[prost(string, tag = "1515")] - pub ckiofjnkemn: ::prost::alloc::string::String, - #[prost(bool, tag = "1885")] - pub mtp_switch: bool, - #[prost(uint32, tag = "12")] - pub design_data_relogin_type: u32, - #[prost(string, tag = "47")] - pub pre_download_url: ::prost::alloc::string::String, - #[prost(string, tag = "7")] - pub msg: ::prost::alloc::string::String, - #[prost(string, tag = "10")] - pub asb_relogin_desc: ::prost::alloc::string::String, - #[prost(bool, tag = "307")] + #[prost(string, tag = "1396")] + pub design_data_relogin_desc: ::prost::alloc::string::String, + #[prost(bool, tag = "200")] pub enable_save_replay_file: bool, - #[prost(string, tag = "1991")] - pub denlmlcjlpg: ::prost::alloc::string::String, - #[prost(string, tag = "108")] - pub server_description: ::prost::alloc::string::String, - #[prost(string, tag = "1630")] - pub hot_point_url: ::prost::alloc::string::String, - #[prost(string, tag = "805")] - pub user_agreement_url: ::prost::alloc::string::String, - #[prost(string, tag = "1861")] - pub online_replay_upload_url: ::prost::alloc::string::String, - #[prost(string, tag = "1685")] - pub player_return_invite_h5_url: ::prost::alloc::string::String, - #[prost(bool, tag = "1118")] - pub modibfhpmcp: bool, - #[prost(string, tag = "1074")] - pub rogue_tourn_build_ref_api_req_color_header_value: ::prost::alloc::string::String, - #[prost(bool, tag = "1144")] + #[prost(string, tag = "30")] + pub pre_download_url: ::prost::alloc::string::String, + #[prost(string, tag = "2")] + pub ip: ::prost::alloc::string::String, + #[prost(uint32, tag = "1025")] + pub rogue_tourn_notice_id: u32, + #[prost(bool, tag = "1409")] + pub forbid_recharge: bool, + #[prost(bool, tag = "1984")] + pub use_tcp: bool, + #[prost(bool, tag = "1598")] + pub enable_upload_battle_log: bool, + #[prost(bool, tag = "1715")] pub ios_exam: bool, - #[prost(string, tag = "574")] - pub ngcimholjba: ::prost::alloc::string::String, + #[prost(uint32, tag = "13")] + pub asb_relogin_type: u32, + #[prost(string, tag = "34")] + pub pooolgfkkjl: ::prost::alloc::string::String, + #[prost(string, tag = "485")] + pub third_privacy_in_game_url: ::prost::alloc::string::String, + #[prost(string, tag = "1151")] + pub mpnjikpkohj: ::prost::alloc::string::String, + #[prost(string, tag = "29")] + pub community_activity_url: ::prost::alloc::string::String, + #[prost(bool, tag = "135")] + pub enable_watermark: bool, + #[prost(string, tag = "300")] + pub player_return_questionnaire_a_url: ::prost::alloc::string::String, + #[prost(uint32, tag = "11")] + pub design_data_relogin_type: u32, + #[prost(string, tag = "7")] + pub lua_url: ::prost::alloc::string::String, + #[prost(string, tag = "3")] + pub asset_bundle_url: ::prost::alloc::string::String, + #[prost(bool, tag = "970")] + pub close_redeem_code: bool, + #[prost(string, tag = "10")] + pub msg: ::prost::alloc::string::String, + #[prost(bool, tag = "8")] + pub enable_design_data_version_update: bool, + #[prost(string, tag = "6")] + pub ex_resource_url: ::prost::alloc::string::String, + #[prost(string, tag = "154")] + pub player_return_invite_h5_url: ::prost::alloc::string::String, + #[prost(string, tag = "226")] + pub teenager_privacy_in_game_url: ::prost::alloc::string::String, + #[prost(string, tag = "965")] + pub online_replay_upload_url: ::prost::alloc::string::String, + #[prost(string, tag = "751")] + pub web_tool_url: ::prost::alloc::string::String, + #[prost(string, tag = "1654")] + pub denlmlcjlpg: ::prost::alloc::string::String, + #[prost(string, tag = "1093")] + pub hot_point_url: ::prost::alloc::string::String, + #[prost(string, tag = "1900")] + pub ifix_version: ::prost::alloc::string::String, + #[prost(string, tag = "957")] + pub ckiofjnkemn: ::prost::alloc::string::String, + #[prost(uint32, tag = "14")] + pub retcode: u32, + #[prost(string, tag = "292")] + pub server_description: ::prost::alloc::string::String, + #[prost(string, tag = "1")] + pub region_name: ::prost::alloc::string::String, + #[prost(bool, tag = "431")] + pub enable_android_middle_package: bool, + #[prost(int64, tag = "5")] + pub stop_begin_time: i64, + #[prost(string, tag = "988")] + pub login_white_msg: ::prost::alloc::string::String, + #[prost(string, tag = "536")] + pub custom_service_url: ::prost::alloc::string::String, } /// Obf: BNJGKOABGAM #[derive(proto_derive::CmdID)] -#[cmdid(53)] +#[cmdid(37)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GateServerScNotify { - #[prost(string, tag = "1")] + #[prost(string, tag = "8")] pub connpkcchje: ::prost::alloc::string::String, } -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct MultiPathAvatarTypeInfo { - #[prost(uint32, tag = "1")] - pub dressed_skin_id: u32, - #[prost(enumeration = "MultiPathAvatarType", tag = "7")] - pub avatar_id: i32, - #[prost(message, repeated, tag = "12")] - pub skilltree_list: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "2")] - pub equip_relic_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "15")] - pub rank: u32, - #[prost(uint32, tag = "11")] - pub path_equipment_id: u32, -} /// Obf: LBBLEAJKMIK #[derive(proto_derive::CmdID)] -#[cmdid(15)] +#[cmdid(8)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SetAvatarPathCsReq { - #[prost(enumeration = "MultiPathAvatarType", tag = "11")] + #[prost(enumeration = "MultiPathAvatarType", tag = "9")] pub avatar_id: i32, } /// Obf: GCENDFMFELN #[derive(proto_derive::CmdID)] -#[cmdid(55)] +#[cmdid(97)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SetAvatarPathScRsp { - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "9")] pub retcode: u32, - #[prost(enumeration = "MultiPathAvatarType", tag = "14")] + #[prost(enumeration = "MultiPathAvatarType", tag = "2")] pub avatar_id: i32, } /// Obf: BDCJMLIKLOE #[derive(proto_derive::CmdID)] -#[cmdid(38)] +#[cmdid(42)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SetMultipleAvatarPathsCsReq { - #[prost(enumeration = "MultiPathAvatarType", repeated, tag = "1")] + #[prost(enumeration = "MultiPathAvatarType", repeated, tag = "2")] pub avatar_id_list: ::prost::alloc::vec::Vec, } /// Obf: ICLMIMNMAFO #[derive(proto_derive::CmdID)] -#[cmdid(5)] +#[cmdid(92)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SetMultipleAvatarPathsScRsp { - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "10")] pub retcode: u32, } -/// Obf: ICGDIFLHOBI -#[derive(proto_derive::CmdID)] -#[cmdid(80)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetMultiPathAvatarInfoCsReq {} -/// Obf: EDCLCHKFNBN -#[derive(proto_derive::CmdID)] -#[cmdid(50)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetMultiPathAvatarInfoScRsp { - #[prost(uint32, tag = "14")] - pub retcode: u32, - #[prost(message, repeated, tag = "13")] - pub multi_path_avatar_type_info_list: ::prost::alloc::vec::Vec< - MultiPathAvatarTypeInfo, - >, - #[prost(map = "uint32, enumeration(MultiPathAvatarType)", tag = "15")] - pub current_multi_path_avatar_id: ::std::collections::HashMap, - #[prost(uint32, repeated, tag = "2")] - pub halndfogjnf: ::prost::alloc::vec::Vec, -} /// Obf: NPCBNNEEDEL #[derive(proto_derive::CmdID)] -#[cmdid(89)] +#[cmdid(58)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct UnlockAvatarPathCsReq { - #[prost(enumeration = "MultiPathAvatarType", tag = "11")] + #[prost(enumeration = "MultiPathAvatarType", tag = "2")] pub avatar_id: i32, } /// Obf: GOKAANGNBHD #[derive(proto_derive::CmdID)] -#[cmdid(88)] +#[cmdid(46)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct UnlockAvatarPathScRsp { - #[prost(message, optional, tag = "4")] + #[prost(message, optional, tag = "12")] pub reward: ::core::option::Option, - #[prost(enumeration = "MultiPathAvatarType", tag = "7")] - pub avatar_id: i32, - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "15")] pub retcode: u32, - #[prost(uint32, repeated, tag = "1")] + #[prost(uint32, repeated, tag = "6")] pub halndfogjnf: ::prost::alloc::vec::Vec, + #[prost(enumeration = "MultiPathAvatarType", tag = "2")] + pub avatar_id: i32, } /// Obf: NFHMHFNKECL #[derive(proto_derive::CmdID)] -#[cmdid(19)] +#[cmdid(100)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct AvatarPathChangedNotify { - #[prost(enumeration = "MultiPathAvatarType", tag = "5")] - pub cur_multi_path_avatar_type: i32, - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "12")] pub base_avatar_id: u32, + #[prost(enumeration = "MultiPathAvatarType", tag = "1")] + pub cur_multi_path_avatar_type: i32, } /// Obf: JLNBIJMEGHP #[derive(proto_derive::CmdID)] -#[cmdid(57)] +#[cmdid(23)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SetGenderCsReq { - #[prost(enumeration = "Gender", tag = "2")] + #[prost(enumeration = "Gender", tag = "15")] pub gender: i32, } /// Obf: EJIHGKHEHCG #[derive(proto_derive::CmdID)] -#[cmdid(7)] +#[cmdid(22)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SetGenderScRsp { - #[prost(message, repeated, tag = "6")] - pub multi_path_type_info: ::prost::alloc::vec::Vec, - #[prost(enumeration = "MultiPathAvatarType", tag = "11")] - pub multi_path_type: i32, - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "11")] pub retcode: u32, + #[prost(message, repeated, tag = "7")] + pub multi_path_type_info: ::prost::alloc::vec::Vec, + #[prost(enumeration = "MultiPathAvatarType", tag = "4")] + pub multi_path_type: i32, } /// Obf: CJEDOFNADBG #[derive(proto_derive::CmdID)] -#[cmdid(98)] +#[cmdid(40)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SetPlayerInfoCsReq { - #[prost(bool, tag = "7")] + #[prost(bool, tag = "2")] pub is_modify: bool, - #[prost(string, tag = "1")] - pub nickname: ::prost::alloc::string::String, - #[prost(enumeration = "Gender", tag = "11")] + #[prost(enumeration = "Gender", tag = "6")] pub gender: i32, + #[prost(string, tag = "4")] + pub nickname: ::prost::alloc::string::String, } /// Obf: PHCBJNKLNHM #[derive(proto_derive::CmdID)] -#[cmdid(64)] +#[cmdid(18)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SetPlayerInfoScRsp { + #[prost(enumeration = "MultiPathAvatarType", tag = "2")] + pub multi_path_type: i32, + #[prost(bool, tag = "1")] + pub is_modify: bool, + #[prost(uint32, tag = "14")] + pub retcode: u32, + #[prost(message, repeated, tag = "8")] + pub multi_path_type_info: ::prost::alloc::vec::Vec, #[prost(int64, tag = "9")] pub jendkbooaip: i64, - #[prost(uint32, tag = "8")] - pub retcode: u32, - #[prost(bool, tag = "12")] - pub is_modify: bool, - #[prost(enumeration = "MultiPathAvatarType", tag = "10")] - pub multi_path_type: i32, - #[prost(message, repeated, tag = "15")] - pub multi_path_type_info: ::prost::alloc::vec::Vec, } /// Obf: COMGKLPKIEO #[derive(proto_derive::CmdID)] -#[cmdid(45)] +#[cmdid(19)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct QueryProductInfoCsReq {} #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Aapnhpamdck { - #[prost(string, tag = "6")] - pub mpamhbfikfb: ::prost::alloc::string::String, - #[prost(enumeration = "ProductGiftType", tag = "12")] - pub dnajfmpcmll: i32, - #[prost(uint32, tag = "5")] - pub ioglpebjmdb: u32, - #[prost(string, tag = "15")] - pub dbellihmajg: ::prost::alloc::string::String, - #[prost(int64, tag = "7")] - pub begin_time: i64, - #[prost(int64, tag = "11")] + #[prost(int64, tag = "6")] pub end_time: i64, - #[prost(bool, tag = "8")] - pub fkfokhabejn: bool, - #[prost(uint32, tag = "9")] + #[prost(int64, tag = "3")] + pub begin_time: i64, + #[prost(uint32, tag = "4")] pub gcbobamcalk: u32, + #[prost(string, tag = "2")] + pub mpamhbfikfb: ::prost::alloc::string::String, + #[prost(enumeration = "ProductGiftType", tag = "13")] + pub dnajfmpcmll: i32, + #[prost(bool, tag = "14")] + pub fkfokhabejn: bool, + #[prost(uint32, tag = "7")] + pub ioglpebjmdb: u32, + #[prost(string, tag = "11")] + pub dbellihmajg: ::prost::alloc::string::String, } /// Obf: JCAKDMECGGG #[derive(proto_derive::CmdID)] -#[cmdid(13)] +#[cmdid(55)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct QueryProductInfoScRsp { - #[prost(uint64, tag = "1")] - pub month_card_out_date_time: u64, #[prost(uint32, tag = "12")] - pub odnfiaahkci: u32, - #[prost(message, repeated, tag = "15")] - pub pidhegpbcji: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "11")] - pub retcode: u32, - #[prost(uint32, tag = "6")] pub cmghdmpeako: u32, + #[prost(uint64, tag = "11")] + pub month_card_out_date_time: u64, + #[prost(message, repeated, tag = "10")] + pub pidhegpbcji: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "6")] + pub retcode: u32, + #[prost(uint32, tag = "7")] + pub odnfiaahkci: u32, } /// Obf: OIIINKHFBGB #[derive(proto_derive::CmdID)] -#[cmdid(35)] +#[cmdid(57)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MonthCardRewardNotify { - #[prost(message, optional, tag = "8")] + #[prost(message, optional, tag = "12")] pub reward: ::core::option::Option, } /// Obf: FDOLNEFNGDO #[derive(proto_derive::CmdID)] -#[cmdid(78)] +#[cmdid(71)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ClientDownloadDataScNotify { - #[prost(message, optional, tag = "9")] + #[prost(message, optional, tag = "2")] pub download_data: ::core::option::Option, } /// Obf: EJLLKLCOLDA #[derive(proto_derive::CmdID)] -#[cmdid(73)] +#[cmdid(51)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ClientObjDownloadDataScNotify { - #[prost(message, optional, tag = "15")] + #[prost(message, optional, tag = "4")] pub data: ::core::option::Option, } /// Obf: UpdateFeatureSwitchScNotify #[derive(proto_derive::CmdID)] -#[cmdid(20)] +#[cmdid(63)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct UpdateFeatureSwitchScNotify { #[prost(message, repeated, tag = "7")] @@ -19665,224 +21060,224 @@ pub struct UpdateFeatureSwitchScNotify { } /// Obf: LGCFMDKHHHG #[derive(proto_derive::CmdID)] -#[cmdid(9)] +#[cmdid(60)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct DailyRefreshNotify { - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "3")] pub gmfebdafdpj: u32, } /// Obf: NNDDOMBMKCI #[derive(proto_derive::CmdID)] -#[cmdid(54)] +#[cmdid(96)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SetGameplayBirthdayCsReq { - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "11")] pub birthday: u32, } /// Obf: POEHBJFDKEN #[derive(proto_derive::CmdID)] -#[cmdid(99)] +#[cmdid(16)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SetGameplayBirthdayScRsp { - #[prost(uint32, tag = "8")] - pub retcode: u32, - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "12")] pub birthday: u32, + #[prost(uint32, tag = "6")] + pub retcode: u32, } /// Obf: PICOEIMKLBN #[derive(proto_derive::CmdID)] -#[cmdid(87)] +#[cmdid(93)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct AceAntiCheaterCsReq { - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "1")] pub glnkkfaipob: u32, - #[prost(string, tag = "3")] + #[prost(string, tag = "5")] pub dgdlniefcpf: ::prost::alloc::string::String, } /// Obf: GOODKNBLONB #[derive(proto_derive::CmdID)] -#[cmdid(8)] +#[cmdid(64)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct AceAntiCheaterScRsp { - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "10")] pub retcode: u32, } /// Obf: NNKIDOFODLM #[derive(proto_derive::CmdID)] -#[cmdid(34)] +#[cmdid(26)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RetcodeNotify { - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "6")] pub retcode: u32, - #[prost(uint32, repeated, tag = "11")] + #[prost(uint32, repeated, tag = "12")] pub jojppodomah: ::prost::alloc::vec::Vec, } /// Obf: KKPKCBHDAIG #[derive(proto_derive::CmdID)] -#[cmdid(68)] +#[cmdid(90)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct PlayerHeartBeatCsReq { - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "6")] pub jbpemofnedg: u32, - #[prost(uint64, tag = "11")] - pub client_time_ms: u64, - #[prost(message, optional, tag = "14")] + #[prost(message, optional, tag = "7")] pub lkjmjgdebee: ::core::option::Option, + #[prost(uint64, tag = "5")] + pub client_time_ms: u64, } /// Obf: EPFPPENOIGH #[derive(proto_derive::CmdID)] -#[cmdid(1)] +#[cmdid(89)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct PlayerHeartBeatScRsp { - #[prost(uint64, tag = "2")] + #[prost(uint64, tag = "6")] pub client_time_ms: u64, - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "2")] pub retcode: u32, - #[prost(message, optional, tag = "13")] - pub download_data: ::core::option::Option, - #[prost(uint64, tag = "8")] + #[prost(uint64, tag = "7")] pub server_time_ms: u64, + #[prost(message, optional, tag = "12")] + pub download_data: ::core::option::Option, } /// Obf: ONJIGDEOICM #[derive(proto_derive::CmdID)] -#[cmdid(36)] +#[cmdid(72)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct FeatureSwitchClosedScNotify { - #[prost(enumeration = "FeatureSwitchType", tag = "4")] + #[prost(enumeration = "FeatureSwitchType", tag = "1")] pub kimnkfpfbdg: i32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Kpcimegklll { - #[prost(string, tag = "14")] + #[prost(string, tag = "9")] pub iaogfcmadlc: ::prost::alloc::string::String, - #[prost(enumeration = "SecretKeyType", tag = "5")] + #[prost(enumeration = "SecretKeyType", tag = "13")] pub slot: i32, } /// Obf: NPKKENGFCBP #[derive(proto_derive::CmdID)] -#[cmdid(74)] +#[cmdid(33)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetSecretKeyInfoCsReq { - #[prost(bytes = "vec", tag = "14")] + #[prost(bytes = "vec", tag = "4")] pub cfhgmeadiph: ::prost::alloc::vec::Vec, } /// Obf: IKCBJPLKFHC #[derive(proto_derive::CmdID)] -#[cmdid(90)] +#[cmdid(7)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetSecretKeyInfoScRsp { - #[prost(bytes = "vec", tag = "3")] + #[prost(bytes = "vec", tag = "6")] pub baohefhiden: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "12")] pub retcode: u32, - #[prost(message, repeated, tag = "12")] + #[prost(message, repeated, tag = "11")] pub ebceboebgeh: ::prost::alloc::vec::Vec, } /// Obf: IJEADEFDMOI #[derive(proto_derive::CmdID)] -#[cmdid(17)] +#[cmdid(48)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct PlayerLoginFinishCsReq {} /// Obf: OFALHALMBDC #[derive(proto_derive::CmdID)] -#[cmdid(69)] +#[cmdid(25)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct PlayerLoginFinishScRsp { - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "7")] pub retcode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct VideoKeyInfo { - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "11")] pub id: u32, - #[prost(uint64, tag = "8")] + #[prost(uint64, tag = "2")] pub video_key: u64, } /// Obf: IEDMBNKGGGN #[derive(proto_derive::CmdID)] -#[cmdid(49)] +#[cmdid(43)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetVideoVersionKeyCsReq {} /// Obf: CEENOIAPFNM #[derive(proto_derive::CmdID)] -#[cmdid(3)] +#[cmdid(12)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetVideoVersionKeyScRsp { - #[prost(message, repeated, tag = "3")] - pub apmbnedfbpa: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "7")] - pub video_key_info_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "8")] pub retcode: u32, + #[prost(message, repeated, tag = "5")] + pub apmbnedfbpa: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "13")] + pub video_key_info_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Nhjghokbdpk { - #[prost(uint32, tag = "8")] - pub iipdefcedmc: u32, - #[prost(uint32, tag = "14")] - pub nciadbakmae: u32, - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "11")] pub jdakkofdgep: u32, - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "10")] + pub iipdefcedmc: u32, + #[prost(uint32, tag = "5")] pub content_id: u32, + #[prost(uint32, tag = "15")] + pub nciadbakmae: u32, } /// Obf: FICCMNIFEBG #[derive(proto_derive::CmdID)] -#[cmdid(10)] +#[cmdid(62)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SetRedPointStatusScNotify { - #[prost(uint32, tag = "12")] - pub jdakkofdgep: u32, - #[prost(uint32, tag = "1")] - pub content_id: u32, - #[prost(uint32, tag = "5")] - pub uid: u32, - #[prost(message, repeated, tag = "14")] - pub njehhffdghk: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "8")] pub iipdefcedmc: u32, + #[prost(uint32, tag = "10")] + pub content_id: u32, + #[prost(message, repeated, tag = "9")] + pub njehhffdghk: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "13")] + pub uid: u32, + #[prost(uint32, tag = "4")] + pub jdakkofdgep: u32, } /// Obf: GCINFCFLOJD #[derive(proto_derive::CmdID)] -#[cmdid(70)] +#[cmdid(75)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ReserveStaminaExchangeCsReq { - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "12")] pub num: u32, } /// Obf: ReserveStaminaExchangeScRsp #[derive(proto_derive::CmdID)] -#[cmdid(4)] +#[cmdid(30)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ReserveStaminaExchangeScRsp { - #[prost(uint32, tag = "8")] - pub retcode: u32, - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "13")] pub num: u32, + #[prost(uint32, tag = "14")] + pub retcode: u32, } /// Obf: KIHFDKLMCEM #[derive(proto_derive::CmdID)] -#[cmdid(18)] +#[cmdid(83)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct StaminaInfoScNotify { - #[prost(int64, tag = "7")] - pub next_recover_time: i64, - #[prost(uint32, tag = "8")] - pub reserve_stamina: u32, - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "10")] pub stamina: u32, - #[prost(int64, tag = "12")] + #[prost(int64, tag = "14")] pub dpimhemjkoe: i64, + #[prost(uint32, tag = "13")] + pub reserve_stamina: u32, + #[prost(int64, tag = "11")] + pub next_recover_time: i64, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Onmlpjkagcg { #[prost( oneof = "onmlpjkagcg::Ckmaikmmjme", - tags = "1, 8, 5, 7, 2, 4, 11, 15, 6, 9, 12" + tags = "11, 9, 14, 7, 3, 4, 13, 15, 6, 2, 1" )] pub ckmaikmmjme: ::core::option::Option, } @@ -19891,86 +21286,86 @@ pub mod onmlpjkagcg { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Oneof)] pub enum Ckmaikmmjme { - #[prost(bool, tag = "1")] + #[prost(bool, tag = "11")] Kapdimgjlnf(bool), - #[prost(bool, tag = "8")] + #[prost(bool, tag = "9")] Mmmnjchemfn(bool), - #[prost(bool, tag = "5")] + #[prost(bool, tag = "14")] Nkekibnjmpa(bool), #[prost(bool, tag = "7")] Pbkbglhhkpe(bool), - #[prost(bool, tag = "2")] + #[prost(bool, tag = "3")] Njfmiljofok(bool), #[prost(bool, tag = "4")] Aicnfaobcpi(bool), - #[prost(bool, tag = "11")] + #[prost(bool, tag = "13")] Kjncckhjfhe(bool), #[prost(bool, tag = "15")] Aponeidmphl(bool), #[prost(bool, tag = "6")] Gmjanojmkce(bool), - #[prost(message, tag = "9")] + #[prost(message, tag = "2")] Ghkcmdnkopn(super::Ogfiodpilel), - #[prost(bool, tag = "12")] + #[prost(bool, tag = "1")] Ilfalcdlaol(bool), } } /// Obf: IBEPKJBGGLD #[derive(proto_derive::CmdID)] -#[cmdid(44)] +#[cmdid(32)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct UpdatePlayerSettingCsReq { - #[prost(message, optional, tag = "13")] + #[prost(message, optional, tag = "1")] pub klkpmljkmjp: ::core::option::Option, } /// Obf: IJBPIFMHMHN #[derive(proto_derive::CmdID)] -#[cmdid(26)] +#[cmdid(11)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct UpdatePlayerSettingScRsp { - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "2")] pub retcode: u32, - #[prost(message, optional, tag = "10")] + #[prost(message, optional, tag = "15")] pub klkpmljkmjp: ::core::option::Option, } /// Obf: BIJPBJMIAHD #[derive(proto_derive::CmdID)] -#[cmdid(67)] +#[cmdid(56)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ClientObjUploadCsReq { - #[prost(bytes = "vec", tag = "15")] + #[prost(bytes = "vec", tag = "1")] pub lkjmjgdebee: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "15")] pub jbpemofnedg: u32, } /// Obf: KEAENHHGMEF #[derive(proto_derive::CmdID)] -#[cmdid(96)] +#[cmdid(1)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ClientObjUploadScRsp { - #[prost(uint32, tag = "10")] - pub retcode: u32, - #[prost(message, optional, tag = "13")] + #[prost(message, optional, tag = "2")] pub data: ::core::option::Option, + #[prost(uint32, tag = "11")] + pub retcode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Menpbggogmc { - #[prost(string, repeated, tag = "7")] + #[prost(string, repeated, tag = "6")] pub gkhfbfknhob: ::prost::alloc::vec::Vec<::prost::alloc::string::String>, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Ncbimlpodon { - #[prost(bool, tag = "1")] - pub iahopfnpfln: bool, - #[prost(message, optional, tag = "6")] + #[prost(message, optional, tag = "1")] pub pelmgopehkn: ::core::option::Option, + #[prost(bool, tag = "4")] + pub iahopfnpfln: bool, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Cjakibdimmj { - #[prost(oneof = "cjakibdimmj::Bfgkjimcgah", tags = "1837, 73, 670")] + #[prost(oneof = "cjakibdimmj::Bfgkjimcgah", tags = "306, 934, 1137")] pub bfgkjimcgah: ::core::option::Option, } /// Nested message and enum types in `CJAKIBDIMMJ`. @@ -19978,20 +21373,20 @@ pub mod cjakibdimmj { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] pub enum Bfgkjimcgah { - #[prost(bool, tag = "1837")] + #[prost(bool, tag = "306")] Iahopfnpfln(bool), - #[prost(message, tag = "73")] + #[prost(message, tag = "934")] Amaljfokcba(super::Menpbggogmc), - #[prost(message, tag = "670")] + #[prost(message, tag = "1137")] Oecbelgdlfp(super::Menpbggogmc), } } /// Obf: FDFPMJAPMIB #[derive(proto_derive::CmdID)] -#[cmdid(12)] +#[cmdid(79)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct UpdatePsnSettingsInfoCsReq { - #[prost(oneof = "update_psn_settings_info_cs_req::Ddbnlhjnane", tags = "1512, 1533")] + #[prost(oneof = "update_psn_settings_info_cs_req::Ddbnlhjnane", tags = "237, 908")] pub ddbnlhjnane: ::core::option::Option< update_psn_settings_info_cs_req::Ddbnlhjnane, >, @@ -20001,338 +21396,338 @@ pub mod update_psn_settings_info_cs_req { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] pub enum Ddbnlhjnane { - #[prost(message, tag = "1512")] + #[prost(message, tag = "237")] Doocplcldpd(super::Ncbimlpodon), - #[prost(message, tag = "1533")] + #[prost(message, tag = "908")] Inhldidjgha(super::Cjakibdimmj), } } /// Obf: GCMDOHJGGJB #[derive(proto_derive::CmdID)] -#[cmdid(41)] +#[cmdid(82)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct UpdatePsnSettingsInfoScRsp { - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "8")] pub retcode: u32, } /// Obf: FHNGPBNFBAE #[derive(proto_derive::CmdID)] -#[cmdid(82)] +#[cmdid(10)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetGameStateServiceConfigCsReq {} /// Obf: BAPHALPCPMJ #[derive(proto_derive::CmdID)] -#[cmdid(47)] +#[cmdid(4)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetGameStateServiceConfigScRsp { - #[prost(string, repeated, tag = "12")] - pub kaojcobeeon: ::prost::alloc::vec::Vec<::prost::alloc::string::String>, - #[prost(string, repeated, tag = "4")] - pub fibijgmkdpp: ::prost::alloc::vec::Vec<::prost::alloc::string::String>, - #[prost(uint32, tag = "15")] - pub retcode: u32, - #[prost(string, repeated, tag = "5")] + #[prost(string, repeated, tag = "6")] pub ledkmdollbb: ::prost::alloc::vec::Vec<::prost::alloc::string::String>, + #[prost(string, repeated, tag = "14")] + pub fibijgmkdpp: ::prost::alloc::vec::Vec<::prost::alloc::string::String>, + #[prost(uint32, tag = "2")] + pub retcode: u32, + #[prost(string, repeated, tag = "9")] + pub kaojcobeeon: ::prost::alloc::vec::Vec<::prost::alloc::string::String>, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct HeadIcon { - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "11")] pub id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct DisplayAvatar { - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "2")] pub pos: u32, - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "4")] pub avatar_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct DisplayAvatarVec { - #[prost(bool, tag = "4")] - pub is_display: bool, - #[prost(message, repeated, tag = "15")] + #[prost(message, repeated, tag = "7")] pub display_avatar_list: ::prost::alloc::vec::Vec, + #[prost(bool, tag = "9")] + pub is_display: bool, } /// Obf: JMAOHPPGHLC #[derive(proto_derive::CmdID)] -#[cmdid(2895)] +#[cmdid(2820)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetPlayerBoardDataCsReq {} /// Obf: PFBICOAEIGP #[derive(proto_derive::CmdID)] -#[cmdid(2832)] +#[cmdid(2891)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetPlayerBoardDataScRsp { - #[prost(uint32, tag = "10")] - pub oldmjonbjom: u32, - #[prost(uint32, repeated, tag = "14")] - pub kknjhenmgpk: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "14")] pub current_head_icon_id: u32, - #[prost(message, optional, tag = "2")] + #[prost(uint32, tag = "2")] + pub oldmjonbjom: u32, + #[prost(message, optional, tag = "5")] pub display_avatar_vec: ::core::option::Option, - #[prost(uint32, repeated, tag = "1")] - pub display_support_avatar_vec: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "15")] - pub unlocked_head_icon_list: ::prost::alloc::vec::Vec, - #[prost(string, tag = "4")] + #[prost(string, tag = "1")] pub signature: ::prost::alloc::string::String, - #[prost(uint32, tag = "13")] + #[prost(message, repeated, tag = "3")] + pub unlocked_head_icon_list: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "6")] pub retcode: u32, + #[prost(uint32, repeated, tag = "10")] + pub kknjhenmgpk: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "15")] + pub display_support_avatar_vec: ::prost::alloc::vec::Vec, } /// Obf: EONDNBHOKPE #[derive(proto_derive::CmdID)] -#[cmdid(2831)] +#[cmdid(2867)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SetHeadIconCsReq { - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "2")] pub id: u32, } /// Obf: IFOFBJAKGEK #[derive(proto_derive::CmdID)] -#[cmdid(2840)] +#[cmdid(2839)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SetHeadIconScRsp { - #[prost(uint32, tag = "5")] - pub retcode: u32, - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "4")] pub current_head_icon_id: u32, + #[prost(uint32, tag = "8")] + pub retcode: u32, } /// Obf: EFKAOICFGCL #[derive(proto_derive::CmdID)] -#[cmdid(2846)] +#[cmdid(2874)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SetPersonalCardCsReq { - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "6")] pub id: u32, } /// Obf: CAFHOLFAOGK #[derive(proto_derive::CmdID)] -#[cmdid(2883)] +#[cmdid(2873)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SetPersonalCardScRsp { - #[prost(uint32, tag = "15")] - pub retcode: u32, - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "10")] pub oldmjonbjom: u32, + #[prost(uint32, tag = "5")] + pub retcode: u32, } /// Obf: FEDJLKBEPMM #[derive(proto_derive::CmdID)] -#[cmdid(2876)] +#[cmdid(2827)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SetDisplayAvatarCsReq { - #[prost(message, repeated, tag = "13")] + #[prost(message, repeated, tag = "10")] pub display_avatar_list: ::prost::alloc::vec::Vec, } /// Obf: HDKMPCKFAAB #[derive(proto_derive::CmdID)] -#[cmdid(2848)] +#[cmdid(2821)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SetDisplayAvatarScRsp { - #[prost(message, repeated, tag = "8")] + #[prost(message, repeated, tag = "6")] pub display_avatar_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "10")] pub retcode: u32, } /// Obf: DHGMEEGJFOE #[derive(proto_derive::CmdID)] -#[cmdid(2871)] +#[cmdid(2870)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SetIsDisplayAvatarInfoCsReq { - #[prost(bool, tag = "10")] + #[prost(bool, tag = "12")] pub is_display: bool, } /// Obf: JEADFNNMIGN #[derive(proto_derive::CmdID)] -#[cmdid(2852)] +#[cmdid(2859)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SetIsDisplayAvatarInfoScRsp { - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "3")] pub retcode: u32, - #[prost(bool, tag = "2")] + #[prost(bool, tag = "10")] pub is_display: bool, } /// Obf: AIKPANALJHL #[derive(proto_derive::CmdID)] -#[cmdid(2856)] +#[cmdid(2877)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SetSignatureCsReq { - #[prost(string, tag = "14")] + #[prost(string, tag = "13")] pub signature: ::prost::alloc::string::String, } /// Obf: JKMKJFGLBPA #[derive(proto_derive::CmdID)] -#[cmdid(2872)] +#[cmdid(2880)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SetSignatureScRsp { - #[prost(string, tag = "6")] - pub signature: ::prost::alloc::string::String, - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "4")] pub retcode: u32, + #[prost(string, tag = "10")] + pub signature: ::prost::alloc::string::String, } /// Obf: DHJGNGBKOAG #[derive(proto_derive::CmdID)] -#[cmdid(2885)] +#[cmdid(2802)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SetAssistAvatarCsReq { - #[prost(uint32, repeated, tag = "15")] + #[prost(uint32, repeated, tag = "2")] pub avatar_id_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "5")] pub avatar_id: u32, } /// Obf: GOCFJNOLIPB #[derive(proto_derive::CmdID)] -#[cmdid(2816)] +#[cmdid(2805)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SetAssistAvatarScRsp { - #[prost(uint32, repeated, tag = "15")] - pub avatar_id_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "10")] - pub retcode: u32, - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "8")] pub avatar_id: u32, + #[prost(uint32, tag = "6")] + pub retcode: u32, + #[prost(uint32, repeated, tag = "1")] + pub avatar_id_list: ::prost::alloc::vec::Vec, } /// Obf: GJGCNJMEMAP #[derive(proto_derive::CmdID)] -#[cmdid(4595)] +#[cmdid(4520)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct PlayerReturnStartScNotify { - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "14")] pub nchiekedhce: u32, } /// Obf: IKIEKHJENFO #[derive(proto_derive::CmdID)] -#[cmdid(4532)] +#[cmdid(4591)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct PlayerReturnSignCsReq { #[prost(uint32, repeated, tag = "2")] pub nmklegomepj: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "14")] pub opeedjihjop: u32, } /// Obf: PAFOHBIMNJK #[derive(proto_derive::CmdID)] -#[cmdid(4531)] +#[cmdid(4567)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct PlayerReturnSignScRsp { - #[prost(uint32, tag = "2")] - pub opeedjihjop: u32, - #[prost(uint32, repeated, tag = "6")] - pub nmklegomepj: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "3")] + #[prost(message, repeated, tag = "14")] pub ipflhcjiebm: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "14")] + #[prost(uint32, repeated, tag = "15")] + pub nmklegomepj: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "13")] pub retcode: u32, + #[prost(uint32, tag = "1")] + pub opeedjihjop: u32, } /// Obf: GNCEIPBBGHG #[derive(proto_derive::CmdID)] -#[cmdid(4540)] +#[cmdid(4539)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct PlayerReturnPointChangeScNotify { - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "3")] pub mamhojmfjof: u32, } /// Obf: LKDDLABFIBC #[derive(proto_derive::CmdID)] -#[cmdid(4576)] +#[cmdid(4527)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct PlayerReturnTakePointRewardCsReq { - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "3")] pub iifomgofmdl: u32, #[prost(uint32, tag = "8")] pub cpnimljnmmf: u32, } /// Obf: FJHNMBNNIBK #[derive(proto_derive::CmdID)] -#[cmdid(4548)] +#[cmdid(4521)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct PlayerReturnTakePointRewardScRsp { - #[prost(uint32, tag = "12")] - pub retcode: u32, - #[prost(uint32, tag = "8")] - pub cpnimljnmmf: u32, - #[prost(message, optional, tag = "10")] - pub cfidbmmijhg: ::core::option::Option, - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "7")] pub iifomgofmdl: u32, + #[prost(uint32, tag = "9")] + pub retcode: u32, + #[prost(uint32, tag = "14")] + pub cpnimljnmmf: u32, + #[prost(message, optional, tag = "12")] + pub cfidbmmijhg: ::core::option::Option, } /// Obf: ODLPHAPJDMH #[derive(proto_derive::CmdID)] -#[cmdid(4571)] +#[cmdid(4570)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct PlayerReturnTakeRewardCsReq {} /// Obf: NEIOAACEMJA #[derive(proto_derive::CmdID)] -#[cmdid(4552)] +#[cmdid(4559)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct PlayerReturnTakeRewardScRsp { - #[prost(uint32, tag = "2")] - pub retcode: u32, - #[prost(message, optional, tag = "11")] + #[prost(message, optional, tag = "5")] pub ipflhcjiebm: ::core::option::Option, + #[prost(uint32, tag = "4")] + pub retcode: u32, } /// Obf: MNOOMKEHNOG #[derive(proto_derive::CmdID)] -#[cmdid(4522)] +#[cmdid(4554)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct PlayerReturnInfoQueryCsReq { - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "12")] pub cehfiilmjkm: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Afbneibijnd { #[prost(bool, tag = "8")] - pub is_taken_reward: bool, - #[prost(int64, tag = "11")] - pub finish_time: i64, - #[prost(uint32, tag = "2")] + pub fjndpcfnflo: bool, + #[prost(uint32, tag = "6")] pub world_level: u32, + #[prost(uint32, repeated, tag = "7")] + pub caimhcaacfg: ::prost::alloc::vec::Vec, #[prost(uint32, tag = "13")] - pub ilcfojcdnhi: u32, - #[prost(uint32, repeated, tag = "9")] - pub nmklegomepj: ::prost::alloc::vec::Vec, - #[prost(enumeration = "Nobpmmnfenj", tag = "5")] - pub status: i32, + pub mamhojmfjof: u32, #[prost(uint32, tag = "4")] pub ahnfmdnejnl: u32, - #[prost(uint32, tag = "6")] - pub mamhojmfjof: u32, - #[prost(uint32, repeated, tag = "1")] - pub caimhcaacfg: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "7")] + #[prost(int64, tag = "1")] + pub finish_time: i64, + #[prost(bool, tag = "10")] + pub is_taken_reward: bool, + #[prost(uint32, tag = "15")] pub bgafghipoje: u32, - #[prost(bool, tag = "12")] - pub fjndpcfnflo: bool, - #[prost(int64, tag = "10")] + #[prost(uint32, repeated, tag = "11")] + pub nmklegomepj: ::prost::alloc::vec::Vec, + #[prost(int64, tag = "9")] pub coifhfpegph: i64, + #[prost(enumeration = "Nobpmmnfenj", tag = "5")] + pub status: i32, + #[prost(uint32, tag = "14")] + pub ilcfojcdnhi: u32, } /// Obf: APNMNGNPFAC #[derive(proto_derive::CmdID)] -#[cmdid(4556)] +#[cmdid(4577)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct PlayerReturnInfoQueryScRsp { - #[prost(uint32, tag = "13")] - pub retcode: u32, - #[prost(message, optional, tag = "14")] + #[prost(message, optional, tag = "8")] pub pfeidpolokm: ::core::option::Option, - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "7")] + pub retcode: u32, + #[prost(uint32, tag = "12")] pub gmfidnohgco: u32, } /// Obf: JECKOPFFLAA #[derive(proto_derive::CmdID)] -#[cmdid(4572)] +#[cmdid(4580)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct PlayerReturnForceFinishScNotify { - #[prost(message, optional, tag = "7")] + #[prost(message, optional, tag = "13")] pub pfeidpolokm: ::core::option::Option, } /// Obf: AFLMIOMNECM #[derive(proto_derive::CmdID)] -#[cmdid(4585)] +#[cmdid(4502)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct PlayerReturnTakeRelicCsReq { #[prost(uint32, tag = "3")] @@ -20340,460 +21735,460 @@ pub struct PlayerReturnTakeRelicCsReq { } /// Obf: ECLOMGJFDIL #[derive(proto_derive::CmdID)] -#[cmdid(4516)] +#[cmdid(4505)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct PlayerReturnTakeRelicScRsp { - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "4")] pub avatar_id: u32, - #[prost(message, optional, tag = "4")] + #[prost(message, optional, tag = "14")] pub item_list: ::core::option::Option, - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "10")] pub retcode: u32, } /// Obf: CMGDJIOMCLG #[derive(proto_derive::CmdID)] -#[cmdid(1195)] +#[cmdid(1120)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct FinishPlotCsReq { - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "13")] pub cldajdjhoii: u32, } /// Obf: CHCNMFDIPFB #[derive(proto_derive::CmdID)] -#[cmdid(1132)] +#[cmdid(1191)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct FinishPlotScRsp { - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "8")] pub retcode: u32, - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "2")] pub cldajdjhoii: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Kaoahkaohfi { - #[prost(message, optional, tag = "13")] + #[prost(message, optional, tag = "15")] pub dhlpkmihdnm: ::core::option::Option, - #[prost(uint32, tag = "15")] - pub cojkeifjnek: u32, - #[prost(enumeration = "PunkLordAttackerStatus", tag = "10")] + #[prost(enumeration = "PunkLordAttackerStatus", tag = "12")] pub ekkjlaokiji: i32, - #[prost(message, optional, tag = "7")] + #[prost(message, optional, tag = "9")] pub basic_info: ::core::option::Option, + #[prost(uint32, tag = "2")] + pub cojkeifjnek: u32, } /// Obf: FAMOHHOHPNL #[derive(proto_derive::CmdID)] -#[cmdid(3295)] +#[cmdid(3220)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetPunkLordMonsterDataCsReq {} /// Obf: DPGJJNGCGPK #[derive(proto_derive::CmdID)] -#[cmdid(3232)] +#[cmdid(3291)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetPunkLordMonsterDataScRsp { - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "10")] pub retcode: u32, - #[prost(message, repeated, tag = "2")] + #[prost(message, repeated, tag = "3")] pub fijnjgfabjd: ::prost::alloc::vec::Vec, } /// Obf: EAGDPCPJOEM #[derive(proto_derive::CmdID)] -#[cmdid(3231)] +#[cmdid(3267)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct StartPunkLordRaidCsReq { - #[prost(uint32, tag = "13")] - pub monster_id: u32, - #[prost(bool, tag = "4")] - pub clommfkjpmm: bool, - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "8")] pub uid: u32, + #[prost(bool, tag = "7")] + pub clommfkjpmm: bool, + #[prost(uint32, tag = "11")] + pub monster_id: u32, } /// Obf: CDKHFIPEEIA #[derive(proto_derive::CmdID)] -#[cmdid(3240)] +#[cmdid(3239)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct StartPunkLordRaidScRsp { - #[prost(bool, tag = "14")] - pub clommfkjpmm: bool, - #[prost(message, optional, tag = "8")] - pub dpmkammiolb: ::core::option::Option, - #[prost(uint32, repeated, tag = "2")] - pub dmilcfhlihp: ::prost::alloc::vec::Vec, - #[prost(message, optional, tag = "1")] - pub scene: ::core::option::Option, - #[prost(uint32, tag = "3")] - pub retcode: u32, - #[prost(int64, tag = "7")] + #[prost(int64, tag = "2")] pub agegdmgnpdk: i64, + #[prost(uint32, tag = "11")] + pub retcode: u32, + #[prost(message, optional, tag = "9")] + pub dpmkammiolb: ::core::option::Option, + #[prost(bool, tag = "6")] + pub clommfkjpmm: bool, + #[prost(uint32, repeated, tag = "14")] + pub dmilcfhlihp: ::prost::alloc::vec::Vec, + #[prost(message, optional, tag = "8")] + pub scene: ::core::option::Option, } /// Obf: IAGCOPHLMFB #[derive(proto_derive::CmdID)] -#[cmdid(3276)] +#[cmdid(3227)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SharePunkLordMonsterCsReq { - #[prost(uint32, tag = "11")] - pub monster_id: u32, - #[prost(enumeration = "PunkLordShareType", tag = "2")] - pub share_type: i32, - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "12")] pub uid: u32, + #[prost(enumeration = "PunkLordShareType", tag = "1")] + pub share_type: i32, + #[prost(uint32, tag = "9")] + pub monster_id: u32, } /// Obf: ACFAMDBMAOI #[derive(proto_derive::CmdID)] -#[cmdid(3248)] +#[cmdid(3221)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SharePunkLordMonsterScRsp { - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "14")] pub uid: u32, - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "6")] pub monster_id: u32, - #[prost(enumeration = "PunkLordShareType", tag = "14")] - pub share_type: i32, - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "11")] pub retcode: u32, + #[prost(enumeration = "PunkLordShareType", tag = "3")] + pub share_type: i32, } /// Obf: GCCFGDENNNK #[derive(proto_derive::CmdID)] -#[cmdid(3271)] +#[cmdid(3270)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SummonPunkLordMonsterCsReq {} /// Obf: CFJJEOFIFEB #[derive(proto_derive::CmdID)] -#[cmdid(3252)] +#[cmdid(3259)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SummonPunkLordMonsterScRsp { - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "3")] pub retcode: u32, - #[prost(message, optional, tag = "11")] + #[prost(message, optional, tag = "14")] pub dpmkammiolb: ::core::option::Option, } /// Obf: GHMPPIJABNL #[derive(proto_derive::CmdID)] -#[cmdid(3216)] +#[cmdid(3205)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TakePunkLordPointRewardCsReq { - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "3")] pub level: u32, - #[prost(bool, tag = "10")] + #[prost(bool, tag = "5")] pub mdhjkkbnmcf: bool, } /// Obf: GDFCPPHAGDA #[derive(proto_derive::CmdID)] -#[cmdid(3246)] +#[cmdid(3274)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TakePunkLordPointRewardScRsp { #[prost(uint32, tag = "3")] - pub level: u32, - #[prost(message, optional, tag = "6")] - pub reward: ::core::option::Option, - #[prost(uint32, tag = "11")] pub retcode: u32, - #[prost(bool, tag = "9")] + #[prost(uint32, tag = "15")] + pub level: u32, + #[prost(bool, tag = "1")] pub mdhjkkbnmcf: bool, + #[prost(message, optional, tag = "12")] + pub reward: ::core::option::Option, } /// Obf: IKCKFGPOCIB #[derive(proto_derive::CmdID)] -#[cmdid(3283)] +#[cmdid(3273)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct PunkLordMonsterInfoScNotify { - #[prost(message, optional, tag = "1")] - pub basic_info: ::core::option::Option, - #[prost(uint32, repeated, tag = "3")] - pub dmilcfhlihp: ::prost::alloc::vec::Vec, - #[prost(message, optional, tag = "10")] + #[prost(message, optional, tag = "8")] pub dhlpkmihdnm: ::core::option::Option, - #[prost(enumeration = "PunkLordMonsterInfoNotifyReason", tag = "13")] + #[prost(enumeration = "PunkLordMonsterInfoNotifyReason", tag = "15")] pub reason: i32, + #[prost(uint32, repeated, tag = "10")] + pub dmilcfhlihp: ::prost::alloc::vec::Vec, + #[prost(message, optional, tag = "11")] + pub basic_info: ::core::option::Option, } /// Obf: HPOFEOILJCP #[derive(proto_derive::CmdID)] -#[cmdid(3260)] +#[cmdid(3298)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetPunkLordDataCsReq {} /// Obf: FNCGHMIMJJK #[derive(proto_derive::CmdID)] -#[cmdid(3202)] +#[cmdid(3285)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetPunkLordDataScRsp { - #[prost(int64, tag = "10")] + #[prost(int64, tag = "2")] pub bedjdeancoj: i64, - #[prost(uint32, tag = "13")] - pub ppnkpnbiien: u32, - #[prost(uint32, tag = "15")] - pub bdpbdgbkdoo: u32, - #[prost(uint32, tag = "12")] - pub retcode: u32, - #[prost(uint32, tag = "11")] - pub gnlmkkhaekm: u32, - #[prost(uint32, tag = "9")] - pub iadcohodgjn: u32, - #[prost(uint32, tag = "5")] - pub gbjodjcolga: u32, - #[prost(uint32, repeated, tag = "1")] + #[prost(uint32, repeated, tag = "13")] pub eahbikfallf: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "1")] + pub iadcohodgjn: u32, + #[prost(uint32, tag = "3")] + pub retcode: u32, + #[prost(uint32, tag = "6")] + pub ppnkpnbiien: u32, + #[prost(uint32, tag = "4")] + pub gbjodjcolga: u32, + #[prost(uint32, tag = "7")] + pub gnlmkkhaekm: u32, + #[prost(uint32, tag = "8")] + pub bdpbdgbkdoo: u32, } /// Obf: GEMELJPBKDL #[derive(proto_derive::CmdID)] -#[cmdid(3243)] +#[cmdid(3252)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct PunkLordRaidTimeOutScNotify { - #[prost(message, optional, tag = "2")] + #[prost(message, optional, tag = "6")] pub dpmkammiolb: ::core::option::Option, } /// Obf: MIONOBMHAJA #[derive(proto_derive::CmdID)] -#[cmdid(3258)] +#[cmdid(3287)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct PunkLordBattleResultScNotify { - #[prost(uint32, tag = "7")] - pub ncacoccjnld: u32, - #[prost(message, optional, tag = "6")] - pub dpmkammiolb: ::core::option::Option, - #[prost(uint32, tag = "11")] - pub pgofpnlapoe: u32, #[prost(message, optional, tag = "5")] + pub dpmkammiolb: ::core::option::Option, + #[prost(message, optional, tag = "4")] pub dhlpkmihdnm: ::core::option::Option, - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "12")] + pub ncacoccjnld: u32, + #[prost(uint32, tag = "9")] + pub pgofpnlapoe: u32, + #[prost(uint32, tag = "2")] pub ahjfpngdbdo: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Mdjgoockcmj { - #[prost(uint32, tag = "1")] - pub lkkjeilkpni: u32, - #[prost(uint32, tag = "9")] - pub monster_id: u32, - #[prost(uint32, tag = "10")] - pub config_id: u32, - #[prost(bool, tag = "11")] - pub ppboceckcah: bool, - #[prost(uint32, tag = "15")] - pub world_level: u32, - #[prost(int64, tag = "4")] + #[prost(int64, tag = "1")] pub sent_time: i64, + #[prost(uint32, tag = "11")] + pub lkkjeilkpni: u32, + #[prost(uint32, tag = "14")] + pub world_level: u32, + #[prost(uint32, tag = "6")] + pub monster_id: u32, + #[prost(uint32, tag = "2")] + pub config_id: u32, + #[prost(bool, tag = "7")] + pub ppboceckcah: bool, } /// Obf: IJJHFBPKBME #[derive(proto_derive::CmdID)] -#[cmdid(3221)] +#[cmdid(3209)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetKilledPunkLordMonsterDataCsReq {} /// Obf: PPFKEAJEFLA #[derive(proto_derive::CmdID)] -#[cmdid(3229)] +#[cmdid(3206)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetKilledPunkLordMonsterDataScRsp { - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "9")] pub retcode: u32, - #[prost(message, repeated, tag = "3")] - pub ddcemdgedio: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "15")] + #[prost(message, repeated, tag = "6")] pub oakkccgaekk: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "14")] + pub ddcemdgedio: ::prost::alloc::vec::Vec, } /// Obf: HMINDKKLBIG #[derive(proto_derive::CmdID)] -#[cmdid(3293)] +#[cmdid(3249)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct PunkLordMonsterKilledNotify { - #[prost(message, optional, tag = "4")] + #[prost(message, optional, tag = "3")] pub aiecobkeigb: ::core::option::Option, } /// Obf: LLDDOHBGEHB #[derive(proto_derive::CmdID)] -#[cmdid(3225)] +#[cmdid(3241)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TakeKilledPunkLordMonsterScoreCsReq { + #[prost(message, optional, tag = "8")] + pub pkcpjjnoaln: ::core::option::Option, #[prost(bool, tag = "10")] pub kfejgfnonip: bool, - #[prost(message, optional, tag = "6")] - pub pkcpjjnoaln: ::core::option::Option, } /// Obf: KOJNFJLOEDG #[derive(proto_derive::CmdID)] -#[cmdid(3214)] +#[cmdid(3284)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TakeKilledPunkLordMonsterScoreScRsp { - #[prost(message, repeated, tag = "6")] - pub jeahdcgkbbb: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "8")] - pub retcode: u32, - #[prost(bool, tag = "13")] - pub kfejgfnonip: bool, - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "3")] pub score: u32, + #[prost(message, repeated, tag = "8")] + pub jeahdcgkbbb: ::prost::alloc::vec::Vec, + #[prost(bool, tag = "4")] + pub kfejgfnonip: bool, + #[prost(uint32, tag = "13")] + pub retcode: u32, } /// Obf: BAANOGIKBGK #[derive(proto_derive::CmdID)] -#[cmdid(3284)] +#[cmdid(3278)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct PunkLordDataChangeNotify { - #[prost(uint32, tag = "12")] - pub bdpbdgbkdoo: u32, - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "4")] pub iadcohodgjn: u32, - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "1")] pub gbjodjcolga: u32, + #[prost(uint32, tag = "11")] + pub bdpbdgbkdoo: u32, } /// Obf: ILHGMAICAFE #[derive(proto_derive::CmdID)] -#[cmdid(3237)] +#[cmdid(3234)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetPunkLordBattleRecordCsReq { - #[prost(message, optional, tag = "7")] + #[prost(message, optional, tag = "4")] pub pkcpjjnoaln: ::core::option::Option, } /// Obf: JMFGECMDHBB #[derive(proto_derive::CmdID)] -#[cmdid(3230)] +#[cmdid(3245)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetPunkLordBattleRecordScRsp { #[prost(message, repeated, tag = "10")] - pub battle_record_list: ::prost::alloc::vec::Vec, - #[prost(message, optional, tag = "13")] - pub pkcpjjnoaln: ::core::option::Option, - #[prost(uint32, tag = "8")] - pub retcode: u32, - #[prost(message, repeated, tag = "14")] pub okobgjhjjoa: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "3")] + pub battle_record_list: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "12")] + pub retcode: u32, + #[prost(message, optional, tag = "11")] + pub pkcpjjnoaln: ::core::option::Option, } /// Obf: ACPKEIAOGEG #[derive(proto_derive::CmdID)] -#[cmdid(995)] +#[cmdid(920)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetQuestDataCsReq {} #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Quest { - #[prost(uint32, repeated, tag = "13")] - pub pgjngnajhpp: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "15")] - pub progress: u32, - #[prost(uint32, tag = "7")] - pub id: u32, - #[prost(int64, tag = "4")] - pub finish_time: i64, - #[prost(enumeration = "QuestStatus", tag = "2")] + #[prost(enumeration = "QuestStatus", tag = "14")] pub status: i32, + #[prost(int64, tag = "11")] + pub finish_time: i64, + #[prost(uint32, tag = "10")] + pub progress: u32, + #[prost(uint32, tag = "13")] + pub id: u32, + #[prost(uint32, repeated, tag = "1")] + pub pgjngnajhpp: ::prost::alloc::vec::Vec, } /// Obf: HIACBFNPOEO #[derive(proto_derive::CmdID)] -#[cmdid(932)] +#[cmdid(991)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetQuestDataScRsp { - #[prost(uint32, tag = "6")] - pub total_achievement_exp: u32, - #[prost(message, repeated, tag = "4")] + #[prost(message, repeated, tag = "11")] pub quest_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "14")] + pub total_achievement_exp: u32, + #[prost(uint32, tag = "8")] pub retcode: u32, } /// Obf: BBAADEDBDAB #[derive(proto_derive::CmdID)] -#[cmdid(931)] +#[cmdid(967)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TakeQuestRewardCsReq { - #[prost(uint32, repeated, tag = "10")] + #[prost(uint32, repeated, tag = "8")] pub dcgjaboniic: ::prost::alloc::vec::Vec, } /// Obf: TakeQuestRewardScRsp #[derive(proto_derive::CmdID)] -#[cmdid(940)] +#[cmdid(939)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TakeQuestRewardScRsp { - #[prost(message, optional, tag = "4")] + #[prost(message, optional, tag = "9")] pub reward: ::core::option::Option, - #[prost(uint32, repeated, tag = "3")] - pub succ_quest_id_list: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "15")] - pub quest_id_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "6")] pub retcode: u32, + #[prost(uint32, repeated, tag = "12")] + pub succ_quest_id_list: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "3")] + pub quest_id_list: ::prost::alloc::vec::Vec, } /// Obf: DCBEOECBLAC #[derive(proto_derive::CmdID)] -#[cmdid(985)] +#[cmdid(902)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TakeQuestOptionalRewardCsReq { - #[prost(uint32, tag = "7")] - pub jlfabhhnhcm: u32, #[prost(uint32, tag = "14")] pub optional_reward_id: u32, + #[prost(uint32, tag = "13")] + pub jlfabhhnhcm: u32, } /// Obf: MEFHINFDCEB #[derive(proto_derive::CmdID)] -#[cmdid(916)] +#[cmdid(905)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TakeQuestOptionalRewardScRsp { - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "7")] pub jlfabhhnhcm: u32, - #[prost(message, optional, tag = "4")] + #[prost(message, optional, tag = "10")] pub reward: ::core::option::Option, - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "13")] pub retcode: u32, } /// Obf: LAKABGFAIFM #[derive(proto_derive::CmdID)] -#[cmdid(971)] +#[cmdid(970)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetQuestRecordCsReq {} #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Epjdfbaofdf { - #[prost(uint32, tag = "4")] - pub progress: u32, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "8")] pub ijfihgcknhg: u32, + #[prost(uint32, tag = "5")] + pub progress: u32, } /// Obf: DIINMPDPANG #[derive(proto_derive::CmdID)] -#[cmdid(952)] +#[cmdid(959)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetQuestRecordScRsp { - #[prost(uint32, tag = "3")] - pub retcode: u32, - #[prost(message, repeated, tag = "4")] + #[prost(message, repeated, tag = "2")] pub obemgacmgnh: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "1")] + pub retcode: u32, } /// Obf: NHIGGMGNIAF #[derive(proto_derive::CmdID)] -#[cmdid(922)] +#[cmdid(954)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct QuestRecordScNotify { - #[prost(message, optional, tag = "11")] + #[prost(message, optional, tag = "2")] pub feaocokkgbm: ::core::option::Option, } /// Obf: IBGHBKOLKJH #[derive(proto_derive::CmdID)] -#[cmdid(956)] +#[cmdid(977)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct FinishQuestCsReq { - #[prost(uint32, tag = "9")] - pub jlfabhhnhcm: u32, - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "4")] pub prop_id: u32, - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "12")] pub group_id: u32, + #[prost(uint32, tag = "2")] + pub jlfabhhnhcm: u32, } /// Obf: MENHBLJFCHH #[derive(proto_derive::CmdID)] -#[cmdid(972)] +#[cmdid(980)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct FinishQuestScRsp { - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "8")] pub retcode: u32, } /// Obf: BMMFBCCJIGF #[derive(proto_derive::CmdID)] -#[cmdid(983)] +#[cmdid(973)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct BatchGetQuestDataCsReq { - #[prost(uint32, repeated, tag = "15")] + #[prost(uint32, repeated, tag = "4")] pub quest_list: ::prost::alloc::vec::Vec, } /// Obf: LDMCJEDOBIK #[derive(proto_derive::CmdID)] -#[cmdid(960)] +#[cmdid(998)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct BatchGetQuestDataScRsp { - #[prost(message, repeated, tag = "10")] + #[prost(message, repeated, tag = "12")] pub quest_list: ::prost::alloc::vec::Vec, #[prost(uint32, tag = "7")] pub retcode: u32, @@ -20801,336 +22196,336 @@ pub struct BatchGetQuestDataScRsp { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Fnlgplncpcl { - #[prost(message, optional, tag = "6")] - pub lineup: ::core::option::Option, - #[prost(uint32, tag = "9")] - pub world_level: u32, #[prost(uint32, tag = "1")] pub cenifnknfnp: u32, - #[prost(message, optional, tag = "13")] + #[prost(message, optional, tag = "6")] + pub lineup: ::core::option::Option, + #[prost(uint32, tag = "4")] + pub world_level: u32, + #[prost(message, optional, tag = "8")] pub ghedlclnhij: ::core::option::Option, } /// Obf: IPCKBDAGHHK #[derive(proto_derive::CmdID)] -#[cmdid(2295)] +#[cmdid(2220)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct StartRaidCsReq { - #[prost(uint32, tag = "4")] - pub cenifnknfnp: u32, - #[prost(uint32, tag = "15")] - pub jgeaegmhdoc: u32, - #[prost(uint32, tag = "9")] - pub world_level: u32, - #[prost(uint32, repeated, tag = "10")] - pub avatar_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "11")] pub prop_entity_id: u32, + #[prost(uint32, repeated, tag = "3")] + pub avatar_list: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "7")] + pub world_level: u32, + #[prost(uint32, tag = "8")] + pub cenifnknfnp: u32, + #[prost(uint32, tag = "14")] + pub jgeaegmhdoc: u32, } /// Obf: PPHBJDLLKIG #[derive(proto_derive::CmdID)] -#[cmdid(2232)] +#[cmdid(2291)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct StartRaidScRsp { - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "3")] pub retcode: u32, - #[prost(message, optional, tag = "4")] + #[prost(message, optional, tag = "15")] pub scene: ::core::option::Option, } /// Obf: FHKCKEMNMFE #[derive(proto_derive::CmdID)] -#[cmdid(2231)] +#[cmdid(2267)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct LeaveRaidCsReq { - #[prost(uint32, tag = "13")] - pub cenifnknfnp: u32, - #[prost(bool, tag = "3")] + #[prost(bool, tag = "7")] pub jgeaegmhdoc: bool, + #[prost(uint32, tag = "12")] + pub cenifnknfnp: u32, } /// Obf: IFIEMDNGKIE #[derive(proto_derive::CmdID)] -#[cmdid(2240)] +#[cmdid(2239)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct LeaveRaidScRsp { - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "3")] pub world_level: u32, - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "2")] pub retcode: u32, - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "9")] pub cenifnknfnp: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Hochoihkkdg { - #[prost(uint32, tag = "6")] - pub dlppdpbjiim: u32, - #[prost(enumeration = "Fochdfjanpc", tag = "15")] + #[prost(enumeration = "Fochdfjanpc", tag = "13")] pub mddofmcjjhh: i32, - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "11")] pub hfaljihkecn: u32, + #[prost(uint32, tag = "3")] + pub dlppdpbjiim: u32, } /// Obf: GBDKFMGFPNL #[derive(proto_derive::CmdID)] -#[cmdid(2276)] +#[cmdid(2227)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RaidInfoNotify { - #[prost(uint32, tag = "9")] - pub world_level: u32, - #[prost(enumeration = "Jldfakdkmjj", tag = "14")] + #[prost(enumeration = "Jldfakdkmjj", tag = "8")] pub status: i32, - #[prost(uint32, tag = "12")] - pub cenifnknfnp: u32, - #[prost(message, repeated, tag = "15")] - pub lheilnacnod: ::prost::alloc::vec::Vec, - #[prost(uint64, tag = "7")] + #[prost(uint32, tag = "4")] + pub world_level: u32, + #[prost(uint64, tag = "12")] pub copmfambkdn: u64, - #[prost(message, optional, tag = "11")] + #[prost(uint32, tag = "7")] + pub cenifnknfnp: u32, + #[prost(message, repeated, tag = "5")] + pub lheilnacnod: ::prost::alloc::vec::Vec, + #[prost(message, optional, tag = "1")] pub item_list: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Amdkbohcfia { - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "3")] pub cenifnknfnp: u32, - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "9")] pub stage_score: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Akdajafpdee { - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "5")] pub world_level: u32, - #[prost(uint32, tag = "11")] - pub cenifnknfnp: u32, - #[prost(uint32, repeated, tag = "4")] + #[prost(uint32, repeated, tag = "15")] pub knibaniilde: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "8")] + pub cenifnknfnp: u32, } /// Obf: MKDMNMLEFFN #[derive(proto_derive::CmdID)] -#[cmdid(2272)] +#[cmdid(2280)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetRaidInfoCsReq {} /// Obf: GetRaidInfoScRsp #[derive(proto_derive::CmdID)] -#[cmdid(2285)] +#[cmdid(2202)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetRaidInfoScRsp { - #[prost(message, repeated, tag = "6")] - pub finished_raid_info_list: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "8")] + #[prost(uint32, repeated, tag = "7")] pub challenge_taken_reward_id_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "13")] pub retcode: u32, - #[prost(message, repeated, tag = "4")] + #[prost(message, repeated, tag = "5")] + pub finished_raid_info_list: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "3")] pub challenge_raid_list: ::prost::alloc::vec::Vec, } /// Obf: AIAMPHNKFBB #[derive(proto_derive::CmdID)] -#[cmdid(2248)] +#[cmdid(2221)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetChallengeRaidInfoCsReq {} /// Obf: JHPHOLNEMDF #[derive(proto_derive::CmdID)] -#[cmdid(2271)] +#[cmdid(2270)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetChallengeRaidInfoScRsp { - #[prost(message, repeated, tag = "6")] - pub mjgffcljgfn: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "13")] - pub ioodmakjdif: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "15")] pub retcode: u32, + #[prost(uint32, repeated, tag = "12")] + pub ioodmakjdif: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "8")] + pub mjgffcljgfn: ::prost::alloc::vec::Vec, } /// Obf: COLGMGCKFEN #[derive(proto_derive::CmdID)] -#[cmdid(2252)] +#[cmdid(2259)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TakeChallengeRaidRewardCsReq { - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "14")] pub oehkjoafpba: u32, } /// Obf: EGBIALMIDFD #[derive(proto_derive::CmdID)] -#[cmdid(2222)] +#[cmdid(2254)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TakeChallengeRaidRewardScRsp { - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "7")] pub oehkjoafpba: u32, - #[prost(uint32, tag = "15")] - pub retcode: u32, - #[prost(message, optional, tag = "12")] + #[prost(message, optional, tag = "10")] pub reward: ::core::option::Option, + #[prost(uint32, tag = "11")] + pub retcode: u32, } /// Obf: NHDHPHKKJOG #[derive(proto_derive::CmdID)] -#[cmdid(2256)] +#[cmdid(2277)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ChallengeRaidNotify { - #[prost(message, optional, tag = "4")] + #[prost(message, optional, tag = "5")] pub ehmiljfijkh: ::core::option::Option, } /// Obf: GELPFLAECFD #[derive(proto_derive::CmdID)] -#[cmdid(2216)] +#[cmdid(2205)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SetClientRaidTargetCountCsReq { - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "11")] pub dmmppkmjpmm: u32, - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "5")] pub progress: u32, } /// Obf: PFFLBELDCIP #[derive(proto_derive::CmdID)] -#[cmdid(2246)] +#[cmdid(2274)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SetClientRaidTargetCountScRsp { - #[prost(uint32, tag = "4")] - pub progress: u32, - #[prost(uint32, tag = "14")] - pub retcode: u32, - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "8")] pub dmmppkmjpmm: u32, + #[prost(uint32, tag = "15")] + pub progress: u32, + #[prost(uint32, tag = "3")] + pub retcode: u32, } /// Obf: HIIACEHOBBC #[derive(proto_derive::CmdID)] -#[cmdid(2283)] +#[cmdid(2273)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetSaveRaidCsReq { - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "14")] pub cenifnknfnp: u32, - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "2")] pub world_level: u32, } /// Obf: EKHIKMNOKMD #[derive(proto_derive::CmdID)] -#[cmdid(2260)] +#[cmdid(2298)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetSaveRaidScRsp { + #[prost(uint32, tag = "6")] + pub cenifnknfnp: u32, + #[prost(uint32, tag = "8")] + pub world_level: u32, + #[prost(bool, tag = "3")] + pub jgeaegmhdoc: bool, + #[prost(uint32, tag = "1")] + pub retcode: u32, #[prost(message, repeated, tag = "5")] pub lheilnacnod: ::prost::alloc::vec::Vec, - #[prost(bool, tag = "4")] - pub jgeaegmhdoc: bool, - #[prost(uint32, tag = "13")] - pub cenifnknfnp: u32, - #[prost(uint32, tag = "12")] - pub retcode: u32, - #[prost(uint32, tag = "1")] - pub world_level: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Jkdinnedbao { - #[prost(uint32, tag = "4")] - pub cenifnknfnp: u32, + #[prost(message, repeated, tag = "1")] + pub lheilnacnod: ::prost::alloc::vec::Vec, #[prost(uint32, tag = "11")] pub world_level: u32, - #[prost(message, repeated, tag = "2")] - pub lheilnacnod: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "10")] + pub cenifnknfnp: u32, } /// Obf: AHANBGMIBAD #[derive(proto_derive::CmdID)] -#[cmdid(2202)] +#[cmdid(2285)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetAllSaveRaidCsReq {} /// Obf: FEJLDILDBBM #[derive(proto_derive::CmdID)] -#[cmdid(2239)] +#[cmdid(2238)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetAllSaveRaidScRsp { - #[prost(message, repeated, tag = "2")] + #[prost(message, repeated, tag = "1")] pub npjhicinona: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "13")] pub retcode: u32, } /// Obf: FFNAPMOAPNK #[derive(proto_derive::CmdID)] -#[cmdid(2243)] +#[cmdid(2252)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct DelSaveRaidScNotify { - #[prost(uint32, tag = "3")] - pub world_level: u32, #[prost(uint32, tag = "10")] + pub world_level: u32, + #[prost(uint32, tag = "4")] pub cenifnknfnp: u32, } /// Obf: FEODPIJLNCC #[derive(proto_derive::CmdID)] -#[cmdid(2233)] +#[cmdid(2268)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RaidKickByServerScNotify { + #[prost(uint32, tag = "3")] + pub cenifnknfnp: u32, + #[prost(enumeration = "Egkfndoopnn", tag = "4")] + pub reason: i32, + #[prost(uint32, tag = "9")] + pub world_level: u32, + #[prost(message, optional, tag = "14")] + pub scene: ::core::option::Option, #[prost(message, optional, tag = "1")] pub lineup: ::core::option::Option, - #[prost(uint32, tag = "12")] - pub cenifnknfnp: u32, - #[prost(uint32, tag = "6")] - pub world_level: u32, - #[prost(message, optional, tag = "2")] - pub scene: ::core::option::Option, - #[prost(enumeration = "Egkfndoopnn", tag = "10")] - pub reason: i32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Aconlfjejok { - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "1")] pub jjdmkhbkplm: u32, } /// Obf: AGDLAANKDJM #[derive(proto_derive::CmdID)] -#[cmdid(6954)] +#[cmdid(6958)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RaidCollectionDataCsReq {} /// Obf: CECBNFAMLAE #[derive(proto_derive::CmdID)] -#[cmdid(6953)] +#[cmdid(6949)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RaidCollectionDataScRsp { - #[prost(uint32, tag = "7")] - pub retcode: u32, - #[prost(message, repeated, tag = "3")] + #[prost(message, repeated, tag = "5")] pub challenge_list: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "11")] + pub retcode: u32, } /// Obf: CEALIDHPNJE #[derive(proto_derive::CmdID)] -#[cmdid(6948)] +#[cmdid(6950)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RaidCollectionDataScNotify { - #[prost(message, optional, tag = "14")] + #[prost(message, optional, tag = "6")] pub collection_info: ::core::option::Option, } /// Obf: CEAEPKEGAOK #[derive(proto_derive::CmdID)] -#[cmdid(6950)] +#[cmdid(6956)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RaidCollectionEnterNextRaidCsReq { - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "13")] pub jgeaegmhdoc: u32, - #[prost(uint32, tag = "5")] - pub world_level: u32, - #[prost(uint32, repeated, tag = "7")] - pub avatar_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "1")] pub cenifnknfnp: u32, + #[prost(uint32, repeated, tag = "14")] + pub avatar_list: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "6")] + pub world_level: u32, } /// Obf: JKOIJMAOLJN #[derive(proto_derive::CmdID)] -#[cmdid(6944)] +#[cmdid(6947)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RaidCollectionEnterNextRaidScRsp { - #[prost(message, optional, tag = "3")] - pub scene: ::core::option::Option, - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "4")] pub retcode: u32, + #[prost(message, optional, tag = "14")] + pub scene: ::core::option::Option, } /// Obf: ABHFJDNFCFL #[derive(proto_derive::CmdID)] -#[cmdid(8374)] +#[cmdid(8378)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetRechargeGiftInfoCsReq {} #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Oiopbdbjhie { - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "10")] pub index: u32, - #[prost(enumeration = "oiopbdbjhie::Ipkpkdcebki", tag = "11")] + #[prost(enumeration = "oiopbdbjhie::Ipkpkdcebki", tag = "2")] pub status: i32, } /// Nested message and enum types in `OIOPBDBJHIE`. @@ -21179,75 +22574,75 @@ pub mod oiopbdbjhie { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Fpnjlddamgh { - #[prost(int64, tag = "15")] + #[prost(int64, tag = "5")] pub end_time: i64, - #[prost(message, repeated, tag = "14")] - pub migfmpjbelg: ::prost::alloc::vec::Vec, - #[prost(int64, tag = "13")] - pub coifhfpegph: i64, - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "3")] pub dnajfmpcmll: u32, + #[prost(message, repeated, tag = "12")] + pub migfmpjbelg: ::prost::alloc::vec::Vec, + #[prost(int64, tag = "9")] + pub coifhfpegph: i64, } /// Obf: PILPFBJNIOG #[derive(proto_derive::CmdID)] -#[cmdid(8373)] +#[cmdid(8369)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetRechargeGiftInfoScRsp { - #[prost(uint32, tag = "13")] - pub retcode: u32, - #[prost(message, repeated, tag = "11")] + #[prost(message, repeated, tag = "12")] pub mmglcjmggih: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "11")] + pub retcode: u32, } /// Obf: HADFKEGGMCA #[derive(proto_derive::CmdID)] -#[cmdid(8368)] +#[cmdid(8370)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TakeRechargeGiftRewardCsReq { - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "11")] pub dnajfmpcmll: u32, } /// Obf: HDAPAPFIGFP #[derive(proto_derive::CmdID)] -#[cmdid(8370)] +#[cmdid(8376)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TakeRechargeGiftRewardScRsp { - #[prost(uint32, tag = "7")] - pub retcode: u32, - #[prost(message, optional, tag = "1")] - pub hnkgcndocak: ::core::option::Option, - #[prost(message, optional, tag = "3")] + #[prost(message, optional, tag = "12")] pub reward: ::core::option::Option, + #[prost(uint32, tag = "3")] + pub retcode: u32, + #[prost(message, optional, tag = "7")] + pub hnkgcndocak: ::core::option::Option, } /// Obf: NJOOEGFJKIH #[derive(proto_derive::CmdID)] -#[cmdid(8364)] +#[cmdid(8367)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetRechargeBenefitInfoCsReq {} #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Jmhojkkgnif { - #[prost(uint32, tag = "4")] - pub id: u32, - #[prost(uint32, repeated, tag = "14")] + #[prost(uint32, repeated, tag = "4")] pub jclobiapkeg: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "2")] pub progress: u32, - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "15")] + pub id: u32, + #[prost(uint32, tag = "14")] pub module_id: u32, } /// Obf: NIAKKHJBAIH #[derive(proto_derive::CmdID)] -#[cmdid(8362)] +#[cmdid(8371)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetRechargeBenefitInfoScRsp { - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "8")] pub retcode: u32, - #[prost(message, repeated, tag = "14")] + #[prost(message, repeated, tag = "1")] pub ehndmlffmhi: ::prost::alloc::vec::Vec, } /// Obf: CCEDDHEGMEG #[derive(proto_derive::CmdID)] -#[cmdid(8380)] +#[cmdid(8365)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SyncRechargeBenefitInfoScNotify { #[prost(message, optional, tag = "9")] @@ -21255,27 +22650,27 @@ pub struct SyncRechargeBenefitInfoScNotify { } /// Obf: AADIKBDAIMM #[derive(proto_derive::CmdID)] -#[cmdid(8369)] +#[cmdid(8363)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TakeRechargeBenefitRewardCsReq { - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "9")] pub id: u32, } /// Obf: JKLJIEBJLMI #[derive(proto_derive::CmdID)] -#[cmdid(8367)] +#[cmdid(8374)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TakeRechargeBenefitRewardScRsp { - #[prost(message, optional, tag = "10")] + #[prost(message, optional, tag = "2")] pub reward: ::core::option::Option, - #[prost(uint32, tag = "13")] - pub retcode: u32, - #[prost(message, optional, tag = "14")] + #[prost(message, optional, tag = "10")] pub amefppfcfji: ::core::option::Option, + #[prost(uint32, tag = "5")] + pub retcode: u32, } /// Obf: NFJMMFNGLIJ #[derive(proto_derive::CmdID)] -#[cmdid(2436)] +#[cmdid(2411)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetChallengeRecommendLineupListCsReq { #[prost(uint32, tag = "10")] @@ -21284,93 +22679,93 @@ pub struct GetChallengeRecommendLineupListCsReq { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Ahkggggibif { - #[prost(uint32, tag = "7")] - pub dcholkbfbgi: u32, - #[prost(uint32, repeated, tag = "13")] - pub first_lineup_ids: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "5")] - pub second_lineup_ids: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "2")] pub ceifdikpdam: u32, + #[prost(uint32, repeated, tag = "4")] + pub first_lineup_ids: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "11")] + pub second_lineup_ids: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "1")] + pub dcholkbfbgi: u32, } /// Obf: AJAENMGKGLI #[derive(proto_derive::CmdID)] -#[cmdid(2417)] +#[cmdid(2437)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetChallengeRecommendLineupListScRsp { - #[prost(message, repeated, tag = "4")] - pub jaejjmjpmnc: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "10")] - pub retcode: u32, - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "11")] pub challenge_id: u32, + #[prost(uint32, tag = "4")] + pub retcode: u32, + #[prost(message, repeated, tag = "1")] + pub jaejjmjpmnc: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RecomendedEquipmentInfo { #[prost(uint32, tag = "2")] - pub mdmgkhlhiin: u32, - #[prost(uint32, tag = "13")] pub lgiiahidlmg: u32, + #[prost(uint32, tag = "8")] + pub mdmgkhlhiin: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RecomendedEquipmentData { - #[prost(message, repeated, tag = "10")] + #[prost(message, repeated, tag = "6")] pub equipment_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RecomendedRelicInfo { - #[prost(uint32, tag = "5")] - pub fikkgbibcjk: u32, #[prost(uint32, tag = "13")] - pub pdmgjkodfop: u32, - #[prost(uint32, tag = "14")] + pub fikkgbibcjk: u32, + #[prost(uint32, tag = "7")] pub ehceepmbddi: u32, + #[prost(uint32, tag = "1")] + pub pdmgjkodfop: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RecomendedRelicData { - #[prost(message, repeated, tag = "4")] + #[prost(message, repeated, tag = "2")] pub cdhdmhlocpo: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Cagflkclgch { - #[prost(uint32, repeated, tag = "7")] + #[prost(uint32, repeated, tag = "15")] pub dbgnciomiep: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Gpcpgbhofcf { - #[prost(message, repeated, tag = "15")] + #[prost(message, repeated, tag = "5")] pub jaejjmjpmnc: ::prost::alloc::vec::Vec, } /// Obf: LGPNOIDOJLE #[derive(proto_derive::CmdID)] -#[cmdid(2427)] +#[cmdid(2417)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetBigDataRecommendCsReq { - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "8")] pub recommended_avatar_id: u32, - #[prost(enumeration = "BigDataRecommendType", tag = "4")] + #[prost(enumeration = "BigDataRecommendType", tag = "13")] pub big_data_recommend_type: i32, } /// Obf: BLANKJCLNPE #[derive(proto_derive::CmdID)] -#[cmdid(2415)] +#[cmdid(2439)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetBigDataRecommendScRsp { - #[prost(bool, tag = "8")] - pub ogegkokgppj: bool, - #[prost(enumeration = "BigDataRecommendType", tag = "1")] + #[prost(enumeration = "BigDataRecommendType", tag = "6")] pub big_data_recommend_type: i32, - #[prost(uint32, tag = "13")] - pub recommended_avatar_id: u32, - #[prost(uint32, tag = "11")] + #[prost(bool, tag = "4")] + pub ogegkokgppj: bool, + #[prost(uint32, tag = "2")] pub retcode: u32, - #[prost(oneof = "get_big_data_recommend_sc_rsp::RecommendType", tags = "4, 10, 12")] + #[prost(uint32, tag = "5")] + pub recommended_avatar_id: u32, + #[prost(oneof = "get_big_data_recommend_sc_rsp::RecommendType", tags = "14, 7, 3")] pub recommend_type: ::core::option::Option< get_big_data_recommend_sc_rsp::RecommendType, >, @@ -21380,44 +22775,44 @@ pub mod get_big_data_recommend_sc_rsp { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] pub enum RecommendType { - #[prost(message, tag = "4")] + #[prost(message, tag = "14")] RecomendedEquipmentData(super::RecomendedEquipmentData), - #[prost(message, tag = "10")] + #[prost(message, tag = "7")] RecomendedRelicData(super::RecomendedRelicData), - #[prost(message, tag = "12")] + #[prost(message, tag = "3")] Kghlfceobkk(super::Gpcpgbhofcf), } } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RecomendedAvatarInfo { - #[prost(uint32, repeated, tag = "5")] + #[prost(uint32, repeated, tag = "4")] pub avatar_id_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "10")] pub relic_set_id: u32, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "9")] pub recommend_avatar_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct BigDataRecommendRelicAvatar { - #[prost(message, repeated, tag = "12")] + #[prost(message, repeated, tag = "5")] pub recommended_avatar_info_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Nkghhafanhn { #[prost(uint32, tag = "15")] - pub kicobnpckae: u32, - #[prost(uint32, tag = "2")] - pub iikgcjfjadf: u32, - #[prost(uint32, tag = "7")] pub fleefjlnlch: u32, + #[prost(uint32, tag = "6")] + pub iikgcjfjadf: u32, + #[prost(uint32, tag = "5")] + pub kicobnpckae: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Ghledkfiijh { - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "11")] pub jicdflimhhd: u32, #[prost(uint32, tag = "9")] pub kicobnpckae: u32, @@ -21425,45 +22820,45 @@ pub struct Ghledkfiijh { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RecommendedRelicInfo { - #[prost(message, repeated, tag = "8")] - pub kkcmfgmhimo: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "1")] + #[prost(message, repeated, tag = "11")] pub fbbajbinglb: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "7")] - pub avatar_id: u32, - #[prost(message, repeated, tag = "6")] - pub pdbhnhpcnnj: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "15")] - pub mpmfahlkeob: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "12")] + #[prost(message, repeated, tag = "5")] pub nobonccpeng: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "3")] + #[prost(message, repeated, tag = "1")] + pub mpmfahlkeob: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "14")] + pub avatar_id: u32, + #[prost(message, repeated, tag = "8")] + pub pdbhnhpcnnj: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "4")] pub lgejjajpedk: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "7")] + pub kkcmfgmhimo: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct BigDataRecommendAvatarRelic { - #[prost(message, repeated, tag = "14")] + #[prost(message, repeated, tag = "2")] pub recomended_relic_info_list: ::prost::alloc::vec::Vec, } /// Obf: DILCJFEHKGC #[derive(proto_derive::CmdID)] -#[cmdid(2443)] +#[cmdid(2412)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetBigDataAllRecommendCsReq { - #[prost(enumeration = "BigDataRecommendType", tag = "2")] + #[prost(enumeration = "BigDataRecommendType", tag = "3")] pub big_data_recommend_type: i32, } /// Obf: BCBHNEHMIKN #[derive(proto_derive::CmdID)] -#[cmdid(2409)] +#[cmdid(2410)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetBigDataAllRecommendScRsp { - #[prost(enumeration = "BigDataRecommendType", tag = "2")] - pub big_data_recommend_type: i32, - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "9")] pub retcode: u32, - #[prost(oneof = "get_big_data_all_recommend_sc_rsp::RecommendType", tags = "14, 13")] + #[prost(enumeration = "BigDataRecommendType", tag = "8")] + pub big_data_recommend_type: i32, + #[prost(oneof = "get_big_data_all_recommend_sc_rsp::RecommendType", tags = "1, 15")] pub recommend_type: ::core::option::Option< get_big_data_all_recommend_sc_rsp::RecommendType, >, @@ -21473,491 +22868,491 @@ pub mod get_big_data_all_recommend_sc_rsp { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] pub enum RecommendType { - #[prost(message, tag = "14")] + #[prost(message, tag = "1")] RelicAvatar(super::BigDataRecommendRelicAvatar), - #[prost(message, tag = "13")] + #[prost(message, tag = "15")] AvatarRelic(super::BigDataRecommendAvatarRelic), } } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Ejbiokmolaf { - #[prost(uint32, repeated, tag = "1")] + #[prost(uint32, repeated, tag = "13")] pub ffbeebkogpn: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Knchlmgiljc { - #[prost(map = "uint32, message", tag = "13")] + #[prost(map = "uint32, message", tag = "1")] pub mbgijnjfhge: ::std::collections::HashMap, - #[prost(uint32, tag = "5")] - pub module_id: u32, - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "14")] pub nopdkldekkf: u32, + #[prost(uint32, tag = "12")] + pub module_id: u32, } /// Obf: ONAPBICFOKG #[derive(proto_derive::CmdID)] -#[cmdid(5995)] +#[cmdid(5949)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetAllRedDotDataCsReq {} /// Obf: KJIPKOMMDII #[derive(proto_derive::CmdID)] -#[cmdid(5932)] +#[cmdid(5927)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetAllRedDotDataScRsp { - #[prost(uint32, tag = "2")] - pub retcode: u32, - #[prost(message, repeated, tag = "11")] + #[prost(message, repeated, tag = "12")] pub iagibdaichi: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "13")] + pub retcode: u32, } /// Obf: HNPBFPOOJCO #[derive(proto_derive::CmdID)] -#[cmdid(5931)] +#[cmdid(5918)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct UpdateRedDotDataCsReq { - #[prost(uint32, tag = "4")] - pub module_id: u32, - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "10")] + pub nopdkldekkf: u32, + #[prost(uint32, tag = "12")] pub group_id: u32, - #[prost(enumeration = "Ojljhfnfdkp", tag = "5")] + #[prost(enumeration = "Ojljhfnfdkp", tag = "7")] pub honemgcfbgi: i32, #[prost(uint32, repeated, tag = "3")] pub param_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "2")] - pub nopdkldekkf: u32, + #[prost(uint32, tag = "8")] + pub module_id: u32, } /// Obf: BGEJFELHFNL #[derive(proto_derive::CmdID)] -#[cmdid(5940)] +#[cmdid(5936)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct UpdateRedDotDataScRsp { - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "6")] pub group_id: u32, - #[prost(uint32, tag = "4")] - pub nopdkldekkf: u32, - #[prost(uint32, tag = "2")] - pub retcode: u32, #[prost(uint32, tag = "9")] + pub nopdkldekkf: u32, + #[prost(uint32, tag = "10")] + pub retcode: u32, + #[prost(uint32, tag = "1")] pub module_id: u32, } /// Obf: CMMBDGDNHGC #[derive(proto_derive::CmdID)] -#[cmdid(5976)] +#[cmdid(5911)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetSingleRedDotParamGroupCsReq { - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "13")] pub nopdkldekkf: u32, - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "8")] pub module_id: u32, - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "5")] pub group_id: u32, } /// Obf: DHNIBENKEHJ #[derive(proto_derive::CmdID)] -#[cmdid(5948)] +#[cmdid(5937)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetSingleRedDotParamGroupScRsp { - #[prost(message, optional, tag = "6")] - pub chpjjklgokm: ::core::option::Option, - #[prost(uint32, tag = "3")] - pub nopdkldekkf: u32, - #[prost(uint32, tag = "15")] - pub retcode: u32, - #[prost(uint32, tag = "9")] - pub group_id: u32, - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "7")] pub module_id: u32, + #[prost(uint32, tag = "15")] + pub nopdkldekkf: u32, + #[prost(uint32, tag = "9")] + pub retcode: u32, + #[prost(message, optional, tag = "12")] + pub chpjjklgokm: ::core::option::Option, + #[prost(uint32, tag = "13")] + pub group_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RelicSmartWearPlanData { - #[prost(uint32, repeated, tag = "7")] + #[prost(uint32, repeated, tag = "15")] pub egflalhojkf: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "3")] + #[prost(uint32, repeated, tag = "13")] + pub fahcacdfeih: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "6")] pub unique_id: u32, #[prost(uint32, tag = "1")] pub avatar_id: u32, - #[prost(uint32, repeated, tag = "2")] - pub fahcacdfeih: ::prost::alloc::vec::Vec, } /// Obf: EHJMBNKJNKO #[derive(proto_derive::CmdID)] -#[cmdid(8264)] +#[cmdid(8268)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RelicSmartWearGetPlanCsReq { - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "9")] pub avatar_id: u32, } /// Obf: IIIOAPKPEEK #[derive(proto_derive::CmdID)] -#[cmdid(8263)] +#[cmdid(8259)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RelicSmartWearGetPlanScRsp { - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "6")] pub avatar_id: u32, - #[prost(message, repeated, tag = "10")] - pub plan_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "1")] pub retcode: u32, + #[prost(message, repeated, tag = "8")] + pub plan_list: ::prost::alloc::vec::Vec, } /// Obf: IBNONNCJIFK #[derive(proto_derive::CmdID)] -#[cmdid(8258)] +#[cmdid(8260)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RelicSmartWearAddPlanCsReq { - #[prost(message, optional, tag = "4")] + #[prost(message, optional, tag = "1")] pub eilidmcocho: ::core::option::Option, } /// Obf: OGANNCNENBP #[derive(proto_derive::CmdID)] -#[cmdid(8260)] +#[cmdid(8266)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RelicSmartWearAddPlanScRsp { - #[prost(uint32, tag = "2")] - pub retcode: u32, - #[prost(message, optional, tag = "3")] + #[prost(message, optional, tag = "14")] pub eilidmcocho: ::core::option::Option, + #[prost(uint32, tag = "9")] + pub retcode: u32, } /// Obf: CLEFDPIDONA #[derive(proto_derive::CmdID)] -#[cmdid(8254)] +#[cmdid(8257)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RelicSmartWearUpdatePlanCsReq { - #[prost(message, optional, tag = "15")] + #[prost(message, optional, tag = "12")] pub eilidmcocho: ::core::option::Option, } /// Obf: NLJLABKKHON #[derive(proto_derive::CmdID)] -#[cmdid(8252)] +#[cmdid(8261)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RelicSmartWearUpdatePlanScRsp { - #[prost(uint32, tag = "3")] - pub retcode: u32, - #[prost(message, optional, tag = "10")] + #[prost(message, optional, tag = "6")] pub eilidmcocho: ::core::option::Option, + #[prost(uint32, tag = "14")] + pub retcode: u32, } /// Obf: MPLPIGALHGK #[derive(proto_derive::CmdID)] -#[cmdid(8270)] +#[cmdid(8255)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RelicSmartWearDeletePlanCsReq { - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "9")] pub unique_id: u32, } /// Obf: EGONFNCEMOL #[derive(proto_derive::CmdID)] -#[cmdid(8259)] +#[cmdid(8253)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RelicSmartWearDeletePlanScRsp { - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "10")] pub unique_id: u32, - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "1")] pub retcode: u32, } /// Obf: CCFLJFFBHFE #[derive(proto_derive::CmdID)] -#[cmdid(8257)] +#[cmdid(8264)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RelicSmartWearPinRelicCsReq { - #[prost(bool, tag = "9")] + #[prost(bool, tag = "11")] pub baoonjdcfkd: bool, #[prost(uint32, tag = "15")] pub slot: u32, - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "7")] pub avatar_id: u32, } /// Obf: AEHPKJOACHB #[derive(proto_derive::CmdID)] -#[cmdid(8253)] +#[cmdid(8269)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RelicSmartWearPinRelicScRsp { - #[prost(bool, tag = "13")] + #[prost(bool, tag = "2")] pub baoonjdcfkd: bool, + #[prost(uint32, tag = "13")] + pub slot: u32, + #[prost(uint32, tag = "12")] + pub avatar_id: u32, #[prost(uint32, tag = "1")] pub retcode: u32, - #[prost(uint32, tag = "15")] - pub avatar_id: u32, - #[prost(uint32, tag = "2")] - pub slot: u32, } /// Obf: NMOGJDPNJEJ #[derive(proto_derive::CmdID)] -#[cmdid(8255)] +#[cmdid(8262)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RelicSmartWearGetPinRelicCsReq { - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "5")] pub avatar_id: u32, } /// Obf: PJLOLBEHOEB #[derive(proto_derive::CmdID)] -#[cmdid(8251)] +#[cmdid(8256)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RelicSmartWearGetPinRelicScRsp { - #[prost(uint32, tag = "8")] - pub retcode: u32, - #[prost(uint32, repeated, tag = "9")] + #[prost(uint32, repeated, tag = "3")] pub eiihpmpfklg: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "4")] + pub retcode: u32, + #[prost(uint32, tag = "5")] pub avatar_id: u32, } /// Obf: NFHPFCBBGIP #[derive(proto_derive::CmdID)] -#[cmdid(8261)] +#[cmdid(8263)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RelicSmartWearUpdatePinRelicScNotify { - #[prost(uint32, tag = "6")] - pub avatar_id: u32, - #[prost(uint32, repeated, tag = "7")] + #[prost(uint32, repeated, tag = "15")] pub eiihpmpfklg: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "1")] + pub avatar_id: u32, } /// Obf: GCIMJNNOAAF #[derive(proto_derive::CmdID)] -#[cmdid(3595)] +#[cmdid(3520)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetReplayTokenCsReq { - #[prost(uint32, tag = "14")] - pub cmpbkbbkaoa: u32, - #[prost(string, tag = "6")] + #[prost(string, tag = "15")] pub kihbigpfkkn: ::prost::alloc::string::String, - #[prost(uint32, tag = "3")] - pub afehlmfibmd: u32, - #[prost(string, tag = "13")] - pub bbemidhmnlm: ::prost::alloc::string::String, - #[prost(enumeration = "ReplayType", tag = "1")] - pub replay_type: i32, - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "8")] pub stage_id: u32, + #[prost(enumeration = "ReplayType", tag = "5")] + pub replay_type: i32, + #[prost(uint32, tag = "1")] + pub afehlmfibmd: u32, + #[prost(uint32, tag = "2")] + pub cmpbkbbkaoa: u32, + #[prost(string, tag = "10")] + pub bbemidhmnlm: ::prost::alloc::string::String, } /// Obf: LPEKBEHCBBL #[derive(proto_derive::CmdID)] -#[cmdid(3532)] +#[cmdid(3591)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetReplayTokenScRsp { - #[prost(uint32, tag = "5")] - pub retcode: u32, - #[prost(uint32, tag = "11")] - pub stage_id: u32, - #[prost(enumeration = "ReplayType", tag = "6")] - pub replay_type: i32, - #[prost(string, tag = "4")] - pub token: ::prost::alloc::string::String, - #[prost(string, tag = "12")] + #[prost(string, tag = "6")] pub kihbigpfkkn: ::prost::alloc::string::String, + #[prost(uint32, tag = "15")] + pub stage_id: u32, + #[prost(enumeration = "ReplayType", tag = "14")] + pub replay_type: i32, + #[prost(uint32, tag = "12")] + pub retcode: u32, + #[prost(string, tag = "5")] + pub token: ::prost::alloc::string::String, } /// Obf: JEAHCDLLLPG #[derive(proto_derive::CmdID)] -#[cmdid(3531)] +#[cmdid(3567)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetPlayerReplayInfoCsReq {} /// Obf: AAOOMDCFCBN #[derive(proto_derive::CmdID)] -#[cmdid(3540)] +#[cmdid(3539)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetPlayerReplayInfoScRsp { - #[prost(message, repeated, tag = "8")] + #[prost(message, repeated, tag = "7")] pub kgcfealanko: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "12")] pub retcode: u32, } /// Obf: JEKBCEFEKKK #[derive(proto_derive::CmdID)] -#[cmdid(3495)] +#[cmdid(3420)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetRndOptionCsReq { - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "6")] pub id: u32, } /// Obf: LJIINOPGEDI #[derive(proto_derive::CmdID)] -#[cmdid(3432)] +#[cmdid(3491)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetRndOptionScRsp { - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "3")] pub retcode: u32, - #[prost(uint32, repeated, tag = "7")] + #[prost(uint32, repeated, tag = "14")] pub eegeggbdhdg: ::prost::alloc::vec::Vec, } /// Obf: BGIKBJMOKOF #[derive(proto_derive::CmdID)] -#[cmdid(3431)] +#[cmdid(3467)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct DailyFirstMeetPamCsReq {} /// Obf: HFFMNIJGANJ #[derive(proto_derive::CmdID)] -#[cmdid(3440)] +#[cmdid(3439)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct DailyFirstMeetPamScRsp { - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "10")] pub retcode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Mkeelpfdclm { - #[prost(uint32, tag = "10")] - pub buff_id: u32, - #[prost(uint32, tag = "5")] +pub struct RogueBuff { + #[prost(uint32, tag = "14")] pub level: u32, + #[prost(uint32, tag = "3")] + pub buff_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Oobcejfehmk { #[prost(message, repeated, tag = "2")] - pub buff_list: ::prost::alloc::vec::Vec, + pub buff_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Gladgjakplc { - #[prost(enumeration = "Ilnpbecoepl", tag = "10")] - pub hnlfgdmcjdf: i32, - #[prost(uint32, tag = "13")] - pub imimgfaaghm: u32, - #[prost(uint32, tag = "5")] - pub site_id: u32, - #[prost(enumeration = "Ilnpbecoepl", tag = "12")] +pub struct RogueRoom { + #[prost(enumeration = "Ilnpbecoepl", tag = "4")] pub beeeboiojif: i32, - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "9")] + pub site_id: u32, + #[prost(enumeration = "Ilnpbecoepl", tag = "2")] + pub hnlfgdmcjdf: i32, + #[prost(uint32, tag = "15")] + pub imimgfaaghm: u32, + #[prost(uint32, tag = "12")] pub room_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Ijmgmkchhef { #[prost(uint32, tag = "6")] - pub area_id: u32, - #[prost(message, repeated, tag = "2")] - pub jdcliamkdhf: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "9")] pub cur_site_id: u32, - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "5")] pub cikibkaabim: u32, - #[prost(uint32, tag = "10")] + #[prost(message, repeated, tag = "4")] + pub jdcliamkdhf: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "13")] pub map_id: u32, + #[prost(uint32, tag = "12")] + pub area_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Bkaaebjkjkh { - #[prost(uint32, tag = "4")] - pub area_id: u32, - #[prost(uint32, tag = "9")] - pub gmpiiaeggek: u32, - #[prost(enumeration = "Egpimdadfdi", tag = "13")] + #[prost(enumeration = "RogueStatus", tag = "10")] pub mkegbhjljnh: i32, - #[prost(enumeration = "Jdakamigkhf", tag = "7")] - pub nookgajmfji: i32, - #[prost(bool, tag = "6")] + #[prost(uint32, tag = "6")] + pub area_id: u32, + #[prost(bool, tag = "2")] pub fjoilohphlc: bool, - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "8")] + pub gmpiiaeggek: u32, + #[prost(uint32, tag = "3")] pub map_id: u32, + #[prost(enumeration = "Jdakamigkhf", tag = "12")] + pub nookgajmfji: i32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Omogaieofah { - #[prost(uint32, tag = "11")] - pub igchbpakbcb: u32, - #[prost(uint32, repeated, tag = "9")] - pub pdihilclenm: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "7")] - pub lhmidpambpd: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "3")] - pub bheidppfcka: u32, - #[prost(uint32, tag = "1")] - pub djfckfemgoj: u32, - #[prost(uint32, tag = "14")] - pub ipodnbljpol: u32, - #[prost(bool, tag = "4")] - pub ehpmcgoelgb: bool, - #[prost(enumeration = "Nniohhmjghg", tag = "8")] + #[prost(enumeration = "Nniohhmjghg", tag = "4")] pub hhmabjdimgm: i32, - #[prost(uint32, tag = "6")] - pub ekflpnlapdf: u32, - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "5")] pub pdapeheambm: u32, - #[prost(message, optional, tag = "10")] + #[prost(uint32, tag = "8")] + pub ckkekmjmabc: u32, + #[prost(uint32, tag = "9")] + pub ekflpnlapdf: u32, + #[prost(uint32, repeated, tag = "6")] + pub pdihilclenm: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "14")] + pub igchbpakbcb: u32, + #[prost(bool, tag = "11")] + pub ehpmcgoelgb: bool, + #[prost(uint32, tag = "10")] + pub ipodnbljpol: u32, + #[prost(uint32, tag = "12")] + pub djfckfemgoj: u32, + #[prost(message, repeated, tag = "3")] + pub lhmidpambpd: ::prost::alloc::vec::Vec, + #[prost(message, optional, tag = "13")] pub fpoelpfcnbi: ::core::option::Option, + #[prost(uint32, tag = "7")] + pub bheidppfcka: u32, #[prost(uint32, tag = "2")] pub cmogblhafhn: u32, - #[prost(uint32, tag = "12")] - pub ckkekmjmabc: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Kfejfbbgiad { - #[prost(message, repeated, tag = "13")] - pub kmpmdldhabn: ::prost::alloc::vec::Vec, - #[prost(message, optional, tag = "3")] - pub noenhhilnah: ::core::option::Option, + #[prost(message, repeated, tag = "11")] + pub kmpmdldhabn: ::prost::alloc::vec::Vec, + #[prost(message, optional, tag = "13")] + pub noenhhilnah: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Igjenciklof { - #[prost(uint32, tag = "14")] + #[prost(message, repeated, tag = "14")] + pub ihgmpjnnmki: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "9")] + pub clplefhhafb: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "7")] pub bilbohbdbpn: u32, - #[prost(message, repeated, tag = "10")] - pub ihgmpjnnmki: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "3")] - pub clplefhhafb: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Gdiilljbdcf { - #[prost(message, optional, tag = "3")] - pub item_cost_list: ::core::option::Option, - #[prost(float, tag = "10")] - pub famcmagfkcl: f32, - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "12")] pub buff_id: u32, + #[prost(float, tag = "9")] + pub famcmagfkcl: f32, + #[prost(message, optional, tag = "13")] + pub item_cost_list: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RogueBuffEnhanceInfoList { - #[prost(message, repeated, tag = "2")] + #[prost(message, repeated, tag = "6")] pub dakmmpkbmko: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Paimogcigij { - #[prost(uint32, tag = "4")] - pub blfaanhjpad: u32, - #[prost(uint32, tag = "10")] - pub deidchamdba: u32, #[prost(uint32, tag = "9")] - pub cur_times: u32, - #[prost(uint32, tag = "14")] pub khncedgfpgl: u32, - #[prost(map = "uint32, uint32", tag = "3")] + #[prost(map = "uint32, uint32", tag = "4")] pub gmafejejbho: ::std::collections::HashMap, + #[prost(uint32, tag = "10")] + pub blfaanhjpad: u32, + #[prost(uint32, tag = "7")] + pub deidchamdba: u32, + #[prost(uint32, tag = "12")] + pub cur_times: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Olfpckagkak { - #[prost(message, repeated, tag = "10")] + #[prost(message, repeated, tag = "15")] pub ckgfonmaeko: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Bfljdbhbmnp { - #[prost(message, optional, tag = "8")] - pub eeppkmpajoh: ::core::option::Option, - #[prost(uint32, repeated, tag = "10")] + #[prost(uint32, repeated, tag = "15")] pub jacighhgcgb: ::prost::alloc::vec::Vec, + #[prost(message, optional, tag = "3")] + pub eeppkmpajoh: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Keionffflco { - #[prost(uint32, repeated, tag = "6")] + #[prost(uint32, repeated, tag = "7")] pub cmaggnfdkag: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Flecflldnfp { - #[prost(uint32, repeated, tag = "5")] + #[prost(uint32, repeated, tag = "4")] pub imoiceebdco: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Ngffceicacd { - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "1")] pub ebnpocidpke: u32, - #[prost(oneof = "ngffceicacd::Ccpfabancnn", tags = "3, 5")] + #[prost(oneof = "ngffceicacd::Ccpfabancnn", tags = "6, 7")] pub ccpfabancnn: ::core::option::Option, } /// Nested message and enum types in `NGFFCEICACD`. @@ -21965,114 +23360,114 @@ pub mod ngffceicacd { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] pub enum Ccpfabancnn { - #[prost(message, tag = "3")] + #[prost(message, tag = "6")] Jdijkegcibp(super::ItemList), - #[prost(message, tag = "5")] + #[prost(message, tag = "7")] Cndgjjljdof(super::Oobcejfehmk), } } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Ejjglgpedee { - #[prost(message, optional, tag = "12")] + #[prost(message, optional, tag = "6")] pub gficflciejj: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Jheeloagmig { - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "14")] pub nidflbkpoeb: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Pbekdhclbfb { +pub struct RogueVirtualItemInfo { + #[prost(uint32, tag = "10")] + pub hgblomelble: u32, #[prost(uint32, tag = "15")] pub gfdbgcolkcp: u32, - #[prost(uint32, tag = "3")] - pub ipodnbljpol: u32, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "8")] pub jkjmcfagocf: u32, - #[prost(uint32, tag = "7")] - pub hgblomelble: u32, + #[prost(uint32, tag = "4")] + pub ipodnbljpol: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RogueInfo { - #[prost(message, optional, tag = "1069")] - pub omcbcgchlgn: ::core::option::Option, - #[prost(message, optional, tag = "1649")] + #[prost(message, optional, tag = "355")] pub lagbgldlgcb: ::core::option::Option, + #[prost(message, optional, tag = "1210")] + pub omcbcgchlgn: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Liikcgncbbf { + #[prost(message, optional, tag = "11")] + pub iblembncgpm: ::core::option::Option, + #[prost(message, optional, tag = "7")] + pub fejgmnnfflg: ::core::option::Option, #[prost(message, optional, tag = "13")] - pub ofolhkcnlba: ::core::option::Option, - #[prost(message, optional, tag = "12")] pub chmhpcngfao: ::core::option::Option, #[prost(message, optional, tag = "4")] + pub rogue_virtual_item_info: ::core::option::Option, + #[prost(message, optional, tag = "10")] pub pfeaniahfpc: ::core::option::Option, - #[prost(message, optional, tag = "8")] - pub fejgmnnfflg: ::core::option::Option, - #[prost(message, optional, tag = "7")] - pub iblembncgpm: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Dknmkfbobjf { - #[prost(message, optional, tag = "3")] - pub embagmmhipa: ::core::option::Option, - #[prost(message, optional, tag = "4")] - pub map_info: ::core::option::Option, - #[prost(message, optional, tag = "1")] - pub chmhpcngfao: ::core::option::Option, - #[prost(message, optional, tag = "6")] - pub eeppkmpajoh: ::core::option::Option, - #[prost(enumeration = "Egpimdadfdi", tag = "13")] - pub status: i32, - #[prost(bool, tag = "10")] - pub gjboljkmgge: bool, - #[prost(message, optional, tag = "11")] - pub lgopnbhhhbg: ::core::option::Option, #[prost(message, optional, tag = "9")] - pub aabchfbkpeg: ::core::option::Option, - #[prost(message, optional, tag = "15")] - pub kndmeilhkej: ::core::option::Option, - #[prost(message, optional, tag = "5")] pub cmbhklpppad: ::core::option::Option, + #[prost(message, optional, tag = "15")] + pub chmhpcngfao: ::core::option::Option, + #[prost(message, optional, tag = "11")] + pub aabchfbkpeg: ::core::option::Option, + #[prost(message, optional, tag = "2")] + pub lgopnbhhhbg: ::core::option::Option, + #[prost(message, optional, tag = "13")] + pub kndmeilhkej: ::core::option::Option, + #[prost(bool, tag = "3")] + pub gjboljkmgge: bool, + #[prost(message, optional, tag = "10")] + pub map_info: ::core::option::Option, + #[prost(message, optional, tag = "4")] + pub eeppkmpajoh: ::core::option::Option, + #[prost(enumeration = "RogueStatus", tag = "5")] + pub status: i32, + #[prost(message, optional, tag = "7")] + pub embagmmhipa: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Bfkmdfgcncd { - #[prost(int64, tag = "15")] - pub begin_time: i64, - #[prost(int64, tag = "3")] + #[prost(int64, tag = "9")] pub end_time: i64, - #[prost(uint32, tag = "9")] + #[prost(int64, tag = "12")] + pub begin_time: i64, + #[prost(uint32, tag = "4")] pub ahanjlehcga: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Mmchophfmah { - #[prost(message, repeated, tag = "5")] + #[prost(message, repeated, tag = "2")] pub jmmnaipoefo: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Icildhnfjfg { - #[prost(bool, tag = "15")] - pub aoelkjeegkg: bool, + #[prost(uint32, tag = "5")] + pub alkilfnbfnm: u32, #[prost(uint32, repeated, tag = "11")] pub fpchnblonlc: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "2")] - pub alkilfnbfnm: u32, - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "10")] pub hlbfbfdlaca: u32, + #[prost(bool, tag = "15")] + pub aoelkjeegkg: bool, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Kicdahaplch { - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "12")] pub bileoophjef: u32, #[prost(uint32, tag = "4")] pub ifehbimemec: u32, @@ -22080,199 +23475,199 @@ pub struct Kicdahaplch { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Cfmapimjdfc { - #[prost(message, repeated, tag = "3")] - pub lhmidpambpd: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "11")] + pub lhmidpambpd: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Omochgkhnik { - #[prost(message, optional, tag = "14")] + #[prost(message, optional, tag = "11")] pub eeppkmpajoh: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Efjdmhoakoo { + #[prost(uint32, repeated, tag = "3")] + pub trial_avatar_id_list: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "14")] + pub avatar_id_list: ::prost::alloc::vec::Vec, #[prost(uint32, repeated, tag = "10")] pub mankkfpbfcb: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "3")] - pub avatar_id_list: ::prost::alloc::vec::Vec, - #[prost(message, optional, tag = "8")] + #[prost(message, optional, tag = "13")] pub fpjckpnlnfm: ::core::option::Option, - #[prost(uint32, repeated, tag = "13")] - pub trial_avatar_id_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Hdjflbmlldp { - #[prost(message, optional, tag = "4")] + #[prost(message, optional, tag = "10")] pub gkflnmojncp: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Gabcapjghfg { - #[prost(uint32, tag = "12")] - pub amnbmjofjoo: u32, - #[prost(uint32, tag = "8")] - pub hlbfbfdlaca: u32, - #[prost(bool, tag = "9")] + #[prost(bool, tag = "4")] pub aoelkjeegkg: bool, + #[prost(uint32, tag = "7")] + pub hlbfbfdlaca: u32, + #[prost(uint32, tag = "10")] + pub amnbmjofjoo: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Ojcealjifnd { - #[prost(uint32, repeated, tag = "4")] + #[prost(uint32, repeated, tag = "3")] pub gjanfnhlogn: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Nikkccaknnp { - #[prost(uint32, tag = "10")] - pub amnbmjofjoo: u32, - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "12")] pub alkilfnbfnm: u32, - #[prost(uint32, repeated, tag = "3")] - pub fpchnblonlc: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "2")] pub hlbfbfdlaca: u32, - #[prost(bool, tag = "7")] + #[prost(uint32, repeated, tag = "4")] + pub fpchnblonlc: ::prost::alloc::vec::Vec, + #[prost(bool, tag = "11")] pub aoelkjeegkg: bool, + #[prost(uint32, tag = "13")] + pub amnbmjofjoo: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Mncdpepcfgc { - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "4")] pub kobfcomhgce: u32, - #[prost(uint32, tag = "11")] - pub fjjdfpkgopc: u32, - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "2")] pub score: u32, + #[prost(uint32, tag = "15")] + pub fjjdfpkgopc: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Aojofbbnepa { - #[prost(float, tag = "6")] - pub dpfbdjmnceo: f32, - #[prost(uint32, tag = "14")] - pub npjeecedpok: u32, - #[prost(message, repeated, tag = "5")] + #[prost(message, repeated, tag = "1")] pub dcmhgokcinf: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "3")] + pub npjeecedpok: u32, + #[prost(float, tag = "11")] + pub dpfbdjmnceo: f32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Fgkcambiahb { - #[prost(enumeration = "AvatarType", tag = "13")] - pub avatar_type: i32, #[prost(uint32, tag = "11")] - pub slot: u32, - #[prost(uint32, tag = "14")] - pub level: u32, - #[prost(uint32, tag = "8")] pub id: u32, + #[prost(uint32, tag = "3")] + pub level: u32, + #[prost(enumeration = "AvatarType", tag = "9")] + pub avatar_type: i32, + #[prost(uint32, tag = "5")] + pub slot: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Gkjfbbhhlac { - #[prost(message, repeated, tag = "10")] + #[prost(message, repeated, tag = "1")] pub avatar_list: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "14")] - pub buff_list: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "1")] + #[prost(message, repeated, tag = "7")] + pub buff_list: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "4")] pub ckgfonmaeko: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Imcccciccko { - #[prost(uint32, tag = "10")] - pub ifehbimemec: u32, +pub struct RogueFinishInfo { + #[prost(uint32, tag = "3")] + pub score: u32, + #[prost(bool, tag = "2")] + pub is_win: bool, + #[prost(uint32, tag = "1")] + pub mnbiebolccn: u32, + #[prost(message, optional, tag = "8")] + pub hlobjooebod: ::core::option::Option, + #[prost(uint32, tag = "1902")] + pub area_id: u32, + #[prost(message, optional, tag = "6")] + pub record_info: ::core::option::Option, + #[prost(uint32, tag = "706")] + pub lmmeanjpend: u32, + #[prost(uint32, tag = "14")] + pub dedlgfjaeam: u32, + #[prost(message, optional, tag = "15")] + pub agppepmgfmf: ::core::option::Option, #[prost(uint32, tag = "11")] pub bimdlghkaoi: u32, - #[prost(uint32, tag = "13")] - pub mnbiebolccn: u32, - #[prost(message, optional, tag = "7")] - pub hlobjooebod: ::core::option::Option, - #[prost(bool, tag = "15")] - pub is_win: bool, - #[prost(message, optional, tag = "2")] - pub record_info: ::core::option::Option, - #[prost(message, optional, tag = "8")] - pub agppepmgfmf: ::core::option::Option, - #[prost(uint32, tag = "1063")] - pub area_id: u32, - #[prost(uint32, tag = "9")] - pub dedlgfjaeam: u32, - #[prost(uint32, tag = "1")] - pub score: u32, - #[prost(uint32, tag = "1445")] - pub lmmeanjpend: u32, + #[prost(uint32, tag = "10")] + pub ifehbimemec: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Hghcogepidm { - #[prost(bool, tag = "2")] - pub pjhlocdbaeh: bool, - #[prost(int64, tag = "14")] - pub hoepojnnfci: i64, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "10")] pub hdladibhbhh: u32, - #[prost(int64, tag = "4")] - pub cigboghafof: i64, - #[prost(bool, tag = "8")] - pub jomnpadaggk: bool, - #[prost(uint32, repeated, tag = "15")] - pub cilnjididhl: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "14")] pub hhjpblekapn: u32, + #[prost(int64, tag = "13")] + pub cigboghafof: i64, + #[prost(uint32, repeated, tag = "11")] + pub cilnjididhl: ::prost::alloc::vec::Vec, + #[prost(bool, tag = "1")] + pub jomnpadaggk: bool, + #[prost(int64, tag = "5")] + pub hoepojnnfci: i64, + #[prost(bool, tag = "3")] + pub pjhlocdbaeh: bool, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Eacofhbfmlb { - #[prost(uint32, tag = "3")] - pub exp: u32, - #[prost(uint32, tag = "6")] - pub level: u32, #[prost(uint32, tag = "11")] pub jgmipmdppij: u32, + #[prost(uint32, tag = "5")] + pub level: u32, #[prost(uint32, tag = "12")] - pub elappcmeloa: u32, + pub exp: u32, + #[prost(uint32, tag = "6")] + pub aeon_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RogueDialogueEventParam { - #[prost(uint32, tag = "14")] - pub arg_id: u32, + #[prost(bool, tag = "1")] + pub is_valid: bool, #[prost(uint32, tag = "8")] pub dialogue_event_id: u32, - #[prost(bool, tag = "12")] - pub is_valid: bool, - #[prost(int32, tag = "9")] - pub int_value: i32, - #[prost(float, tag = "6")] + #[prost(uint32, tag = "12")] + pub arg_id: u32, + #[prost(float, tag = "4")] pub ratio: f32, + #[prost(int32, tag = "14")] + pub int_value: i32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Lanlccobdne { - #[prost(uint32, tag = "15")] - pub event_unique_id: u32, #[prost(uint32, tag = "14")] - pub onlhfcoglal: u32, - #[prost(message, repeated, tag = "8")] - pub dialogue_event_param_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "7")] - pub game_mode_type: u32, - #[prost(uint32, tag = "12")] + pub event_unique_id: u32, + #[prost(uint32, tag = "15")] pub cdjecokfiof: u32, - #[prost(uint32, repeated, tag = "11")] + #[prost(uint32, tag = "11")] + pub game_mode_type: u32, + #[prost(uint32, tag = "9")] + pub onlhfcoglal: u32, + #[prost(uint32, repeated, tag = "3")] pub eoheeigobkd: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "13")] + pub dialogue_event_param_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Gghfijkpfln { - #[prost(uint32, repeated, tag = "5")] - pub jjealoemmkk: ::prost::alloc::vec::Vec, - #[prost(enumeration = "Ffnedmegpjd", tag = "15")] + #[prost(enumeration = "Ffnedmegpjd", tag = "9")] pub bplmpmefeam: i32, - #[prost(oneof = "gghfijkpfln::Ccpfabancnn", tags = "13")] + #[prost(uint32, repeated, tag = "11")] + pub jjealoemmkk: ::prost::alloc::vec::Vec, + #[prost(oneof = "gghfijkpfln::Ccpfabancnn", tags = "15")] pub ccpfabancnn: ::core::option::Option, } /// Nested message and enum types in `GGHFIJKPFLN`. @@ -22280,308 +23675,308 @@ pub mod gghfijkpfln { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] pub enum Ccpfabancnn { - #[prost(message, tag = "13")] + #[prost(message, tag = "15")] Jdijkegcibp(super::ItemList), } } /// Obf: BDMJEAGHPLC #[derive(proto_derive::CmdID)] -#[cmdid(1895)] +#[cmdid(1820)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetRogueInfoCsReq {} /// Obf: ADKCCCNPLGC #[derive(proto_derive::CmdID)] -#[cmdid(1832)] +#[cmdid(1891)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetRogueInfoScRsp { - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "1")] pub retcode: u32, - #[prost(message, optional, tag = "3")] + #[prost(message, optional, tag = "13")] pub rogue_info: ::core::option::Option, } /// Obf: EIHOHLCMLPC #[derive(proto_derive::CmdID)] -#[cmdid(1831)] +#[cmdid(1867)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct StartRogueCsReq { - #[prost(uint32, repeated, tag = "11")] - pub hjgndhlmmib: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "6")] - pub avatar_id_list: ::prost::alloc::vec::Vec, #[prost(uint32, tag = "12")] - pub elappcmeloa: u32, - #[prost(uint32, repeated, tag = "8")] - pub trial_avatar_id_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "15")] pub area_id: u32, + #[prost(uint32, repeated, tag = "15")] + pub base_avatar_id_list: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "1")] + pub avatar_id_list: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "13")] + pub trial_avatar_id_list: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "2")] + pub aeon_id: u32, } /// Obf: PELKOKJHNKO #[derive(proto_derive::CmdID)] -#[cmdid(1840)] +#[cmdid(1839)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct StartRogueScRsp { - #[prost(message, optional, tag = "8")] + #[prost(message, optional, tag = "3")] + pub map_rotation_data: ::core::option::Option, + #[prost(message, optional, tag = "12")] pub scene: ::core::option::Option, #[prost(message, optional, tag = "13")] pub lineup: ::core::option::Option, - #[prost(message, optional, tag = "10")] - pub map_rotation_data: ::core::option::Option, - #[prost(message, optional, tag = "2")] + #[prost(message, optional, tag = "6")] pub rogue_info: ::core::option::Option, - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "5")] pub retcode: u32, } /// Obf: GFNHCKLFLAP #[derive(proto_derive::CmdID)] -#[cmdid(1876)] +#[cmdid(1827)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct EnterRogueCsReq { - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "4")] pub area_id: u32, } /// Obf: NPABJLFGBDI #[derive(proto_derive::CmdID)] -#[cmdid(1848)] +#[cmdid(1821)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct EnterRogueScRsp { - #[prost(message, optional, tag = "9")] - pub lineup: ::core::option::Option, - #[prost(uint32, tag = "10")] - pub retcode: u32, - #[prost(message, optional, tag = "3")] - pub map_rotation_data: ::core::option::Option, - #[prost(message, optional, tag = "15")] + #[prost(message, optional, tag = "6")] pub rogue_info: ::core::option::Option, - #[prost(message, optional, tag = "8")] + #[prost(message, optional, tag = "12")] + pub lineup: ::core::option::Option, + #[prost(message, optional, tag = "5")] pub scene: ::core::option::Option, + #[prost(message, optional, tag = "15")] + pub map_rotation_data: ::core::option::Option, + #[prost(uint32, tag = "9")] + pub retcode: u32, } /// Obf: JGGMNELNGDE #[derive(proto_derive::CmdID)] -#[cmdid(1871)] +#[cmdid(1870)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct LeaveRogueCsReq {} /// Obf: IDEOGGBCBII #[derive(proto_derive::CmdID)] -#[cmdid(1852)] +#[cmdid(1859)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct LeaveRogueScRsp { - #[prost(message, optional, tag = "7")] - pub scene: ::core::option::Option, - #[prost(uint32, tag = "14")] - pub retcode: u32, - #[prost(message, optional, tag = "5")] - pub rogue_info: ::core::option::Option, #[prost(message, optional, tag = "4")] + pub scene: ::core::option::Option, + #[prost(message, optional, tag = "6")] pub map_rotation_data: ::core::option::Option, - #[prost(message, optional, tag = "3")] + #[prost(message, optional, tag = "11")] pub lineup: ::core::option::Option, + #[prost(message, optional, tag = "10")] + pub rogue_info: ::core::option::Option, + #[prost(uint32, tag = "5")] + pub retcode: u32, } /// Obf: OBAFPKBHHIL #[derive(proto_derive::CmdID)] -#[cmdid(1883)] +#[cmdid(1873)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SyncRogueFinishScNotify { - #[prost(message, optional, tag = "1")] - pub finish_info: ::core::option::Option, + #[prost(message, optional, tag = "7")] + pub finish_info: ::core::option::Option, } /// Obf: FOCOFPDDLCM #[derive(proto_derive::CmdID)] -#[cmdid(1860)] +#[cmdid(1898)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct PickRogueAvatarCsReq { - #[prost(uint32, repeated, tag = "7")] - pub trial_avatar_id_list: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "7")] + pub prop_entity_id: u32, #[prost(uint32, repeated, tag = "4")] pub avatar_id_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "12")] - pub prop_entity_id: u32, + #[prost(uint32, repeated, tag = "13")] + pub trial_avatar_id_list: ::prost::alloc::vec::Vec, } /// Obf: CINPIJDILBP #[derive(proto_derive::CmdID)] -#[cmdid(1802)] +#[cmdid(1885)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct PickRogueAvatarScRsp { - #[prost(uint32, repeated, tag = "6")] - pub avatar_id_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "3")] pub retcode: u32, - #[prost(uint32, repeated, tag = "10")] + #[prost(uint32, repeated, tag = "11")] pub trial_avatar_id_list: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "9")] + pub avatar_id_list: ::prost::alloc::vec::Vec, } /// Obf: ICDCLEIGDMH #[derive(proto_derive::CmdID)] -#[cmdid(1843)] +#[cmdid(1852)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ReviveRogueAvatarCsReq { - #[prost(uint32, repeated, tag = "7")] - pub avatar_id_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "2")] pub interacted_prop_entity_id: u32, - #[prost(uint32, repeated, tag = "3")] + #[prost(uint32, repeated, tag = "7")] pub trial_avatar_id_list: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "10")] + pub avatar_id_list: ::prost::alloc::vec::Vec, } /// Obf: FBGPONNAEFC #[derive(proto_derive::CmdID)] -#[cmdid(1833)] +#[cmdid(1868)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ReviveRogueAvatarScRsp { - #[prost(uint32, repeated, tag = "6")] - pub trial_avatar_id_list: ::prost::alloc::vec::Vec, - #[prost(message, optional, tag = "12")] + #[prost(message, optional, tag = "8")] pub fpjckpnlnfm: ::core::option::Option, - #[prost(uint32, repeated, tag = "1")] + #[prost(uint32, repeated, tag = "3")] + pub trial_avatar_id_list: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "10")] pub avatar_id_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "6")] pub retcode: u32, } /// Obf: DIIFKMDKICI #[derive(proto_derive::CmdID)] -#[cmdid(1884)] +#[cmdid(1878)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SyncRogueReviveInfoScNotify { - #[prost(message, optional, tag = "12")] + #[prost(message, optional, tag = "8")] pub fpjckpnlnfm: ::core::option::Option, } /// Obf: NENAHMOLCCC #[derive(proto_derive::CmdID)] -#[cmdid(1858)] +#[cmdid(1887)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetRogueBuffEnhanceInfoCsReq {} /// Obf: MFIONHFHMIL #[derive(proto_derive::CmdID)] -#[cmdid(1821)] +#[cmdid(1809)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetRogueBuffEnhanceInfoScRsp { - #[prost(message, optional, tag = "1")] - pub buff_enhance_info: ::core::option::Option, - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "10")] pub retcode: u32, + #[prost(message, optional, tag = "13")] + pub buff_enhance_info: ::core::option::Option, } /// Obf: GJDMAJGBGMB #[derive(proto_derive::CmdID)] -#[cmdid(1829)] +#[cmdid(1806)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct EnhanceRogueBuffCsReq { - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "15")] pub ojeblmkkmgo: u32, } /// Obf: FMAFCNOGFMM #[derive(proto_derive::CmdID)] -#[cmdid(1863)] +#[cmdid(1831)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct EnhanceRogueBuffScRsp { - #[prost(uint32, tag = "8")] - pub retcode: u32, - #[prost(bool, tag = "2")] + #[prost(bool, tag = "5")] pub is_success: bool, - #[prost(message, optional, tag = "6")] - pub anagcoddmom: ::core::option::Option, + #[prost(message, optional, tag = "11")] + pub rogue_buff: ::core::option::Option, + #[prost(uint32, tag = "13")] + pub retcode: u32, } /// Obf: JNLEPNDPGHE #[derive(proto_derive::CmdID)] -#[cmdid(1837)] +#[cmdid(1834)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct QuitRogueCsReq { - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "10")] pub area_id: u32, } /// Obf: APJILFGNOPD #[derive(proto_derive::CmdID)] -#[cmdid(1830)] +#[cmdid(1845)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct QuitRogueScRsp { - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "1")] pub retcode: u32, - #[prost(message, optional, tag = "1")] + #[prost(message, optional, tag = "13")] pub rogue_info: ::core::option::Option, } /// Obf: BNAAMDHOODE #[derive(proto_derive::CmdID)] -#[cmdid(1851)] +#[cmdid(1803)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SyncRogueExploreWinScNotify { - #[prost(bool, tag = "15")] + #[prost(bool, tag = "3")] pub gjboljkmgge: bool, } /// Obf: EKDFDNOAOAM #[derive(proto_derive::CmdID)] -#[cmdid(1891)] +#[cmdid(1824)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SyncRogueSeasonFinishScNotify { - #[prost(bool, tag = "8")] - pub nioldfffeln: bool, - #[prost(message, optional, tag = "3")] - pub pfeaniahfpc: ::core::option::Option, - #[prost(message, optional, tag = "11")] - pub finish_info: ::core::option::Option, - #[prost(message, optional, tag = "4")] + #[prost(message, optional, tag = "14")] pub scene: ::core::option::Option, - #[prost(message, optional, tag = "15")] + #[prost(message, optional, tag = "7")] + pub pfeaniahfpc: ::core::option::Option, + #[prost(bool, tag = "13")] + pub nioldfffeln: bool, + #[prost(message, optional, tag = "5")] pub lineup: ::core::option::Option, + #[prost(message, optional, tag = "10")] + pub finish_info: ::core::option::Option, } /// Obf: OAMBADLBMCE #[derive(proto_derive::CmdID)] -#[cmdid(1807)] +#[cmdid(1822)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct EnterRogueMapRoomCsReq { - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "13")] pub site_id: u32, - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "14")] pub room_id: u32, } /// Obf: HINEEGEKLPN #[derive(proto_derive::CmdID)] -#[cmdid(1898)] +#[cmdid(1840)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct EnterRogueMapRoomScRsp { - #[prost(message, optional, tag = "12")] - pub scene: ::core::option::Option, - #[prost(message, optional, tag = "11")] + #[prost(message, optional, tag = "15")] + pub lineup: ::core::option::Option, + #[prost(message, optional, tag = "5")] pub map_rotation_data: ::core::option::Option, + #[prost(uint32, tag = "9")] + pub retcode: u32, #[prost(uint32, tag = "10")] pub cur_site_id: u32, - #[prost(message, optional, tag = "5")] - pub lineup: ::core::option::Option, - #[prost(uint32, tag = "3")] - pub retcode: u32, + #[prost(message, optional, tag = "1")] + pub scene: ::core::option::Option, } /// Obf: IIJCCDGPOEC #[derive(proto_derive::CmdID)] -#[cmdid(1845)] +#[cmdid(1819)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SyncRogueMapRoomScNotify { - #[prost(message, optional, tag = "10")] - pub kpekclbepgb: ::core::option::Option, - #[prost(uint32, tag = "2")] + #[prost(message, optional, tag = "1")] + pub cur_room: ::core::option::Option, + #[prost(uint32, tag = "8")] pub map_id: u32, } /// Obf: HMIOCDLGEDG #[derive(proto_derive::CmdID)] -#[cmdid(1835)] +#[cmdid(1857)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct OpenRogueChestCsReq { - #[prost(bool, tag = "5")] + #[prost(bool, tag = "14")] pub eiddmghlpbp: bool, - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "7")] pub interacted_prop_entity_id: u32, } /// Obf: MOIJDCLIOBJ #[derive(proto_derive::CmdID)] -#[cmdid(1834)] +#[cmdid(1826)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct OpenRogueChestScRsp { - #[prost(message, optional, tag = "7")] - pub nhanakjfeab: ::core::option::Option, - #[prost(message, optional, tag = "12")] + #[prost(message, optional, tag = "13")] pub reward: ::core::option::Option, - #[prost(message, optional, tag = "6")] - pub kjchgehdlno: ::core::option::Option, - #[prost(uint32, tag = "14")] + #[prost(message, optional, tag = "8")] + pub nhanakjfeab: ::core::option::Option, + #[prost(uint32, tag = "11")] pub retcode: u32, + #[prost(message, optional, tag = "15")] + pub kjchgehdlno: ::core::option::Option, } /// Obf: KKFJNFAAIBA #[derive(proto_derive::CmdID)] -#[cmdid(1868)] +#[cmdid(1890)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ExchangeRogueRewardKeyCsReq { #[prost(uint32, tag = "14")] @@ -22589,359 +23984,359 @@ pub struct ExchangeRogueRewardKeyCsReq { } /// Obf: ExchangeRogueRewardKeyScRsp #[derive(proto_derive::CmdID)] -#[cmdid(1801)] +#[cmdid(1889)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ExchangeRogueRewardKeyScRsp { - #[prost(uint32, tag = "6")] - pub count: u32, - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "1")] pub retcode: u32, + #[prost(uint32, tag = "9")] + pub count: u32, } /// Obf: HLFKLMCHOJE #[derive(proto_derive::CmdID)] -#[cmdid(1810)] +#[cmdid(1862)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SyncRogueAreaUnlockScNotify { - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "11")] pub area_id: u32, } /// Obf: CECLOCJFNEC #[derive(proto_derive::CmdID)] -#[cmdid(1897)] +#[cmdid(1814)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SyncRogueGetItemScNotify { - #[prost(message, optional, tag = "14")] - pub iodfgfomgod: ::core::option::Option, - #[prost(message, optional, tag = "15")] + #[prost(message, optional, tag = "13")] pub acfcjiomjnf: ::core::option::Option, + #[prost(message, optional, tag = "11")] + pub iodfgfomgod: ::core::option::Option, } /// Obf: GNHOEINKCKC #[derive(proto_derive::CmdID)] -#[cmdid(1879)] +#[cmdid(1886)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TakeRogueAeonLevelRewardCsReq { - #[prost(uint32, tag = "6")] - pub elappcmeloa: u32, #[prost(uint32, tag = "11")] + pub aeon_id: u32, + #[prost(uint32, tag = "8")] pub level: u32, } /// Obf: JOBKDLIPMND #[derive(proto_derive::CmdID)] -#[cmdid(1870)] +#[cmdid(1875)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TakeRogueAeonLevelRewardScRsp { #[prost(uint32, tag = "14")] - pub elappcmeloa: u32, - #[prost(uint32, tag = "15")] pub level: u32, - #[prost(message, optional, tag = "13")] - pub reward: ::core::option::Option, #[prost(uint32, tag = "1")] pub retcode: u32, + #[prost(message, optional, tag = "2")] + pub reward: ::core::option::Option, + #[prost(uint32, tag = "11")] + pub aeon_id: u32, } /// Obf: BPGHIGPFECL #[derive(proto_derive::CmdID)] -#[cmdid(1826)] +#[cmdid(1811)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SyncRogueAeonLevelUpRewardScNotify { - #[prost(uint32, tag = "4")] - pub level: u32, #[prost(message, optional, tag = "11")] pub reward: ::core::option::Option, - #[prost(uint32, tag = "8")] - pub elappcmeloa: u32, + #[prost(uint32, tag = "13")] + pub aeon_id: u32, + #[prost(uint32, tag = "3")] + pub level: u32, } /// Obf: MIOMGCJAFBL #[derive(proto_derive::CmdID)] -#[cmdid(1873)] +#[cmdid(1851)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetRogueScoreRewardInfoCsReq {} /// Obf: FKLPGPGBAMG #[derive(proto_derive::CmdID)] -#[cmdid(1867)] +#[cmdid(1856)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetRogueScoreRewardInfoScRsp { - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "10")] pub retcode: u32, - #[prost(message, optional, tag = "6")] + #[prost(message, optional, tag = "2")] pub hndlhicdnpc: ::core::option::Option, } /// Obf: IHKPGEEPLIM #[derive(proto_derive::CmdID)] -#[cmdid(1842)] +#[cmdid(1894)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TakeRogueScoreRewardCsReq { - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "11")] pub hhjpblekapn: u32, - #[prost(uint32, repeated, tag = "8")] + #[prost(uint32, repeated, tag = "12")] pub lmmfpcokhee: ::prost::alloc::vec::Vec, } /// Obf: GEMBNLDPOBD #[derive(proto_derive::CmdID)] -#[cmdid(1877)] +#[cmdid(1836)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TakeRogueScoreRewardScRsp { - #[prost(uint32, tag = "2")] - pub hhjpblekapn: u32, - #[prost(message, optional, tag = "8")] - pub pfeaniahfpc: ::core::option::Option, - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "10")] pub retcode: u32, - #[prost(message, optional, tag = "13")] + #[prost(message, optional, tag = "12")] pub reward: ::core::option::Option, + #[prost(message, optional, tag = "15")] + pub pfeaniahfpc: ::core::option::Option, + #[prost(uint32, tag = "5")] + pub hhjpblekapn: u32, } /// Obf: HOMKFNNAECD #[derive(proto_derive::CmdID)] -#[cmdid(1864)] +#[cmdid(1818)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetRogueInitialScoreCsReq {} /// Obf: CIPBDJILBBD #[derive(proto_derive::CmdID)] -#[cmdid(1806)] +#[cmdid(1847)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetRogueInitialScoreScRsp { - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "2")] pub retcode: u32, - #[prost(message, optional, tag = "1")] + #[prost(message, optional, tag = "13")] pub pfeaniahfpc: ::core::option::Option, } /// Obf: LDOIDBGBFPH #[derive(proto_derive::CmdID)] -#[cmdid(1855)] +#[cmdid(1897)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetRogueAeonInfoCsReq {} /// Obf: DCOEBNOMGBP #[derive(proto_derive::CmdID)] -#[cmdid(1880)] +#[cmdid(1866)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetRogueAeonInfoScRsp { - #[prost(message, repeated, tag = "4")] + #[prost(message, repeated, tag = "7")] pub belofmfhfdk: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "13")] pub retcode: u32, } /// Obf: ADPHMDMMGLO #[derive(proto_derive::CmdID)] -#[cmdid(1850)] +#[cmdid(1817)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct FinishAeonDialogueGroupCsReq { - #[prost(uint32, tag = "1")] - pub elappcmeloa: u32, + #[prost(uint32, tag = "15")] + pub aeon_id: u32, } /// Obf: IBGMBDCMFLF #[derive(proto_derive::CmdID)] -#[cmdid(1819)] +#[cmdid(1900)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct FinishAeonDialogueGroupScRsp { - #[prost(message, optional, tag = "7")] - pub chmhpcngfao: ::core::option::Option, - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "12")] pub retcode: u32, - #[prost(message, optional, tag = "6")] + #[prost(message, optional, tag = "13")] + pub chmhpcngfao: ::core::option::Option, + #[prost(message, optional, tag = "5")] pub reward: ::core::option::Option, } /// Obf: MHHJHCPCHFI #[derive(proto_derive::CmdID)] -#[cmdid(1889)] +#[cmdid(1858)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetRogueTalentInfoCsReq {} /// Obf: ILCKHHGKEEA #[derive(proto_derive::CmdID)] -#[cmdid(1888)] +#[cmdid(1846)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetRogueTalentInfoScRsp { - #[prost(message, optional, tag = "11")] + #[prost(message, optional, tag = "7")] pub talent_info: ::core::option::Option, - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "12")] pub retcode: u32, } /// Obf: OODLMLFFKIK #[derive(proto_derive::CmdID)] -#[cmdid(1838)] +#[cmdid(1842)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct EnableRogueTalentCsReq { - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "11")] pub talent_id: u32, } /// Obf: IFCINKBKLNB #[derive(proto_derive::CmdID)] -#[cmdid(1805)] +#[cmdid(1892)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct EnableRogueTalentScRsp { - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "13")] pub retcode: u32, - #[prost(message, optional, tag = "9")] + #[prost(message, optional, tag = "8")] pub talent_info: ::core::option::Option, } /// Obf: KHEPKPAMLIC #[derive(proto_derive::CmdID)] -#[cmdid(1865)] +#[cmdid(1881)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SyncRogueVirtualItemInfoScNotify { - #[prost(message, optional, tag = "11")] - pub ofolhkcnlba: ::core::option::Option, + #[prost(message, optional, tag = "1")] + pub rogue_virtual_item_info: ::core::option::Option, } /// Obf: DAMIJKDDMHG #[derive(proto_derive::CmdID)] -#[cmdid(1881)] +#[cmdid(1865)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SyncRogueStatusScNotify { #[prost(bool, tag = "1")] pub jienhhahfgi: bool, - #[prost(enumeration = "Egpimdadfdi", tag = "5")] + #[prost(enumeration = "RogueStatus", tag = "11")] pub status: i32, } /// Obf: IJLPCNPDIAC #[derive(proto_derive::CmdID)] -#[cmdid(1866)] +#[cmdid(1888)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SyncRogueRewardInfoScNotify { - #[prost(message, optional, tag = "12")] + #[prost(message, optional, tag = "13")] pub pfeaniahfpc: ::core::option::Option, } /// Obf: OOPEEPENBLM #[derive(proto_derive::CmdID)] -#[cmdid(1861)] +#[cmdid(1829)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SyncRoguePickAvatarInfoScNotify { - #[prost(uint32, repeated, tag = "12")] - pub avatar_id_list: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "7")] + #[prost(uint32, repeated, tag = "3")] pub trial_avatar_id_list: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "10")] + pub avatar_id_list: ::prost::alloc::vec::Vec, } /// Obf: DFILFJKBNCN #[derive(proto_derive::CmdID)] -#[cmdid(1803)] +#[cmdid(1812)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SyncRogueAeonScNotify { - #[prost(message, optional, tag = "6")] + #[prost(message, optional, tag = "13")] pub gcjogflgbbh: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Llpnbnejkii { - #[prost(message, optional, tag = "3")] + #[prost(message, optional, tag = "13")] pub lineup: ::core::option::Option, - #[prost(message, optional, tag = "2")] - pub scene: ::core::option::Option, - #[prost(message, optional, tag = "7")] + #[prost(message, optional, tag = "5")] pub map_rotation_data: ::core::option::Option, + #[prost(message, optional, tag = "14")] + pub scene: ::core::option::Option, } /// Obf: HNBFGCCIHPL #[derive(proto_derive::CmdID)] -#[cmdid(7654)] +#[cmdid(7699)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RogueArcadeStartCsReq { - #[prost(uint32, repeated, tag = "5")] - pub avatar_id_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "15")] pub room_id: u32, + #[prost(uint32, repeated, tag = "1")] + pub avatar_id_list: ::prost::alloc::vec::Vec, } /// Obf: DFCGFNCOCDN #[derive(proto_derive::CmdID)] -#[cmdid(7696)] +#[cmdid(7677)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RogueArcadeStartScRsp { - #[prost(uint32, tag = "5")] - pub retcode: u32, - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "8")] pub room_id: u32, - #[prost(message, optional, tag = "14")] + #[prost(message, optional, tag = "5")] pub lcoclenjjai: ::core::option::Option, + #[prost(uint32, tag = "11")] + pub retcode: u32, } /// Obf: OOBNALGAHBC #[derive(proto_derive::CmdID)] -#[cmdid(7652)] +#[cmdid(7668)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RogueArcadeLeaveCsReq {} /// Obf: PLFJLIKALKC #[derive(proto_derive::CmdID)] -#[cmdid(7687)] +#[cmdid(7686)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RogueArcadeLeaveScRsp { - #[prost(uint32, tag = "6")] - pub retcode: u32, - #[prost(message, optional, tag = "8")] + #[prost(message, optional, tag = "13")] pub lcoclenjjai: ::core::option::Option, + #[prost(uint32, tag = "5")] + pub retcode: u32, } /// Obf: FBJMBKBMKAC #[derive(proto_derive::CmdID)] -#[cmdid(7686)] +#[cmdid(7661)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RogueArcadeRestartCsReq {} /// Obf: NHLJKOMFHHO #[derive(proto_derive::CmdID)] -#[cmdid(7667)] +#[cmdid(7687)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RogueArcadeRestartScRsp { - #[prost(message, optional, tag = "15")] - pub lcoclenjjai: ::core::option::Option, - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "13")] pub retcode: u32, + #[prost(message, optional, tag = "14")] + pub lcoclenjjai: ::core::option::Option, } /// Obf: IBDABBKGKLM #[derive(proto_derive::CmdID)] -#[cmdid(7677)] +#[cmdid(7667)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RogueArcadeGetInfoCsReq {} /// Obf: DAGJBPCCNDJ #[derive(proto_derive::CmdID)] -#[cmdid(7665)] +#[cmdid(7689)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RogueArcadeGetInfoScRsp { - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "11")] pub room_id: u32, - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "7")] pub retcode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Ffamnkoaihf { - #[prost(uint32, tag = "6")] - pub buff_id: u32, #[prost(uint32, tag = "15")] pub meipgemgacj: u32, + #[prost(uint32, tag = "4")] + pub buff_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Gckblhadlgn { - #[prost(message, repeated, tag = "11")] + #[prost(message, repeated, tag = "15")] pub buff_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Elheaghnndm { - #[prost(uint32, tag = "14")] - pub cmogblhafhn: u32, - #[prost(uint32, repeated, tag = "6")] - pub cpiaahjfigl: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "12")] - pub bheidppfcka: u32, - #[prost(message, optional, tag = "3")] - pub fpoelpfcnbi: ::core::option::Option, - #[prost(uint32, repeated, tag = "8")] - pub pdihilclenm: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "4")] - pub ekflpnlapdf: u32, - #[prost(uint32, tag = "2")] - pub ckkekmjmabc: u32, - #[prost(enumeration = "Nniohhmjghg", tag = "1")] - pub hhmabjdimgm: i32, - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "5")] pub igchbpakbcb: u32, - #[prost(uint32, tag = "13")] - pub djfckfemgoj: u32, + #[prost(uint32, tag = "11")] + pub ckkekmjmabc: u32, + #[prost(uint32, tag = "3")] + pub ekflpnlapdf: u32, #[prost(message, repeated, tag = "9")] pub kkhdljfohkc: ::prost::alloc::vec::Vec, #[prost(uint32, tag = "15")] + pub djfckfemgoj: u32, + #[prost(uint32, repeated, tag = "12")] + pub pdihilclenm: ::prost::alloc::vec::Vec, + #[prost(message, optional, tag = "8")] + pub fpoelpfcnbi: ::core::option::Option, + #[prost(uint32, tag = "6")] pub pdapeheambm: u32, - #[prost(bool, tag = "10")] + #[prost(uint32, repeated, tag = "10")] + pub cpiaahjfigl: ::prost::alloc::vec::Vec, + #[prost(bool, tag = "1")] pub ehpmcgoelgb: bool, + #[prost(uint32, tag = "14")] + pub cmogblhafhn: u32, + #[prost(uint32, tag = "2")] + pub bheidppfcka: u32, + #[prost(enumeration = "Nniohhmjghg", tag = "13")] + pub hhmabjdimgm: i32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Hkhfbelmdcg { - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "1")] pub dhmnnemgfbl: u32, } #[derive(proto_derive::CmdID)] @@ -22953,45 +24348,45 @@ pub struct Mmndajfijoj {} #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Djonnopdjhh { - #[prost(message, optional, tag = "1")] + #[prost(message, optional, tag = "12")] pub nlnbngijafi: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Kglojonkmkp { + #[prost(message, optional, tag = "11")] + pub item_cost_list: ::core::option::Option, #[prost(uint32, tag = "12")] pub buff_id: u32, - #[prost(message, optional, tag = "7")] - pub item_cost_list: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Ngpimhhelmm { - #[prost(message, repeated, tag = "12")] + #[prost(message, repeated, tag = "15")] pub dakmmpkbmko: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Inempcaknnc { - #[prost(uint32, tag = "13")] - pub bilbohbdbpn: u32, - #[prost(message, repeated, tag = "2")] - pub ihgmpjnnmki: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "10")] + #[prost(message, repeated, tag = "13")] pub clplefhhafb: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "6")] + pub ihgmpjnnmki: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "9")] + pub bilbohbdbpn: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Lefcomgmpcl { - #[prost(message, repeated, tag = "1")] - pub ihgmpjnnmki: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "12")] pub bilbohbdbpn: u32, + #[prost(message, repeated, tag = "8")] + pub ihgmpjnnmki: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Pbmaklnjeko { - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "10")] pub ljejkccbcha: u32, } #[derive(proto_derive::CmdID)] @@ -23000,15 +24395,15 @@ pub struct Fkdbihnpche {} #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Ipgkagffbhf { - #[prost(uint32, tag = "12")] - pub bilbohbdbpn: u32, - #[prost(message, repeated, tag = "11")] + #[prost(message, repeated, tag = "3")] pub dlfmgkpgmhl: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "4")] + pub bilbohbdbpn: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Okefiddnlkg { - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "4")] pub dhmnnemgfbl: u32, } #[derive(proto_derive::CmdID)] @@ -23017,15 +24412,15 @@ pub struct Dlhpdalgdeh {} #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Kbpmfkknbjh { - #[prost(message, repeated, tag = "2")] + #[prost(message, repeated, tag = "9")] pub kkhdljfohkc: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "14")] pub bilbohbdbpn: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Bfbfmlbhgoh { - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "5")] pub dhmnnemgfbl: u32, } #[derive(proto_derive::CmdID)] @@ -23034,94 +24429,94 @@ pub struct Oopdmmnnkgi {} #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Kcacnhcadec { - #[prost(message, optional, tag = "3")] + #[prost(message, optional, tag = "2")] pub lchkkhngbgj: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Gjoibmfanhl { - #[prost(uint32, tag = "12")] - pub cur_times: u32, - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "7")] pub deidchamdba: u32, - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "8")] pub blfaanhjpad: u32, - #[prost(map = "uint32, uint32", tag = "4")] + #[prost(map = "uint32, uint32", tag = "15")] pub gmafejejbho: ::std::collections::HashMap, + #[prost(uint32, tag = "3")] + pub cur_times: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Lajbhghnbac { - #[prost(bool, tag = "10")] - pub ganhklnpapi: bool, - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "12")] pub bemceedabfd: u32, - #[prost(message, optional, tag = "8")] + #[prost(message, optional, tag = "1")] pub jalamopldho: ::core::option::Option, + #[prost(bool, tag = "7")] + pub ganhklnpapi: bool, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Jpajnjbebfb { - #[prost(message, optional, tag = "8")] + #[prost(message, optional, tag = "5")] pub jibdgcfcdio: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Gliaipcabim { - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "1")] pub deidchamdba: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Ibibpoopden { - #[prost(uint32, tag = "1")] - pub fkpihaahhbi: u32, - #[prost(uint32, tag = "5")] - pub lgjfnaiagld: u32, - #[prost(message, optional, tag = "14")] + #[prost(message, optional, tag = "11")] pub jibdgcfcdio: ::core::option::Option, + #[prost(uint32, tag = "15")] + pub lgjfnaiagld: u32, + #[prost(uint32, tag = "2")] + pub fkpihaahhbi: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Maaaagpjjfe { - #[prost(message, optional, tag = "3")] + #[prost(message, optional, tag = "9")] pub jibdgcfcdio: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Pbaloejcgfn { - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "8")] pub bemceedabfd: u32, - #[prost(message, optional, tag = "15")] + #[prost(message, optional, tag = "11")] pub jalamopldho: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Hblnhganbab { - #[prost(message, optional, tag = "11")] + #[prost(message, optional, tag = "12")] pub jibdgcfcdio: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Ajpfphkklpg { - #[prost(message, repeated, tag = "2")] + #[prost(message, repeated, tag = "11")] pub ckgfonmaeko: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Ebhghgiigom { - #[prost(uint32, tag = "4")] - pub bilbohbdbpn: u32, - #[prost(uint32, repeated, tag = "3")] + #[prost(uint32, repeated, tag = "5")] pub komjmfikbam: ::prost::alloc::vec::Vec, - #[prost(bool, tag = "13")] - pub apikleggdhm: bool, - #[prost(uint32, repeated, tag = "12")] - pub jacighhgcgb: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "2")] pub oooecpaacck: u32, - #[prost(uint32, tag = "1")] + #[prost(bool, tag = "3")] + pub apikleggdhm: bool, + #[prost(uint32, repeated, tag = "15")] + pub jacighhgcgb: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "7")] pub bmfcbcmclaf: u32, + #[prost(uint32, tag = "8")] + pub bilbohbdbpn: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] @@ -23138,27 +24533,27 @@ pub struct Jfpfdjppoag {} #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Honkbmjpjaa { - #[prost(message, optional, tag = "8")] + #[prost(message, optional, tag = "14")] pub cjenjifeidi: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Anmcaimelca { - #[prost(uint32, repeated, tag = "1")] + #[prost(uint32, repeated, tag = "6")] pub cmaggnfdkag: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Gabbehoipjc { - #[prost(uint32, repeated, tag = "1")] - pub dcjeggjpcdf: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "3")] pub bilbohbdbpn: u32, + #[prost(uint32, repeated, tag = "4")] + pub dcjeggjpcdf: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Nalelighdaa { - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "12")] pub abmamcfpcci: u32, } #[derive(proto_derive::CmdID)] @@ -23167,15 +24562,15 @@ pub struct Paocongeljk {} #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Mlkiccaelke { - #[prost(uint32, repeated, tag = "3")] - pub anbpnihmkah: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "7")] pub bilbohbdbpn: u32, + #[prost(uint32, repeated, tag = "13")] + pub anbpnihmkah: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Pkodmmphibc { - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "9")] pub jibhljneicm: u32, } #[derive(proto_derive::CmdID)] @@ -23184,15 +24579,15 @@ pub struct Blfjbkbhjil {} #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Eakecfappkd { - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "12")] pub bilbohbdbpn: u32, - #[prost(uint32, repeated, tag = "3")] + #[prost(uint32, repeated, tag = "10")] pub fikenbeondj: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Nhckhplklio { - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "11")] pub ibemojgallk: u32, } #[derive(proto_derive::CmdID)] @@ -23201,10 +24596,10 @@ pub struct Omjfmbjmfmc {} #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Eldafcnmfbf { - #[prost(uint32, repeated, tag = "2")] - pub mdpdadooobn: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "1")] pub bilbohbdbpn: u32, + #[prost(uint32, repeated, tag = "5")] + pub mdpdadooobn: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] @@ -23218,15 +24613,15 @@ pub struct Moiknhhcabh {} #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Lcagiooiidn { - #[prost(uint32, repeated, tag = "7")] + #[prost(uint32, repeated, tag = "14")] pub jlhfojodokg: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "5")] pub bilbohbdbpn: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Imcbiigokpm { - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "4")] pub cghlhfnladn: u32, } #[derive(proto_derive::CmdID)] @@ -23235,15 +24630,15 @@ pub struct Fhikplaioei {} #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Ofpeknmfmab { - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "12")] pub bilbohbdbpn: u32, - #[prost(uint32, repeated, tag = "7")] + #[prost(uint32, repeated, tag = "14")] pub jlhfojodokg: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Lkmkhacmapc { - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "3")] pub cghlhfnladn: u32, } #[derive(proto_derive::CmdID)] @@ -23261,47 +24656,47 @@ pub struct Jcahmiooldb {} #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Nkidddpflje { - #[prost(message, optional, tag = "10")] + #[prost(message, optional, tag = "4")] pub jlnilijomem: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Dlcjmohobdh { - #[prost(uint32, repeated, tag = "13")] + #[prost(uint32, repeated, tag = "15")] pub imoiceebdco: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Bcllbmeedkp { - #[prost(uint32, tag = "5")] - pub mnkeniamhdd: u32, - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "9")] pub dafalaoaooi: u32, + #[prost(uint32, tag = "1")] + pub amnkmbmhkdf: u32, #[prost(uint32, tag = "7")] pub bpjoapfafkk: u32, - #[prost(uint32, tag = "14")] - pub amnkmbmhkdf: u32, + #[prost(uint32, tag = "3")] + pub mnkeniamhdd: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Kildamjjlmf { - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "9")] + pub display_type: u32, + #[prost(uint32, tag = "4")] pub num: u32, - #[prost(uint32, tag = "15")] - pub fgmgpljckpc: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Mdgjikljdde { - #[prost(enumeration = "AvatarType", tag = "15")] - pub avatar_type: i32, - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "6")] pub avatar_id: u32, + #[prost(enumeration = "AvatarType", tag = "5")] + pub avatar_type: i32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RogueSyncContextBoardEvent { - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "8")] pub modifier_effect_type: u32, #[prost(uint32, tag = "12")] pub board_event_id: u32, @@ -23309,15 +24704,15 @@ pub struct RogueSyncContextBoardEvent { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Cfellcpmonh { - #[prost(message, optional, tag = "11")] + #[prost(message, optional, tag = "8")] pub item_list: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Oiaolbgoaag { - #[prost(message, optional, tag = "15")] - pub noaednnibaf: ::core::option::Option, #[prost(message, optional, tag = "4")] + pub noaednnibaf: ::core::option::Option, + #[prost(message, optional, tag = "13")] pub hhphlegcldm: ::core::option::Option, } #[derive(proto_derive::CmdID)] @@ -23326,13 +24721,13 @@ pub struct Ahccdbfmndi {} #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Aokijgcoapd { - #[prost(int32, tag = "10")] + #[prost(int32, tag = "4")] pub count: i32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Cihfcleakij { - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "1")] pub deidchamdba: u32, } #[derive(proto_derive::CmdID)] @@ -23343,7 +24738,7 @@ pub struct Ekelnnlplod {} pub struct RogueAdventureRoomGameplayWolfGunTarget { #[prost( oneof = "rogue_adventure_room_gameplay_wolf_gun_target::TargetImplCase", - tags = "8, 12, 14, 10" + tags = "7, 2, 14, 12" )] pub target_impl_case: ::core::option::Option< rogue_adventure_room_gameplay_wolf_gun_target::TargetImplCase, @@ -23354,13 +24749,13 @@ pub mod rogue_adventure_room_gameplay_wolf_gun_target { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Oneof)] pub enum TargetImplCase { - #[prost(message, tag = "8")] + #[prost(message, tag = "7")] TargetNone(super::Ahccdbfmndi), - #[prost(message, tag = "12")] + #[prost(message, tag = "2")] TargetCoin(super::Aokijgcoapd), #[prost(message, tag = "14")] TargetMiracle(super::Cihfcleakij), - #[prost(message, tag = "10")] + #[prost(message, tag = "12")] TargetRuanmei(super::Ekelnnlplod), } } @@ -23371,161 +24766,161 @@ pub struct Ckjcfdjkdfg { pub battle_target_list: ::prost::alloc::vec::Vec< RogueAdventureRoomGameplayWolfGunTarget, >, - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "11")] pub dhpabbnjoli: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Fhepdkkhfcf { - #[prost(oneof = "fhepdkkhfcf::Buff", tags = "5")] - pub buff: ::core::option::Option, + #[prost(oneof = "fhepdkkhfcf::Info", tags = "14")] + pub info: ::core::option::Option, } /// Nested message and enum types in `FHEPDKKHFCF`. pub mod fhepdkkhfcf { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum Buff { - #[prost(message, tag = "5")] + pub enum Info { + #[prost(message, tag = "14")] Lachncfkako(super::Ckjcfdjkdfg), } } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Cncajkhccec { - #[prost(double, tag = "4")] + #[prost(message, optional, tag = "5")] + pub blndmfgkpmj: ::core::option::Option, + #[prost(double, tag = "11")] pub bdebmbgffka: f64, #[prost(uint32, tag = "14")] + pub status: u32, + #[prost(uint32, tag = "4")] + pub mcmclafdldc: u32, + #[prost(uint32, tag = "10")] pub score: u32, #[prost(uint32, tag = "8")] - pub status: u32, - #[prost(uint32, tag = "3")] - pub mcmclafdldc: u32, - #[prost(message, optional, tag = "13")] - pub blndmfgkpmj: ::core::option::Option, - #[prost(uint32, tag = "2")] pub dpmleipaoil: u32, } /// Obf: FAILBACOKOC #[derive(proto_derive::CmdID)] -#[cmdid(5695)] +#[cmdid(5620)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SyncRogueAdventureRoomInfoScNotify { - #[prost(message, optional, tag = "11")] + #[prost(message, optional, tag = "5")] pub cdlakdmejlg: ::core::option::Option, } /// Obf: LBPGOHNBLBH #[derive(proto_derive::CmdID)] -#[cmdid(5632)] +#[cmdid(5691)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct PrepareRogueAdventureRoomCsReq {} /// Obf: IFHLBMILDMA #[derive(proto_derive::CmdID)] -#[cmdid(5631)] +#[cmdid(5667)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct PrepareRogueAdventureRoomScRsp { - #[prost(message, optional, tag = "12")] - pub cdlakdmejlg: ::core::option::Option, - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "15")] pub retcode: u32, + #[prost(message, optional, tag = "13")] + pub cdlakdmejlg: ::core::option::Option, } /// Obf: BDGBOBPJOGB #[derive(proto_derive::CmdID)] -#[cmdid(5629)] +#[cmdid(5606)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct StopRogueAdventureRoomCsReq { - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "3")] pub mmhmdhihcab: u32, - #[prost(uint32, repeated, tag = "14")] + #[prost(uint32, repeated, tag = "7")] pub ipogaccfmol: ::prost::alloc::vec::Vec, } /// Obf: DENAOGJPCGJ #[derive(proto_derive::CmdID)] -#[cmdid(5663)] +#[cmdid(5631)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct StopRogueAdventureRoomScRsp { - #[prost(message, optional, tag = "2")] - pub cdlakdmejlg: ::core::option::Option, - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "2")] pub retcode: u32, + #[prost(message, optional, tag = "8")] + pub cdlakdmejlg: ::core::option::Option, } /// Obf: LFDFIILGOAD #[derive(proto_derive::CmdID)] -#[cmdid(5646)] +#[cmdid(5674)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetRogueAdventureRoomInfoCsReq {} /// Obf: HOOKBCONPPB #[derive(proto_derive::CmdID)] -#[cmdid(5683)] +#[cmdid(5673)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetRogueAdventureRoomInfoScRsp { - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "12")] pub retcode: u32, - #[prost(message, optional, tag = "14")] + #[prost(message, optional, tag = "10")] pub cdlakdmejlg: ::core::option::Option, } /// Obf: NNKAPOCKHDF #[derive(proto_derive::CmdID)] -#[cmdid(5620)] +#[cmdid(5663)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct UpdateRogueAdventureRoomScoreCsReq { - #[prost(uint32, tag = "3")] - pub hmffhgbkogl: u32, - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "14")] pub score: u32, + #[prost(uint32, tag = "9")] + pub hmffhgbkogl: u32, } /// Obf: LDDPPCFOHGJ #[derive(proto_derive::CmdID)] -#[cmdid(5686)] +#[cmdid(5650)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct UpdateRogueAdventureRoomScoreScRsp { - #[prost(message, optional, tag = "15")] - pub cdlakdmejlg: ::core::option::Option, - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "7")] pub retcode: u32, + #[prost(message, optional, tag = "3")] + pub cdlakdmejlg: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Ahclnmjpmij { - #[prost(uint32, tag = "5")] - pub deidchamdba: u32, - #[prost(bool, tag = "10")] - pub bphcbohkhmd: bool, - #[prost(bool, tag = "4")] - pub poapegkpfob: bool, - #[prost(message, optional, tag = "1")] - pub item_cost_list: ::core::option::Option, - #[prost(message, optional, tag = "14")] + #[prost(message, optional, tag = "7")] pub nblffdipbhi: ::core::option::Option, + #[prost(uint32, tag = "15")] + pub deidchamdba: u32, + #[prost(message, optional, tag = "2")] + pub item_cost_list: ::core::option::Option, + #[prost(bool, tag = "3")] + pub bphcbohkhmd: bool, + #[prost(bool, tag = "13")] + pub poapegkpfob: bool, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Mgkfkecfhhm { - #[prost(message, optional, tag = "11")] - pub item_cost_list: ::core::option::Option, - #[prost(bool, tag = "3")] + #[prost(bool, tag = "12")] pub bphcbohkhmd: bool, - #[prost(uint32, tag = "10")] - pub buff_id: u32, - #[prost(message, optional, tag = "9")] - pub nblffdipbhi: ::core::option::Option, - #[prost(bool, tag = "2")] - pub poapegkpfob: bool, - #[prost(uint32, tag = "12")] + #[prost(message, optional, tag = "1")] + pub item_cost_list: ::core::option::Option, + #[prost(uint32, tag = "8")] pub leaaebafchp: u32, + #[prost(message, optional, tag = "6")] + pub nblffdipbhi: ::core::option::Option, + #[prost(uint32, tag = "2")] + pub buff_id: u32, + #[prost(bool, tag = "11")] + pub poapegkpfob: bool, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Iilhoakjdnh { - #[prost(message, optional, tag = "7")] - pub nblffdipbhi: ::core::option::Option, - #[prost(message, optional, tag = "15")] - pub item_cost_list: ::core::option::Option, - #[prost(bool, tag = "6")] - pub poapegkpfob: bool, #[prost(bool, tag = "5")] pub bphcbohkhmd: bool, - #[prost(uint32, tag = "8")] + #[prost(message, optional, tag = "1")] + pub item_cost_list: ::core::option::Option, + #[prost(uint32, tag = "4")] pub formula_id: u32, + #[prost(bool, tag = "15")] + pub poapegkpfob: bool, + #[prost(message, optional, tag = "8")] + pub nblffdipbhi: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] @@ -23536,199 +24931,199 @@ pub struct Nnjolkjlpjg { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Anjdkfjoeei { - #[prost(message, repeated, tag = "9")] + #[prost(message, repeated, tag = "14")] pub buff_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Glppdleccli { - #[prost(message, repeated, tag = "11")] + #[prost(message, repeated, tag = "10")] pub omfdhfgbgaa: ::prost::alloc::vec::Vec, } /// Obf: ELOAFLAJHBO #[derive(proto_derive::CmdID)] -#[cmdid(5648)] +#[cmdid(5621)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetRogueShopBuffInfoCsReq { - #[prost(uint32, tag = "7")] - pub interacted_prop_entity_id: u32, - #[prost(bool, tag = "10")] - pub hmilghcpede: bool, -} -/// Obf: OCDHGBDJNEO -#[derive(proto_derive::CmdID)] -#[cmdid(5671)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetRogueShopBuffInfoScRsp { - #[prost(uint32, tag = "15")] - pub retcode: u32, - #[prost(message, optional, tag = "8")] - pub lgopnbhhhbg: ::core::option::Option, - #[prost(message, optional, tag = "4")] - pub ihjhccfmifd: ::core::option::Option, - #[prost(int32, tag = "10")] - pub aefhkanbfnc: i32, - #[prost(int32, tag = "3")] - pub efojocfgidj: i32, -} -/// Obf: ABDPCGBPFLH -#[derive(proto_derive::CmdID)] -#[cmdid(5640)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetRogueShopMiracleInfoCsReq { - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "12")] pub interacted_prop_entity_id: u32, #[prost(bool, tag = "11")] pub hmilghcpede: bool, } +/// Obf: OCDHGBDJNEO +#[derive(proto_derive::CmdID)] +#[cmdid(5670)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct GetRogueShopBuffInfoScRsp { + #[prost(message, optional, tag = "1")] + pub ihjhccfmifd: ::core::option::Option, + #[prost(int32, tag = "15")] + pub efojocfgidj: i32, + #[prost(message, optional, tag = "3")] + pub lgopnbhhhbg: ::core::option::Option, + #[prost(uint32, tag = "6")] + pub retcode: u32, + #[prost(int32, tag = "8")] + pub aefhkanbfnc: i32, +} +/// Obf: ABDPCGBPFLH +#[derive(proto_derive::CmdID)] +#[cmdid(5639)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct GetRogueShopMiracleInfoCsReq { + #[prost(uint32, tag = "5")] + pub interacted_prop_entity_id: u32, + #[prost(bool, tag = "9")] + pub hmilghcpede: bool, +} /// Obf: LOJEMCFFBJD #[derive(proto_derive::CmdID)] -#[cmdid(5676)] +#[cmdid(5627)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetRogueShopMiracleInfoScRsp { - #[prost(uint32, tag = "2")] - pub retcode: u32, - #[prost(message, optional, tag = "3")] - pub eeppkmpajoh: ::core::option::Option, - #[prost(int32, tag = "4")] - pub efojocfgidj: i32, - #[prost(int32, tag = "13")] - pub aefhkanbfnc: i32, - #[prost(message, optional, tag = "12")] + #[prost(message, optional, tag = "13")] pub ihjhccfmifd: ::core::option::Option, + #[prost(int32, tag = "12")] + pub efojocfgidj: i32, + #[prost(int32, tag = "7")] + pub aefhkanbfnc: i32, + #[prost(uint32, tag = "15")] + pub retcode: u32, + #[prost(message, optional, tag = "8")] + pub eeppkmpajoh: ::core::option::Option, } /// Obf: PPLOEIKJAMO #[derive(proto_derive::CmdID)] -#[cmdid(5638)] +#[cmdid(5642)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetRogueShopFormulaInfoCsReq { - #[prost(uint32, tag = "13")] - pub interacted_prop_entity_id: u32, - #[prost(bool, tag = "12")] + #[prost(bool, tag = "8")] pub hmilghcpede: bool, + #[prost(uint32, tag = "14")] + pub interacted_prop_entity_id: u32, } /// Obf: OKNJBLFCFBJ #[derive(proto_derive::CmdID)] -#[cmdid(5605)] +#[cmdid(5692)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetRogueShopFormulaInfoScRsp { - #[prost(int32, tag = "5")] - pub efojocfgidj: i32, - #[prost(int32, tag = "3")] - pub aefhkanbfnc: i32, - #[prost(message, optional, tag = "12")] + #[prost(message, optional, tag = "8")] pub ckaanmddkcj: ::core::option::Option, - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "15")] pub retcode: u32, - #[prost(message, optional, tag = "7")] + #[prost(int32, tag = "6")] + pub aefhkanbfnc: i32, + #[prost(message, optional, tag = "1")] pub ihjhccfmifd: ::core::option::Option, + #[prost(int32, tag = "7")] + pub efojocfgidj: i32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Agpifofncna { #[prost(uint32, tag = "9")] - pub deidchamdba: u32, - #[prost(uint32, tag = "8")] pub interacted_prop_entity_id: u32, + #[prost(uint32, tag = "10")] + pub deidchamdba: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Mhddhodmmia { - #[prost(uint32, repeated, tag = "15")] - pub bought_miracle_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "2")] pub interacted_prop_entity_id: u32, + #[prost(uint32, repeated, tag = "10")] + pub bought_miracle_list: ::prost::alloc::vec::Vec, } /// Obf: HMOLHFMAJBG #[derive(proto_derive::CmdID)] -#[cmdid(5682)] +#[cmdid(5610)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct BuyRogueShopFormulaCsReq { - #[prost(uint32, tag = "6")] - pub interacted_prop_entity_id: u32, - #[prost(uint32, repeated, tag = "13")] + #[prost(uint32, repeated, tag = "8")] pub aoiihcfmfph: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "9")] + pub interacted_prop_entity_id: u32, } /// Obf: PDHLODCDANK #[derive(proto_derive::CmdID)] -#[cmdid(5622)] +#[cmdid(5654)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct BuyRogueShopMiracleScRsp { - #[prost(uint32, tag = "15")] - pub retcode: u32, - #[prost(message, optional, tag = "6")] + #[prost(message, optional, tag = "5")] pub eeppkmpajoh: ::core::option::Option, + #[prost(uint32, tag = "14")] + pub retcode: u32, } /// Obf: JOBBMGDPHDE #[derive(proto_derive::CmdID)] -#[cmdid(5672)] +#[cmdid(5680)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct BuyRogueShopBuffScRsp { - #[prost(uint32, tag = "1")] - pub retcode: u32, - #[prost(message, optional, tag = "13")] + #[prost(message, optional, tag = "1")] pub lgopnbhhhbg: ::core::option::Option, + #[prost(uint32, tag = "10")] + pub retcode: u32, } /// Obf: GLPLAMBGPFJ #[derive(proto_derive::CmdID)] -#[cmdid(5647)] +#[cmdid(5604)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct BuyRogueShopFormulaScRsp { - #[prost(message, optional, tag = "3")] + #[prost(message, optional, tag = "9")] pub ckaanmddkcj: ::core::option::Option, - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "2")] pub retcode: u32, } /// Obf: FHGMELFEJKN #[derive(proto_derive::CmdID)] -#[cmdid(5685)] +#[cmdid(5602)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RogueNpcDisappearCsReq { - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "11")] pub icinggkoemg: u32, } /// Obf: DEPHMGJOMCM #[derive(proto_derive::CmdID)] -#[cmdid(5616)] +#[cmdid(5605)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RogueNpcDisappearScRsp { - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "12")] pub retcode: u32, } /// Obf: MAJNGEFBHDG #[derive(proto_derive::CmdID)] -#[cmdid(5692)] +#[cmdid(5615)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RogueShopBeginBattleCsReq { - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "6")] pub interacted_prop_entity_id: u32, } /// Obf: GFLHCFLNPBB #[derive(proto_derive::CmdID)] -#[cmdid(5623)] +#[cmdid(5676)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RogueShopBeginBattleScRsp { - #[prost(message, optional, tag = "9")] - pub nopheehjhek: ::core::option::Option, - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "13")] pub retcode: u32, + #[prost(message, optional, tag = "3")] + pub nopheehjhek: ::core::option::Option, } /// Obf: BNCCMIIMGOL #[derive(proto_derive::CmdID)] -#[cmdid(5613)] +#[cmdid(5655)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SyncRogueCommonActionResultScNotify { - #[prost(message, repeated, tag = "1")] - pub flbmhlphfnd: ::prost::alloc::vec::Vec, - #[prost(enumeration = "Nemklkdbeap", tag = "7")] - pub fgmgpljckpc: i32, - #[prost(uint32, tag = "6")] - pub bngfaignphe: u32, + #[prost(uint32, tag = "13")] + pub rogue_sub_mode: u32, + #[prost(message, repeated, tag = "11")] + pub action_result_list: ::prost::alloc::vec::Vec, + #[prost(enumeration = "RogueCommonActionResultDisplayType", tag = "15")] + pub display_type: i32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Dgnddjgnjlb { - #[prost(enumeration = "Cfjgpifiool", tag = "11")] +pub struct RogueCommonActionResult { + #[prost(enumeration = "Cfjgpifiool", tag = "15")] pub source: i32, #[prost(message, optional, tag = "5")] pub pbhmgchkjgo: ::core::option::Option, @@ -23736,81 +25131,81 @@ pub struct Dgnddjgnjlb { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Aenockpnfci { - #[prost(uint32, tag = "2")] - pub key: u32, - #[prost(int32, tag = "12")] + #[prost(int32, tag = "6")] pub jpcllfaieec: i32, + #[prost(uint32, tag = "14")] + pub key: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Mlpknllaoif { - #[prost(int32, tag = "11")] - pub cfclogfjpbd: i32, - #[prost(uint32, tag = "15")] - pub jpnfbfkhpgd: u32, #[prost(int32, tag = "9")] pub eegcbbhophg: i32, + #[prost(uint32, tag = "1")] + pub jpnfbfkhpgd: u32, + #[prost(int32, tag = "4")] + pub cfclogfjpbd: i32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Nhehpgonepk { - #[prost(uint32, tag = "12")] - pub formula_id: u32, - #[prost(message, repeated, tag = "10")] + #[prost(message, repeated, tag = "1")] pub kokiifcmogl: ::prost::alloc::vec::Vec, - #[prost(bool, tag = "9")] + #[prost(uint32, tag = "7")] + pub formula_id: u32, + #[prost(bool, tag = "13")] pub eeeionccing: bool, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Fcknnieaohi { - #[prost(map = "uint32, int32", tag = "2")] + #[prost(map = "uint32, int32", tag = "9")] pub nadoccephjo: ::std::collections::HashMap, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Dbndiagbmji { - #[prost(message, optional, tag = "14")] + #[prost(message, optional, tag = "2")] pub gepenpidkij: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Cdnejceknlf { - #[prost(message, optional, tag = "15")] + #[prost(message, optional, tag = "8")] pub gepenpidkij: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Dcgjlcpclbl { - #[prost(message, optional, tag = "9")] + #[prost(message, optional, tag = "8")] pub gepenpidkij: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Mjcopbfejji { - #[prost(message, optional, tag = "4")] + #[prost(message, optional, tag = "10")] pub gepenpidkij: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Fipfphbphlh { - #[prost(message, repeated, tag = "8")] + #[prost(message, repeated, tag = "2")] pub ilbkmnajgmo: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Lbkkdlhoegn { - #[prost(message, optional, tag = "13")] + #[prost(message, optional, tag = "10")] pub value: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Kaajbaoakbo { - #[prost(message, optional, tag = "3")] - pub dlmhaecabod: ::core::option::Option, - #[prost(message, repeated, tag = "11")] + #[prost(message, repeated, tag = "9")] pub omfdhfgbgaa: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "14")] + #[prost(message, optional, tag = "7")] + pub dlmhaecabod: ::core::option::Option, + #[prost(message, repeated, tag = "2")] pub ilbkmnajgmo: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] @@ -23822,113 +25217,113 @@ pub struct Goeekpllcbj { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Dflkelghook { - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "11")] pub bhapdmjcklb: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Fbnjofcemil { - #[prost(map = "uint32, bool", tag = "7")] + #[prost(map = "uint32, bool", tag = "3")] pub nfnmbgboccl: ::std::collections::HashMap, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Pnieaceijkm { #[prost( - oneof = "pnieaceijkm::Buff", - tags = "2, 12, 750, 1776, 1553, 1300, 1675, 59, 1320, 1023, 546, 1045, 541, 294, 74, 1643, 1865, 1469, 1160, 587, 1521, 1743, 1388, 718, 1960, 1424, 1419, 1813, 1708" + oneof = "pnieaceijkm::Info", + tags = "11, 8, 871, 1578, 905, 2004, 348, 278, 495, 793, 769, 1481, 1069, 1308, 1955, 780, 1270, 1505, 721, 1410, 1820, 1762, 408, 1925, 1610, 1593, 1282, 1453, 574" )] - pub buff: ::core::option::Option, + pub info: ::core::option::Option, } /// Nested message and enum types in `PNIEACEIJKM`. pub mod pnieaceijkm { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum Buff { - #[prost(message, tag = "2")] + pub enum Info { + #[prost(message, tag = "11")] Ieejchfepha(super::Kildamjjlmf), - #[prost(message, tag = "12")] + #[prost(message, tag = "8")] Indnbedjnco(super::Kildamjjlmf), - #[prost(message, tag = "750")] + #[prost(message, tag = "871")] Noenhhilnah(super::Ffamnkoaihf), - #[prost(message, tag = "1776")] + #[prost(message, tag = "1578")] Kpbjipgejpl(super::Ffamnkoaihf), - #[prost(message, tag = "1553")] + #[prost(message, tag = "905")] Kbhpfadbdoh(super::Jpajnjbebfb), - #[prost(message, tag = "1300")] + #[prost(message, tag = "2004")] Fbnfljkljgc(super::Gliaipcabim), - #[prost(message, tag = "1675")] + #[prost(message, tag = "348")] Apfmfbbdcjk(super::Ibibpoopden), - #[prost(message, tag = "59")] + #[prost(message, tag = "278")] Bmdjopghlca(super::Maaaagpjjfe), - #[prost(message, tag = "1320")] + #[prost(message, tag = "495")] Ompbjjohpoo(super::Pbaloejcgfn), - #[prost(message, tag = "1023")] + #[prost(message, tag = "793")] Iomjmeaomfi(super::Hblnhganbab), - #[prost(message, tag = "546")] + #[prost(message, tag = "769")] Bblgeemhiim(super::Mdgjikljdde), - #[prost(message, tag = "1045")] + #[prost(message, tag = "1481")] Manfkmddpeg(super::Dbndiagbmji), - #[prost(message, tag = "541")] + #[prost(message, tag = "1069")] Apgccjfbdlh(super::Cdnejceknlf), - #[prost(message, tag = "294")] + #[prost(message, tag = "1308")] Jfpmgojdkmd(super::Dcgjlcpclbl), - #[prost(message, tag = "74")] + #[prost(message, tag = "1955")] Pkngaijmdao(super::Mjcopbfejji), - #[prost(message, tag = "1643")] + #[prost(message, tag = "780")] Dmkgebhpipj(super::Fipfphbphlh), - #[prost(message, tag = "1865")] + #[prost(message, tag = "1270")] Kpbmfkpcbma(super::Lbkkdlhoegn), - #[prost(message, tag = "1469")] + #[prost(message, tag = "1505")] Behlmokiafl(super::Goeekpllcbj), - #[prost(message, tag = "1160")] + #[prost(message, tag = "721")] Kaifndmjjmk(super::Dflkelghook), - #[prost(message, tag = "587")] + #[prost(message, tag = "1410")] Aidojpolnon(super::Knjaeackjib), - #[prost(message, tag = "1521")] + #[prost(message, tag = "1820")] Jblkicbnmhl(super::Lhpdolpkfeo), - #[prost(message, tag = "1743")] + #[prost(message, tag = "1762")] Kaailmgchok(super::Aeffjlgfamh), - #[prost(message, tag = "1388")] + #[prost(message, tag = "408")] Jcdmgfpmiam(super::Jfgflgblcaj), - #[prost(message, tag = "718")] + #[prost(message, tag = "1925")] Piofbmmeghb(super::Jfgflgblcaj), - #[prost(message, tag = "1960")] + #[prost(message, tag = "1610")] Jgdaebnefka(super::Jfgflgblcaj), - #[prost(message, tag = "1424")] + #[prost(message, tag = "1593")] Aoibhcmanfk(super::Jbihocioanh), - #[prost(message, tag = "1419")] + #[prost(message, tag = "1282")] Mibobjidcad(super::Hobkeoicbmi), - #[prost(message, tag = "1813")] + #[prost(message, tag = "1453")] Edbpehabhbi(super::Lnamgomhgjb), - #[prost(message, tag = "1708")] + #[prost(message, tag = "574")] Cjohmipjhnm(super::Lnamgomhgjb), } } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Lojdfdjgoda { - #[prost(bool, tag = "3")] + #[prost(uint32, repeated, tag = "5")] + pub habohejfcke: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "13")] + pub bilbohbdbpn: u32, + #[prost(bool, tag = "10")] pub ehpmcgoelgb: bool, + #[prost(uint32, tag = "2")] + pub kemeoojkoib: u32, + #[prost(message, optional, tag = "3")] + pub kidaaobhlpd: ::core::option::Option, + #[prost(uint32, tag = "7")] + pub jcoggobkbpj: u32, #[prost(uint32, tag = "9")] pub acbggdlenhp: u32, - #[prost(message, optional, tag = "4")] - pub kidaaobhlpd: ::core::option::Option, - #[prost(uint32, tag = "11")] - pub kemeoojkoib: u32, - #[prost(uint32, tag = "6")] - pub jcoggobkbpj: u32, - #[prost(uint32, repeated, tag = "7")] + #[prost(uint32, repeated, tag = "12")] pub ahcgpccoofo: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "8")] - pub bilbohbdbpn: u32, - #[prost(uint32, repeated, tag = "1")] - pub habohejfcke: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Nolcmkcneaf { - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "6")] pub oambghfhfmo: u32, } #[derive(proto_derive::CmdID)] @@ -23937,15 +25332,15 @@ pub struct Plcgkieiegd {} #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Fhmaianenpo { - #[prost(uint32, tag = "1")] - pub bilbohbdbpn: u32, - #[prost(uint32, repeated, tag = "15")] + #[prost(uint32, repeated, tag = "10")] pub laldacmchfi: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "3")] + pub bilbohbdbpn: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Onoofhdeidd { - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "4")] pub oambghfhfmo: u32, } #[derive(proto_derive::CmdID)] @@ -23957,19 +25352,19 @@ pub struct Khgcdeimlhn {} #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Ehefommbnaf { - #[prost(message, optional, tag = "3")] + #[prost(message, optional, tag = "5")] pub bjehoafbhbe: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Bpddobahpna { - #[prost(message, optional, tag = "1")] + #[prost(message, optional, tag = "7")] pub bjehoafbhbe: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Ekmahafgngj { - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "7")] pub oambghfhfmo: u32, } #[derive(proto_derive::CmdID)] @@ -23978,7 +25373,7 @@ pub struct Hbiblkkeoac {} #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Lgcmeepjmha { - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "2")] pub idignadndnf: u32, } #[derive(proto_derive::CmdID)] @@ -23986,56 +25381,56 @@ pub struct Lgcmeepjmha { pub struct Koegffomkip { #[prost(uint32, tag = "6")] pub slot: u32, - /// uint32 slot = 14; - #[prost(uint32, tag = "15")] + /// uint32 slot = 5; + #[prost(uint32, tag = "4")] pub elpinnnalbd: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Inpinnpihob { - #[prost(uint32, tag = "15")] - pub level: u32, - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "7")] pub scepter_id: u32, + #[prost(uint32, tag = "5")] + pub level: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Jbihocioanh { - #[prost(map = "uint32, uint32", tag = "9")] + #[prost(map = "uint32, uint32", tag = "3")] pub trench_count: ::std::collections::HashMap, - #[prost(message, repeated, tag = "1")] - pub plmkmopcdlm: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "2")] + #[prost(message, repeated, tag = "5")] pub fpgefhenccf: ::prost::alloc::vec::Vec, - #[prost(message, optional, tag = "13")] + #[prost(message, repeated, tag = "11")] + pub plmkmopcdlm: ::prost::alloc::vec::Vec, + #[prost(message, optional, tag = "1")] pub scepter: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Obipoolidal { + #[prost(uint32, tag = "14")] + pub unit_id: u32, #[prost(uint32, tag = "13")] pub level: u32, - #[prost(uint32, tag = "8")] - pub unit_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Jfgflgblcaj { - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "13")] pub unique_id: u32, - #[prost(message, optional, tag = "10")] + #[prost(message, optional, tag = "4")] pub lcbecpoogcl: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Knjaeackjib { - #[prost(message, optional, tag = "5")] + #[prost(message, optional, tag = "2")] pub clmfnahfnll: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Lhpdolpkfeo { - #[prost(message, optional, tag = "11")] + #[prost(message, optional, tag = "4")] pub clmfnahfnll: ::core::option::Option, } #[derive(proto_derive::CmdID)] @@ -24047,47 +25442,47 @@ pub struct Aeffjlgfamh { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Okecopgklee { - #[prost(message, optional, tag = "1")] + #[prost(message, optional, tag = "13")] pub pmgjicchhdl: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Pgakdejbohf { - #[prost(message, optional, tag = "9")] + #[prost(message, optional, tag = "8")] pub jfpjbbjlifk: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Oedoaogakpp { #[prost(uint32, tag = "1")] - pub bilbohbdbpn: u32, - #[prost(message, optional, tag = "10")] - pub fgdjamhokif: ::core::option::Option, - #[prost(uint32, tag = "13")] - pub ckkekmjmabc: u32, - #[prost(message, repeated, tag = "11")] - pub gigibipgpfc: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "15")] pub igchbpakbcb: u32, + #[prost(uint32, tag = "9")] + pub ckkekmjmabc: u32, + #[prost(message, repeated, tag = "4")] + pub gigibipgpfc: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "12")] + pub bilbohbdbpn: u32, + #[prost(message, optional, tag = "8")] + pub fgdjamhokif: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Kkagnmemkog { - #[prost(uint32, tag = "8")] - pub bilbohbdbpn: u32, - #[prost(message, repeated, tag = "12")] + #[prost(message, repeated, tag = "6")] pub gigibipgpfc: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "10")] + pub bilbohbdbpn: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Hhhcpcofppo { - #[prost(message, optional, tag = "12")] + #[prost(message, optional, tag = "13")] pub pobkdoigdab: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Iipeghdkhgd { - #[prost(message, optional, tag = "7")] + #[prost(message, optional, tag = "15")] pub pobkdoigdab: ::core::option::Option, } #[derive(proto_derive::CmdID)] @@ -24105,26 +25500,26 @@ pub struct Imdhpdbhebc {} #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Hobkeoicbmi { - #[prost(uint32, repeated, tag = "2")] + #[prost(uint32, repeated, tag = "11")] pub hkklpldnpkd: ::prost::alloc::vec::Vec, - #[prost(message, optional, tag = "8")] + #[prost(message, optional, tag = "7")] pub eocipkgjfop: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Flnagdeoopg { - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "10")] pub bilbohbdbpn: u32, - #[prost(message, repeated, tag = "14")] + #[prost(message, repeated, tag = "11")] pub chpkdjnhpfo: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Ahkfiakmklo { - #[prost(message, optional, tag = "6")] - pub obfpaiamijl: ::core::option::Option, - #[prost(bool, tag = "10")] + #[prost(bool, tag = "8")] pub abbmhpkgaik: bool, + #[prost(message, optional, tag = "11")] + pub obfpaiamijl: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] @@ -24135,16 +25530,16 @@ pub struct Ikcndljlapp {} #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Jkhkebmobej { - #[prost(message, optional, tag = "13")] + #[prost(message, optional, tag = "8")] pub jbjggnbjkdj: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Jcdljbphomd { - #[prost(message, optional, tag = "10")] - pub ghelbobfpam: ::core::option::Option, - #[prost(bool, tag = "13")] + #[prost(bool, tag = "7")] pub blciljenelo: bool, + #[prost(message, optional, tag = "4")] + pub ghelbobfpam: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] @@ -24152,35 +25547,39 @@ pub struct Lgpgcjdoibk {} #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Lnamgomhgjb { - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "1")] pub iboekjbomog: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Cgjnhnmamdh { - #[prost(uint32, repeated, tag = "10")] + #[prost(uint32, repeated, tag = "1")] pub kdaoimpppki: ::prost::alloc::vec::Vec, + #[prost(int32, tag = "11")] + pub jmcembehcoj: i32, #[prost(uint32, tag = "9")] pub ldfgifdfpcf: u32, - #[prost(int32, tag = "5")] - pub jmcembehcoj: i32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Cggbpjichgf { - #[prost(uint32, repeated, tag = "8")] - pub gbooalmikob: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "14")] - pub bilbohbdbpn: u32, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "5")] pub nclaehaijjb: u32, - #[prost(enumeration = "Ndkljjiimgm", tag = "11")] + #[prost(enumeration = "Ndkljjiimgm", tag = "4")] pub obiedgmebdl: i32, + #[prost(uint32, tag = "10")] + pub gmilngghedc: u32, + #[prost(uint32, repeated, tag = "1")] + pub gbooalmikob: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "9")] + pub bilbohbdbpn: u32, + #[prost(uint32, tag = "13")] + pub ofbmpojpdoj: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Haojlhgnfpm { - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "5")] pub jmehmhkbjah: u32, } #[derive(proto_derive::CmdID)] @@ -24188,443 +25587,456 @@ pub struct Haojlhgnfpm { pub struct Bljoggmjbmd {} #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Oopinhfmece {} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Onpnbiommgb { + #[prost(message, optional, tag = "11")] + pub nifjfldkikk: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Pigfbkojnhg { - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "15")] pub event_unique_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Ajnajinfjic { - #[prost(uint32, tag = "14")] - pub battle_event_id: u32, - #[prost(bool, tag = "6")] + #[prost(bool, tag = "12")] pub is_win: bool, + #[prost(uint32, tag = "13")] + pub battle_event_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Mnmloapbhnf { - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "10")] pub event_unique_id: u32, } /// Obf: ODFDKILDHBE #[derive(proto_derive::CmdID)] -#[cmdid(5678)] +#[cmdid(5671)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SyncRogueCommonPendingActionScNotify { - #[prost(message, optional, tag = "9")] - pub nfojnohloac: ::core::option::Option, - #[prost(uint32, tag = "3")] - pub bngfaignphe: u32, + #[prost(uint32, tag = "6")] + pub rogue_sub_mode: u32, + #[prost(message, optional, tag = "5")] + pub action: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Kfpmaiaadmo { - #[prost(uint32, tag = "1")] +pub struct RogueCommonPendingAction { + #[prost(uint32, tag = "8")] pub hbapccegnme: u32, - #[prost(message, optional, tag = "15")] + #[prost(message, optional, tag = "4")] pub pbhmgchkjgo: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Eiohagheloa { #[prost( - oneof = "eiohagheloa::Buff", - tags = "620, 616, 1501, 1179, 19, 185, 1572, 1933, 1334, 701, 608, 306, 1346, 722, 1207, 1815, 522, 1078, 308, 625, 1220, 532, 1108, 1142, 631, 1714, 285" + oneof = "eiohagheloa::Info", + tags = "1921, 715, 833, 258, 1623, 1543, 1105, 78, 580, 661, 1386, 1470, 1613, 1592, 912, 1547, 485, 1153, 382, 765, 1619, 478, 1517, 329, 35, 788, 616" )] - pub buff: ::core::option::Option, + pub info: ::core::option::Option, } /// Nested message and enum types in `EIOHAGHELOA`. pub mod eiohagheloa { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum Buff { - #[prost(message, tag = "620")] + pub enum Info { + #[prost(message, tag = "1921")] Nlnbngijafi(super::Elheaghnndm), - #[prost(message, tag = "616")] + #[prost(message, tag = "715")] Fphhhiobfai(super::Lefcomgmpcl), - #[prost(message, tag = "1501")] + #[prost(message, tag = "833")] Ajddfancejn(super::Ipgkagffbhf), - #[prost(message, tag = "1179")] + #[prost(message, tag = "258")] Imikpgfhlhk(super::Kbpmfkknbjh), - #[prost(message, tag = "19")] + #[prost(message, tag = "1623")] Cjenjifeidi(super::Ebhghgiigom), - #[prost(message, tag = "185")] + #[prost(message, tag = "1543")] Bicjempplam(super::Anmcaimelca), - #[prost(message, tag = "1572")] + #[prost(message, tag = "1105")] Aelpppiefab(super::Gabbehoipjc), - #[prost(message, tag = "1933")] + #[prost(message, tag = "78")] Bediachlcii(super::Mlkiccaelke), - #[prost(message, tag = "1334")] + #[prost(message, tag = "580")] Ladgcoomnka(super::Eakecfappkd), - #[prost(message, tag = "701")] + #[prost(message, tag = "661")] Cgkfomncnak(super::Eldafcnmfbf), - #[prost(message, tag = "608")] + #[prost(message, tag = "1386")] Eiefmpfllcm(super::Lcagiooiidn), - #[prost(message, tag = "306")] + #[prost(message, tag = "1470")] Nkkbodgfclm(super::Ofpeknmfmab), - #[prost(message, tag = "1346")] + #[prost(message, tag = "1613")] Gkflnmojncp(super::Dlcjmohobdh), - #[prost(message, tag = "722")] + #[prost(message, tag = "1592")] Bjehoafbhbe(super::Lojdfdjgoda), - #[prost(message, tag = "1207")] + #[prost(message, tag = "912")] Jbkpikajpeb(super::Fhmaianenpo), - #[prost(message, tag = "1815")] + #[prost(message, tag = "1547")] Hcchfjefanj(super::Bpddobahpna), - #[prost(message, tag = "522")] + #[prost(message, tag = "485")] Oiomhopnimf(super::Oedoaogakpp), - #[prost(message, tag = "1078")] + #[prost(message, tag = "1153")] Ifclaafpkhc(super::Flnagdeoopg), - #[prost(message, tag = "308")] + #[prost(message, tag = "382")] Hfjechfannf(super::Jkhkebmobej), - #[prost(message, tag = "625")] + #[prost(message, tag = "765")] Ldjomiojepf(super::Oedoaogakpp), - #[prost(message, tag = "1220")] + #[prost(message, tag = "1619")] Lmnoncmbioo(super::Oedoaogakpp), - #[prost(message, tag = "532")] + #[prost(message, tag = "478")] Cnlmcobncai(super::Oedoaogakpp), - #[prost(message, tag = "1108")] + #[prost(message, tag = "1517")] Fhokdllicjl(super::Kkagnmemkog), - #[prost(message, tag = "1142")] + #[prost(message, tag = "329")] Phdemdbgoib(super::Kkagnmemkog), - #[prost(message, tag = "631")] + #[prost(message, tag = "35")] Kljjibpjgff(super::Kkagnmemkog), - #[prost(message, tag = "1714")] + #[prost(message, tag = "788")] Dlfalfgfdhe(super::Pigfbkojnhg), - #[prost(message, tag = "285")] + #[prost(message, tag = "616")] Npcdbpndgop(super::Cggbpjichgf), } } /// Obf: EHGOIEIOLEF #[derive(proto_derive::CmdID)] -#[cmdid(5687)] +#[cmdid(5693)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct HandleRogueCommonPendingActionCsReq { #[prost(uint32, tag = "9")] pub ifdkllhfpjb: u32, #[prost( - oneof = "handle_rogue_common_pending_action_cs_req::Buff", - tags = "1893, 864, 1478, 754, 1267, 136, 1573, 817, 427, 1970, 461, 1861, 714, 2032, 234, 960, 106, 1571, 997, 1412, 395, 1429, 232, 1036, 1168, 1115, 183, 71, 1799, 1027, 122087, 221323" + oneof = "handle_rogue_common_pending_action_cs_req::Info", + tags = "1234, 1593, 407, 533, 1851, 235, 1427, 774, 651, 179, 1869, 136, 1276, 822, 1348, 49, 1260, 220, 1158, 64, 89, 1155, 1834, 1960, 1338, 1521, 1855, 93, 1189, 108, 757, 235803, 45077" )] - pub buff: ::core::option::Option, + pub info: ::core::option::Option, } /// Nested message and enum types in `HandleRogueCommonPendingActionCsReq`. pub mod handle_rogue_common_pending_action_cs_req { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Oneof)] - pub enum Buff { - #[prost(message, tag = "1893")] + pub enum Info { + #[prost(message, tag = "1234")] Jkhbbdlchid(super::Hkhfbelmdcg), - #[prost(message, tag = "864")] + #[prost(message, tag = "1593")] Kbnegolplfc(super::Pbmaklnjeko), - #[prost(message, tag = "1478")] + #[prost(message, tag = "407")] Gdkgibekgpf(super::Okefiddnlkg), - #[prost(message, tag = "754")] + #[prost(message, tag = "533")] Oncngiilenf(super::Mmndajfijoj), - #[prost(message, tag = "1267")] + #[prost(message, tag = "1851")] Glejcdpdjne(super::Bfbfmlbhgoh), - #[prost(message, tag = "136")] + #[prost(message, tag = "235")] Ooagpgdpjoa(super::Mpphhnaeedk), - #[prost(message, tag = "1573")] + #[prost(message, tag = "1427")] Idbaljbnbke(super::Jfpfdjppoag), - #[prost(message, tag = "817")] + #[prost(message, tag = "774")] Gnebjeppkej(super::Nalelighdaa), - #[prost(message, tag = "427")] + #[prost(message, tag = "651")] Kjlafilapjf(super::Pkodmmphibc), - #[prost(message, tag = "1970")] + #[prost(message, tag = "179")] Flfpcphlago(super::Nhckhplklio), - #[prost(message, tag = "461")] + #[prost(message, tag = "1869")] Epoakmfmflm(super::Lhjpikekpgh), - #[prost(message, tag = "1861")] + #[prost(message, tag = "136")] Fkpfokhbpkk(super::Imcbiigokpm), - #[prost(message, tag = "714")] + #[prost(message, tag = "1276")] Eodclaipcae(super::Lkmkhacmapc), - #[prost(message, tag = "2032")] + #[prost(message, tag = "822")] Aocodaobkhm(super::Imlbibjkpdb), - #[prost(message, tag = "234")] + #[prost(message, tag = "1348")] Egggggglfho(super::Nolcmkcneaf), - #[prost(message, tag = "960")] + #[prost(message, tag = "49")] Lnploeofccj(super::Khgcdeimlhn), - #[prost(message, tag = "106")] + #[prost(message, tag = "1260")] Ieabohkeapa(super::Onoofhdeidd), - #[prost(message, tag = "1571")] + #[prost(message, tag = "220")] Nediibjhgfo(super::Ekmahafgngj), - #[prost(message, tag = "997")] + #[prost(message, tag = "1158")] Jgpcbcjkonh(super::Hhhcpcofppo), - #[prost(message, tag = "1412")] + #[prost(message, tag = "64")] Hknjipjhocg(super::Ahkfiakmklo), - #[prost(message, tag = "395")] + #[prost(message, tag = "89")] Ldaglimnman(super::Jcdljbphomd), - #[prost(message, tag = "1429")] + #[prost(message, tag = "1155")] Aflheikjnbn(super::Hhhcpcofppo), - #[prost(message, tag = "232")] + #[prost(message, tag = "1834")] Phkbflnpefi(super::Hhhcpcofppo), - #[prost(message, tag = "1036")] + #[prost(message, tag = "1960")] Gocmndkfoab(super::Hhhcpcofppo), - #[prost(message, tag = "1168")] + #[prost(message, tag = "1338")] Chonecoliha(super::Iipeghdkhgd), - #[prost(message, tag = "1115")] + #[prost(message, tag = "1521")] Moaogacboij(super::Iipeghdkhgd), - #[prost(message, tag = "183")] + #[prost(message, tag = "1855")] Kilhfppbbfm(super::Iipeghdkhgd), - #[prost(message, tag = "71")] + #[prost(message, tag = "93")] Blhdfajhcja(super::Haojlhgnfpm), - #[prost(message, tag = "1799")] + #[prost(message, tag = "1189")] Lpjbaimjaik(super::Haojlhgnfpm), - #[prost(message, tag = "1027")] + #[prost(message, tag = "108")] + Hdhdpggmepb(super::Oopinhfmece), + #[prost(message, tag = "757")] Ecegpejcpbl(super::Lgcmeepjmha), - #[prost(message, tag = "122087")] + #[prost(message, tag = "235803")] Fkpdkfemkec(super::Ajnajinfjic), - #[prost(message, tag = "221323")] + #[prost(message, tag = "45077")] Llnmcjcfbmj(super::Mnmloapbhnf), } } /// Obf: DFNKMPOMIEH #[derive(proto_derive::CmdID)] -#[cmdid(5608)] +#[cmdid(5664)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct HandleRogueCommonPendingActionScRsp { - #[prost(uint32, tag = "10")] - pub ifdkllhfpjb: u32, - #[prost(uint32, tag = "11")] - pub hbapccegnme: u32, #[prost(uint32, tag = "4")] + pub ifdkllhfpjb: u32, + #[prost(uint32, tag = "6")] + pub hbapccegnme: u32, + #[prost(uint32, tag = "5")] pub retcode: u32, #[prost( - oneof = "handle_rogue_common_pending_action_sc_rsp::Buff", - tags = "810, 239, 553, 653, 1123, 1248, 672, 1714, 524, 347, 1934, 90, 1639, 400, 1066, 1688, 1813, 1856, 639, 1917, 1297, 1554, 727, 629, 1822, 771, 1651" + oneof = "handle_rogue_common_pending_action_sc_rsp::Info", + tags = "1571, 1435, 632, 1919, 878, 1558, 1511, 1838, 949, 762, 830, 98, 853, 289, 188, 1327, 185, 1397, 396, 1075, 271, 630, 426, 1466, 1144, 151, 910, 501" )] - pub buff: ::core::option::Option, + pub info: ::core::option::Option, } /// Nested message and enum types in `HandleRogueCommonPendingActionScRsp`. pub mod handle_rogue_common_pending_action_sc_rsp { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum Buff { - #[prost(message, tag = "810")] + pub enum Info { + #[prost(message, tag = "1571")] Pnadbjejbof(super::Hcajjefeijd), - #[prost(message, tag = "239")] + #[prost(message, tag = "1435")] Kkiangabfnj(super::Fkdbihnpche), - #[prost(message, tag = "553")] + #[prost(message, tag = "632")] Cldbplniaen(super::Dlhpdalgdeh), - #[prost(message, tag = "653")] + #[prost(message, tag = "1919")] Goomopmalol(super::Djonnopdjhh), - #[prost(message, tag = "1123")] + #[prost(message, tag = "878")] Kbflnjpmoah(super::Oopdmmnnkgi), - #[prost(message, tag = "1248")] + #[prost(message, tag = "1558")] Jkjofmhjgib(super::Cffocchbamh), - #[prost(message, tag = "672")] + #[prost(message, tag = "1511")] Dddenapjbka(super::Honkbmjpjaa), - #[prost(message, tag = "1714")] + #[prost(message, tag = "1838")] Dmcepjkoogc(super::Paocongeljk), - #[prost(message, tag = "524")] + #[prost(message, tag = "949")] Fdppgkddpgc(super::Blfjbkbhjil), - #[prost(message, tag = "347")] + #[prost(message, tag = "762")] Mapbdbmfimd(super::Omjfmbjmfmc), - #[prost(message, tag = "1934")] + #[prost(message, tag = "830")] Oihjekimppd(super::Moiknhhcabh), - #[prost(message, tag = "90")] + #[prost(message, tag = "98")] Okpcjlpmbad(super::Fhikplaioei), - #[prost(message, tag = "1639")] + #[prost(message, tag = "853")] Dpgbcafkdpm(super::Nococfhoajc), - #[prost(message, tag = "400")] + #[prost(message, tag = "289")] Hmobefjkdpd(super::Jcahmiooldb), - #[prost(message, tag = "1066")] + #[prost(message, tag = "188")] Japiiijmpge(super::Plcgkieiegd), - #[prost(message, tag = "1688")] + #[prost(message, tag = "1327")] Cpopchnddfm(super::Ehefommbnaf), - #[prost(message, tag = "1813")] + #[prost(message, tag = "185")] Ndjbgfheici(super::Hkjegongjnp), - #[prost(message, tag = "1856")] + #[prost(message, tag = "1397")] Cobeibnlgjf(super::Hbiblkkeoac), - #[prost(message, tag = "639")] + #[prost(message, tag = "396")] Blefmehonoo(super::Mhijocjhong), - #[prost(message, tag = "1917")] + #[prost(message, tag = "1075")] Ihbodkmfpnf(super::Bledojdglaa), - #[prost(message, tag = "1297")] + #[prost(message, tag = "271")] Lbojliiabap(super::Lgpgcjdoibk), - #[prost(message, tag = "1554")] + #[prost(message, tag = "630")] Ilhbhphdedl(super::Abpncpoijci), - #[prost(message, tag = "727")] + #[prost(message, tag = "426")] Dicgeadecpk(super::Imnnnjggpag), - #[prost(message, tag = "629")] + #[prost(message, tag = "1466")] Gabicmfakpd(super::Imdhpdbhebc), - #[prost(message, tag = "1822")] + #[prost(message, tag = "1144")] Dkmmoimojdm(super::Ikcndljlapp), - #[prost(message, tag = "771")] + #[prost(message, tag = "151")] Hcfopgmleno(super::Bljoggmjbmd), - #[prost(message, tag = "1651")] + #[prost(message, tag = "910")] Gdmgoelomfk(super::Bljoggmjbmd), + #[prost(message, tag = "501")] + Cddnkgjaefi(super::Onpnbiommgb), } } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Fcpmbjhfbnj { - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "12")] pub ojeblmkkmgo: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Giadlheephd { - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "11")] pub fhhgdpcecee: u32, - #[prost(bool, tag = "5")] + #[prost(bool, tag = "14")] pub fjoilohphlc: bool, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Lognkekhbai { - #[prost(bool, tag = "15")] - pub fjoilohphlc: bool, - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "12")] pub ajbepahcgik: u32, + #[prost(bool, tag = "14")] + pub fjoilohphlc: bool, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Knijhgnjijm { - #[prost(uint32, tag = "13")] - pub level: u32, - #[prost(uint32, tag = "5")] - pub elappcmeloa: u32, - #[prost(uint32, repeated, tag = "9")] + #[prost(uint32, tag = "6")] + pub aeon_id: u32, + #[prost(uint32, tag = "10")] + pub exp: u32, + #[prost(uint32, repeated, tag = "12")] pub dpmibdhkdae: ::prost::alloc::vec::Vec, #[prost(uint32, tag = "7")] + pub level: u32, + #[prost(uint32, tag = "14")] pub jgmipmdppij: u32, - #[prost(uint32, repeated, tag = "4")] + #[prost(uint32, repeated, tag = "9")] pub ddgcfjdbooh: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "8")] - pub exp: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Ooceoilkcfi { - #[prost(message, optional, tag = "14")] + #[prost(message, optional, tag = "1")] pub jlfddmekljk: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Eoejhkjllpk { #[prost(uint32, tag = "9")] - pub ppmiogcfooc: u32, - #[prost(uint32, tag = "12")] pub unit_id: u32, + #[prost(uint32, tag = "15")] + pub ppmiogcfooc: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Aeknflomljh { - #[prost(message, repeated, tag = "6")] + #[prost(message, repeated, tag = "15")] pub ckgfonmaeko: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "8")] - pub buff_list: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "2")] - pub bjcmphlpknf: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "7")] + #[prost(message, repeated, tag = "6")] pub belofmfhfdk: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "1")] + pub bjcmphlpknf: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "12")] + pub buff_list: ::prost::alloc::vec::Vec, } /// Obf: GILIPEKOEAF #[derive(proto_derive::CmdID)] -#[cmdid(5624)] +#[cmdid(5628)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetRogueHandbookDataCsReq {} /// Obf: GetRogueHandbookDataScRsp #[derive(proto_derive::CmdID)] -#[cmdid(5657)] +#[cmdid(5623)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetRogueHandbookDataScRsp { - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "8")] pub retcode: u32, - #[prost(message, optional, tag = "14")] + #[prost(message, optional, tag = "3")] pub handbook_info: ::core::option::Option, } /// Obf: NNLIMACBCJJ #[derive(proto_derive::CmdID)] -#[cmdid(5607)] +#[cmdid(5622)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SyncRogueHandbookDataUpdateScNotify { - #[prost(message, repeated, tag = "12")] + #[prost(message, repeated, tag = "8")] pub bjkpkfbfdff: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "3")] - pub haebaambnbb: ::prost::alloc::vec::Vec, #[prost(message, repeated, tag = "11")] - pub abibobfdkld: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "7")] + pub haebaambnbb: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "5")] pub idddcjonpfn: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "1")] + #[prost(message, repeated, tag = "12")] + pub abibobfdkld: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "2")] pub mmhchhcofpb: ::prost::alloc::vec::Vec, } /// Obf: FNOHCPGCENO #[derive(proto_derive::CmdID)] -#[cmdid(5698)] +#[cmdid(5640)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TakeRogueMiracleHandbookRewardCsReq { - #[prost(uint32, repeated, tag = "13")] + #[prost(uint32, repeated, tag = "6")] pub afhddnggnbf: ::prost::alloc::vec::Vec, } /// Obf: KMLGJIMHJJC #[derive(proto_derive::CmdID)] -#[cmdid(5664)] +#[cmdid(5618)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TakeRogueMiracleHandbookRewardScRsp { - #[prost(message, optional, tag = "10")] + #[prost(message, optional, tag = "11")] pub reward: ::core::option::Option, - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "3")] pub retcode: u32, - #[prost(uint32, repeated, tag = "5")] + #[prost(uint32, repeated, tag = "7")] pub feifjadcdfl: ::prost::alloc::vec::Vec, } /// Obf: CMDEHEACAHM #[derive(proto_derive::CmdID)] -#[cmdid(5606)] +#[cmdid(5647)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TakeRogueEventHandbookRewardCsReq { - #[prost(uint32, repeated, tag = "10")] + #[prost(uint32, repeated, tag = "8")] pub idoecnpkgce: ::prost::alloc::vec::Vec, } /// Obf: BIDOHEPEMKO #[derive(proto_derive::CmdID)] -#[cmdid(5645)] +#[cmdid(5619)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TakeRogueEventHandbookRewardScRsp { #[prost(uint32, repeated, tag = "4")] pub dpjhilhgoke: ::prost::alloc::vec::Vec, - #[prost(message, optional, tag = "6")] + #[prost(message, optional, tag = "11")] pub reward: ::core::option::Option, - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "10")] pub retcode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Findafkpoof { - #[prost(map = "uint32, uint32", tag = "7")] + #[prost(map = "uint32, uint32", tag = "15")] pub glaphhabohp: ::std::collections::HashMap, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Ladhikpajcj { - #[prost(message, optional, tag = "9")] + #[prost(message, optional, tag = "15")] pub bohdminejno: ::core::option::Option, - #[prost(int32, tag = "4")] - pub icjabpgmacj: i32, - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "5")] pub amnbmjofjoo: u32, + #[prost(int32, tag = "6")] + pub icjabpgmacj: i32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Ohlcjedcofn { - #[prost(uint32, repeated, tag = "13")] + #[prost(uint32, repeated, tag = "12")] pub dimhpbcpnlc: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Omdefbabnnb { - #[prost(message, optional, tag = "9")] + #[prost(message, optional, tag = "6")] pub gficflciejj: ::core::option::Option, - #[prost(uint32, repeated, tag = "2")] + #[prost(uint32, repeated, tag = "11")] pub avatar_id_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Lgkgehhajje { - #[prost(oneof = "lgkgehhajje::Hloekmdpgif", tags = "15, 6, 8, 1, 14, 12, 2, 11")] + #[prost(oneof = "lgkgehhajje::Hloekmdpgif", tags = "6, 14, 9, 1, 12, 8, 7, 15")] pub hloekmdpgif: ::core::option::Option, } /// Nested message and enum types in `LGKGEHHAJJE`. @@ -24632,135 +26044,135 @@ pub mod lgkgehhajje { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] pub enum Hloekmdpgif { - #[prost(message, tag = "15")] - Lgopnbhhhbg(super::Kcacnhcadec), #[prost(message, tag = "6")] + Lgopnbhhhbg(super::Kcacnhcadec), + #[prost(message, tag = "14")] Eeppkmpajoh(super::Nkidddpflje), - #[prost(message, tag = "8")] + #[prost(message, tag = "9")] Fffccejifdk(super::Findafkpoof), #[prost(message, tag = "1")] Chmhpcngfao(super::Ladhikpajcj), - #[prost(message, tag = "14")] - Fiocabcbnkb(super::Ohlcjedcofn), #[prost(message, tag = "12")] + Fiocabcbnkb(super::Ohlcjedcofn), + #[prost(message, tag = "8")] Ckaanmddkcj(super::Kaajbaoakbo), - #[prost(message, tag = "2")] + #[prost(message, tag = "7")] Nbdacdnbjik(super::Fbnjofcemil), - #[prost(message, tag = "11")] + #[prost(message, tag = "15")] Embagmmhipa(super::Omdefbabnnb), } } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Pmjgkhpkhcm { - #[prost(uint32, tag = "6")] - pub agebambkkbc: u32, - #[prost(message, repeated, tag = "14")] + #[prost(message, repeated, tag = "4")] pub biphngcadde: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "11")] - pub illodgaefae: u32, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "14")] pub egmebanhhnf: u32, - #[prost(uint32, tag = "15")] - pub bngfaignphe: u32, + #[prost(uint32, tag = "7")] + pub illodgaefae: u32, + #[prost(uint32, tag = "11")] + pub agebambkkbc: u32, + #[prost(uint32, tag = "5")] + pub rogue_sub_mode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RogueUnlockProgress { - #[prost(bool, tag = "11")] - pub finish: bool, - #[prost(uint32, tag = "2")] - pub unlock_id: u32, - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "12")] pub progress: u32, + #[prost(uint32, tag = "3")] + pub unlock_id: u32, + #[prost(bool, tag = "7")] + pub finish: bool, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Ibcknkpjfoj { - #[prost(message, repeated, tag = "3")] - pub pgimncfhjea: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "2")] pub talent_id: u32, - #[prost(enumeration = "Kpabffanjbk", tag = "7")] + #[prost(enumeration = "Kpabffanjbk", tag = "1")] pub status: i32, + #[prost(message, repeated, tag = "7")] + pub pgimncfhjea: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RogueTalentInfoList { - #[prost(message, repeated, tag = "6")] + #[prost(message, repeated, tag = "15")] pub lgnnmajmeil: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Pojeeialjfi { - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "9")] pub mgkkgnldgcl: u32, - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "11")] pub baphhckihmo: u32, } /// Obf: BHJCKFBHJAA #[derive(proto_derive::CmdID)] -#[cmdid(5700)] +#[cmdid(5695)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SyncRogueCommonVirtualItemInfoScNotify { - #[prost(message, repeated, tag = "6")] + #[prost(message, repeated, tag = "2")] pub idjjpafpmdm: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Mapomoilgeh { - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "1")] pub mbkfininnek: u32, - #[prost(uint32, tag = "5")] - pub gedjniaefho: u32, - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "13")] pub bdcffobgkoa: u32, + #[prost(uint32, tag = "3")] + pub gedjniaefho: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Plgdcfipeaa { - #[prost(enumeration = "Odopdkelaeb", repeated, tag = "15")] + #[prost(enumeration = "Odopdkelaeb", repeated, tag = "2")] pub jpgcdjdgdbi: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Ilaekjcnemf { - #[prost(uint32, repeated, tag = "4")] + #[prost(uint32, repeated, tag = "9")] pub afedjkmfodp: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Lgjmdnnmppe { - #[prost(message, optional, tag = "5")] - pub ongpjogkkjn: ::core::option::Option, #[prost(message, optional, tag = "15")] pub nolhgnhaema: ::core::option::Option, - #[prost(message, optional, tag = "13")] + #[prost(message, optional, tag = "2")] + pub ongpjogkkjn: ::core::option::Option, + #[prost(message, optional, tag = "8")] pub kjkbkegighk: ::core::option::Option, } /// Obf: EDEGKIBNHPD #[derive(proto_derive::CmdID)] -#[cmdid(5635)] +#[cmdid(5657)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct CommonRogueQueryCsReq {} /// Obf: IIJKNHFGBBM #[derive(proto_derive::CmdID)] -#[cmdid(5634)] +#[cmdid(5626)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct CommonRogueQueryScRsp { - #[prost(uint32, tag = "3")] - pub retcode: u32, - #[prost(message, optional, tag = "13")] - pub lagbgldlgcb: ::core::option::Option, - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "2")] pub fhhbjlhajfj: u32, + #[prost(message, optional, tag = "5")] + pub lagbgldlgcb: ::core::option::Option, + #[prost(uint32, tag = "14")] + pub retcode: u32, } /// Obf: AJAJIDCBOHC #[derive(proto_derive::CmdID)] -#[cmdid(5668)] +#[cmdid(5690)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct CommonRogueUpdateScNotify { - #[prost(oneof = "common_rogue_update_sc_notify::Ncekdikcbhp", tags = "15, 3, 12")] + #[prost(oneof = "common_rogue_update_sc_notify::Ncekdikcbhp", tags = "10, 9, 7")] pub ncekdikcbhp: ::core::option::Option, } /// Nested message and enum types in `CommonRogueUpdateScNotify`. @@ -24768,32 +26180,32 @@ pub mod common_rogue_update_sc_notify { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] pub enum Ncekdikcbhp { - #[prost(message, tag = "15")] + #[prost(message, tag = "10")] Ongpjogkkjn(super::Mapomoilgeh), - #[prost(message, tag = "3")] + #[prost(message, tag = "9")] Kjkbkegighk(super::Plgdcfipeaa), - #[prost(message, tag = "12")] + #[prost(message, tag = "7")] Nolhgnhaema(super::Ilaekjcnemf), } } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Ikamknhggok { - #[prost(uint32, tag = "9")] - pub onlhfcoglal: u32, #[prost(uint32, tag = "11")] + pub onlhfcoglal: u32, + #[prost(uint32, tag = "9")] pub cdjecokfiof: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Gnjapomllhe { - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "9")] pub bglehmkmapg: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Cnhhpdhbmdc { - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "7")] pub bglehmkmapg: u32, } #[derive(proto_derive::CmdID)] @@ -24805,19 +26217,19 @@ pub struct Jieaafjenlk { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Hpjlafhhgjg { - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "10")] pub bglehmkmapg: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Afccaoacnak { - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "10")] pub dgaklnofdpp: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Jbmeclkggdk { - #[prost(oneof = "jbmeclkggdk::Afblajkdhhf", tags = "9, 4, 8, 2, 6, 1")] + #[prost(oneof = "jbmeclkggdk::Afblajkdhhf", tags = "3, 8, 7, 5, 1, 4")] pub afblajkdhhf: ::core::option::Option, } /// Nested message and enum types in `JBMECLKGGDK`. @@ -24825,44 +26237,44 @@ pub mod jbmeclkggdk { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Oneof)] pub enum Afblajkdhhf { - #[prost(message, tag = "9")] + #[prost(message, tag = "3")] Hpnoggfdpkm(super::Ikamknhggok), - #[prost(message, tag = "4")] - Admahlaalnh(super::Gnjapomllhe), #[prost(message, tag = "8")] + Admahlaalnh(super::Gnjapomllhe), + #[prost(message, tag = "7")] Oddgcbpoplf(super::Cnhhpdhbmdc), - #[prost(message, tag = "2")] + #[prost(message, tag = "5")] Gmakhonaeph(super::Jieaafjenlk), - #[prost(message, tag = "6")] - Cacgekaankl(super::Hpjlafhhgjg), #[prost(message, tag = "1")] + Cacgekaankl(super::Hpjlafhhgjg), + #[prost(message, tag = "4")] Aggblhgkpfj(super::Afccaoacnak), } } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Abenfanelfl { - #[prost(float, tag = "14")] - pub lmbiodpohge: f32, - #[prost(int32, tag = "1")] + #[prost(int32, tag = "4")] pub ggplcpchadn: i32, + #[prost(float, tag = "9")] + pub lmbiodpohge: f32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Gokkmeomofc { - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "13")] pub battle_event_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Nebpghddepc { - #[prost(int32, tag = "10")] + #[prost(int32, tag = "1")] pub jefioihhclg: i32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Hjpgncngilg { - #[prost(oneof = "hjpgncngilg::Hpnhnmbabfn", tags = "8, 4")] + #[prost(oneof = "hjpgncngilg::Hpnhnmbabfn", tags = "2, 12")] pub hpnhnmbabfn: ::core::option::Option, } /// Nested message and enum types in `HJPGNCNGILG`. @@ -24870,161 +26282,161 @@ pub mod hjpgncngilg { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Oneof)] pub enum Hpnhnmbabfn { - #[prost(message, tag = "8")] + #[prost(message, tag = "2")] Capijnmcdam(super::Gokkmeomofc), - #[prost(message, tag = "4")] + #[prost(message, tag = "12")] Hmlcehikffk(super::Nebpghddepc), } } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Gbabekpblhn { - #[prost(bool, tag = "14")] - pub gldjnhiggje: bool, - #[prost(bool, tag = "6")] - pub pipmgacmjnn: bool, - #[prost(uint32, tag = "13")] - pub arg_id: u32, - #[prost(message, repeated, tag = "7")] + #[prost(message, repeated, tag = "12")] pub pocjcmkkjik: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "4")] + pub arg_id: u32, + #[prost(bool, tag = "7")] + pub gldjnhiggje: bool, + #[prost(bool, tag = "14")] + pub pipmgacmjnn: bool, + #[prost(uint32, tag = "6")] pub kdmlllghjon: u32, - #[prost(message, optional, tag = "3")] + #[prost(message, optional, tag = "8")] pub display_value: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Hgeknliffed { - #[prost(message, repeated, tag = "4")] - pub lekpkocnjal: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "5")] - pub event_unique_id: u32, - #[prost(message, optional, tag = "11")] + #[prost(message, optional, tag = "1")] pub bdoemgmhalj: ::core::option::Option, + #[prost(message, repeated, tag = "11")] + pub lekpkocnjal: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "2")] + pub event_unique_id: u32, } /// Obf: JENIAHELNPF #[derive(proto_derive::CmdID)] -#[cmdid(5601)] +#[cmdid(5689)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetRogueCommonDialogueDataCsReq {} /// Obf: MHGANOEPLIP #[derive(proto_derive::CmdID)] -#[cmdid(5653)] +#[cmdid(5637)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetRogueCommonDialogueDataScRsp { + #[prost(uint32, tag = "11")] + pub retcode: u32, #[prost(message, repeated, tag = "9")] pub dckilldonhg: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "14")] - pub retcode: u32, } /// Obf: LLBPCHBONCK #[derive(proto_derive::CmdID)] -#[cmdid(5636)] +#[cmdid(5672)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SelectRogueCommonDialogueOptionCsReq { - #[prost(uint32, tag = "9")] - pub kdmlllghjon: u32, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "1")] pub event_unique_id: u32, + #[prost(uint32, tag = "8")] + pub kdmlllghjon: u32, } /// Obf: PGBOPNMMJBB #[derive(proto_derive::CmdID)] -#[cmdid(5694)] +#[cmdid(5635)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SelectRogueCommonDialogueOptionScRsp { - #[prost(uint32, repeated, tag = "4")] - pub jidlbfoebid: ::prost::alloc::vec::Vec, - #[prost(message, optional, tag = "14")] - pub oidiaddnacm: ::core::option::Option, - #[prost(uint32, tag = "2")] - pub event_unique_id: u32, - #[prost(uint32, tag = "11")] - pub retcode: u32, - #[prost(uint32, tag = "10")] - pub kdmlllghjon: u32, - #[prost(bool, tag = "8")] + #[prost(bool, tag = "15")] pub adjgdbbnplc: bool, + #[prost(uint32, tag = "2")] + pub kdmlllghjon: u32, + #[prost(uint32, tag = "14")] + pub event_unique_id: u32, + #[prost(uint32, tag = "7")] + pub retcode: u32, + #[prost(message, optional, tag = "11")] + pub oidiaddnacm: ::core::option::Option, + #[prost(uint32, repeated, tag = "12")] + pub jidlbfoebid: ::prost::alloc::vec::Vec, } /// Obf: CJLNCCDAHOA #[derive(proto_derive::CmdID)] -#[cmdid(5627)] +#[cmdid(5653)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct FinishRogueCommonDialogueCsReq { - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "3")] pub event_unique_id: u32, } /// Obf: IFNNGEFFFGP #[derive(proto_derive::CmdID)] -#[cmdid(5674)] +#[cmdid(5633)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct FinishRogueCommonDialogueScRsp { - #[prost(uint32, tag = "9")] - pub event_unique_id: u32, - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "15")] pub retcode: u32, + #[prost(uint32, tag = "6")] + pub event_unique_id: u32, } /// Obf: ODONIMBGLJN #[derive(proto_derive::CmdID)] -#[cmdid(5690)] +#[cmdid(5607)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SyncRogueCommonDialogueDataScNotify { - #[prost(message, repeated, tag = "1")] + #[prost(message, repeated, tag = "4")] pub dckilldonhg: ::prost::alloc::vec::Vec, } /// Obf: KAMCLHLJJPM #[derive(proto_derive::CmdID)] -#[cmdid(5617)] +#[cmdid(5648)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SyncRogueCommonDialogueOptionFinishScNotify { - #[prost(message, optional, tag = "12")] + #[prost(message, optional, tag = "15")] pub oidiaddnacm: ::core::option::Option, - #[prost(message, optional, tag = "4")] - pub dgncfmdppbf: ::core::option::Option, - #[prost(uint32, tag = "5")] - pub kdmlllghjon: u32, - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "6")] pub event_unique_id: u32, + #[prost(uint32, tag = "13")] + pub kdmlllghjon: u32, + #[prost(message, optional, tag = "8")] + pub dgncfmdppbf: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Mikfnbbopip { - #[prost(message, optional, tag = "7")] - pub kndmeilhkej: ::core::option::Option, - #[prost(string, tag = "9")] + #[prost(string, tag = "7")] pub mdlndgijnml: ::prost::alloc::string::String, - #[prost(uint32, tag = "4")] - pub agebambkkbc: u32, - #[prost(uint32, tag = "8")] - pub bngfaignphe: u32, - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "1")] pub egmebanhhnf: u32, - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "3")] pub illodgaefae: u32, + #[prost(message, optional, tag = "11")] + pub kndmeilhkej: ::core::option::Option, + #[prost(uint32, tag = "2")] + pub agebambkkbc: u32, + #[prost(uint32, tag = "6")] + pub rogue_sub_mode: u32, } /// Obf: DBOKNOPCNGG #[derive(proto_derive::CmdID)] -#[cmdid(5649)] +#[cmdid(5643)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RogueWorkbenchGetInfoCsReq { - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "5")] pub prop_entity_id: u32, } /// Obf: GINOHIHIKHN #[derive(proto_derive::CmdID)] -#[cmdid(5603)] +#[cmdid(5612)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RogueWorkbenchGetInfoScRsp { - #[prost(uint32, tag = "9")] - pub retcode: u32, - #[prost(map = "uint32, message", tag = "15")] + #[prost(map = "uint32, message", tag = "2")] pub gajpnngmhnk: ::std::collections::HashMap, + #[prost(uint32, tag = "5")] + pub retcode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Mhccpddkkda { #[prost( oneof = "mhccpddkkda::Jcfkgndaphj", - tags = "15, 8, 12, 11, 13, 3, 5, 6, 7, 14" + tags = "6, 9, 15, 1, 4, 5, 12, 11, 13, 2" )] pub jcfkgndaphj: ::core::option::Option, } @@ -25033,190 +26445,190 @@ pub mod mhccpddkkda { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] pub enum Jcfkgndaphj { - #[prost(message, tag = "15")] - Cggnfjcbbkm(super::Glpeeijalgf), - #[prost(message, tag = "8")] - Piclegggncf(super::Jcijcafjjkn), - #[prost(message, tag = "12")] - Eapmicbgoio(super::Ajmibfecflj), - #[prost(message, tag = "11")] - Nnchmgdgdfi(super::Lpilgjepagj), - #[prost(message, tag = "13")] - Ndkhogemkja(super::Igilogohejp), - #[prost(message, tag = "3")] - Jlfddmekljk(super::Khcbgnlnpel), - #[prost(message, tag = "5")] - Lcbecpoogcl(super::Kmhibngafeo), #[prost(message, tag = "6")] + Cggnfjcbbkm(super::Glpeeijalgf), + #[prost(message, tag = "9")] + Piclegggncf(super::Jcijcafjjkn), + #[prost(message, tag = "15")] + Eapmicbgoio(super::Ajmibfecflj), + #[prost(message, tag = "1")] + Nnchmgdgdfi(super::Lpilgjepagj), + #[prost(message, tag = "4")] + Ndkhogemkja(super::Igilogohejp), + #[prost(message, tag = "5")] + Jlfddmekljk(super::Khcbgnlnpel), + #[prost(message, tag = "12")] + Lcbecpoogcl(super::Kmhibngafeo), + #[prost(message, tag = "11")] Ceajnliofhf(super::Dmkpfgebilh), - #[prost(message, tag = "7")] + #[prost(message, tag = "13")] Pgpaapopdoc(super::Lfggpngkbch), - #[prost(message, tag = "14")] + #[prost(message, tag = "2")] Pmkehgbpcng(super::Dhmfcidjbfd), } } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Glpeeijalgf { - #[prost(uint32, tag = "10")] - pub jifkhckpnfm: u32, - #[prost(bool, tag = "2")] - pub fobaoeafnam: bool, - #[prost(message, optional, tag = "13")] - pub item_cost_list: ::core::option::Option, - #[prost(int32, tag = "15")] - pub dmmamjgngnn: i32, - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "11")] pub anlincfgfan: u32, + #[prost(message, optional, tag = "12")] + pub item_cost_list: ::core::option::Option, + #[prost(int32, tag = "1")] + pub dmmamjgngnn: i32, + #[prost(uint32, tag = "15")] + pub jifkhckpnfm: u32, + #[prost(bool, tag = "9")] + pub fobaoeafnam: bool, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Jcijcafjjkn { - #[prost(uint32, tag = "10")] - pub jifkhckpnfm: u32, - #[prost(bool, tag = "3")] + #[prost(bool, tag = "10")] pub fobaoeafnam: bool, - #[prost(uint32, tag = "12")] - pub anlincfgfan: u32, - #[prost(int32, tag = "2")] + #[prost(int32, tag = "14")] pub dmmamjgngnn: i32, - #[prost(message, optional, tag = "13")] + #[prost(uint32, tag = "9")] + pub jifkhckpnfm: u32, + #[prost(message, optional, tag = "3")] pub item_cost_list: ::core::option::Option, + #[prost(uint32, tag = "13")] + pub anlincfgfan: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Ajmibfecflj { - #[prost(map = "uint32, uint32", tag = "9")] - pub hcpacbhcmhn: ::std::collections::HashMap, - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "1")] pub cur_num: u32, - #[prost(uint32, tag = "13")] + #[prost(map = "uint32, uint32", tag = "4")] + pub hcpacbhcmhn: ::std::collections::HashMap, + #[prost(uint32, tag = "15")] pub max_num: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Lpilgjepagj { - #[prost(message, optional, tag = "4")] - pub item_cost_list: ::core::option::Option, - #[prost(int32, tag = "5")] - pub dmmamjgngnn: i32, - #[prost(uint32, tag = "14")] - pub jifkhckpnfm: u32, - #[prost(map = "uint32, bool", tag = "10")] + #[prost(map = "uint32, bool", tag = "4")] pub nfnicipmjii: ::std::collections::HashMap, + #[prost(uint32, tag = "6")] + pub jifkhckpnfm: u32, + #[prost(message, optional, tag = "12")] + pub item_cost_list: ::core::option::Option, + #[prost(int32, tag = "11")] + pub dmmamjgngnn: i32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Igilogohejp { - #[prost(message, optional, tag = "6")] + #[prost(message, optional, tag = "15")] pub item_cost_list: ::core::option::Option, - #[prost(uint32, tag = "3")] - pub jifkhckpnfm: u32, - #[prost(int32, tag = "15")] + #[prost(int32, tag = "14")] pub dmmamjgngnn: i32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Coahgflonan { - #[prost(message, optional, tag = "8")] - pub item_cost_list: ::core::option::Option, - #[prost(message, optional, tag = "6")] - pub hbpblgllien: ::core::option::Option, - #[prost(message, optional, tag = "10")] - pub jlfddmekljk: ::core::option::Option, - #[prost(bool, tag = "1")] - pub ngkjpcehmba: bool, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Khcbgnlnpel { - #[prost(message, repeated, tag = "13")] - pub picfhpkdnel: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Aogiimkcjdj { - #[prost(bool, tag = "6")] - pub ngkjpcehmba: bool, - #[prost(uint32, tag = "14")] - pub unit_id: u32, - #[prost(message, optional, tag = "1")] - pub item_cost_list: ::core::option::Option, - #[prost(message, optional, tag = "4")] - pub hbpblgllien: ::core::option::Option, - #[prost(uint32, tag = "9")] - pub ppmiogcfooc: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Kmhibngafeo { - #[prost(message, repeated, tag = "12")] - pub magic_list: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Dmkpfgebilh { - #[prost(uint32, tag = "4")] - pub jifkhckpnfm: u32, - #[prost(int32, tag = "7")] - pub dmmamjgngnn: i32, - #[prost(message, optional, tag = "9")] - pub item_cost_list: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Lfggpngkbch { - #[prost(int32, tag = "1")] - pub dmmamjgngnn: i32, - #[prost(message, optional, tag = "2")] - pub faidibodmch: ::core::option::Option, - #[prost(map = "uint32, message", tag = "7")] - pub iakhmmelmfd: ::std::collections::HashMap, #[prost(uint32, tag = "11")] pub jifkhckpnfm: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Kifilcjolch { - #[prost(message, optional, tag = "3")] +pub struct Coahgflonan { + #[prost(message, optional, tag = "15")] + pub hbpblgllien: ::core::option::Option, + #[prost(message, optional, tag = "11")] pub item_cost_list: ::core::option::Option, + #[prost(bool, tag = "10")] + pub ngkjpcehmba: bool, + #[prost(message, optional, tag = "7")] + pub jlfddmekljk: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Khcbgnlnpel { + #[prost(message, repeated, tag = "8")] + pub picfhpkdnel: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Aogiimkcjdj { + #[prost(message, optional, tag = "12")] + pub item_cost_list: ::core::option::Option, + #[prost(bool, tag = "1")] + pub ngkjpcehmba: bool, + #[prost(uint32, tag = "3")] + pub unit_id: u32, + #[prost(message, optional, tag = "9")] + pub hbpblgllien: ::core::option::Option, + #[prost(uint32, tag = "15")] + pub ppmiogcfooc: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Kmhibngafeo { + #[prost(message, repeated, tag = "2")] + pub magic_list: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Dmkpfgebilh { + #[prost(uint32, tag = "3")] + pub jifkhckpnfm: u32, + #[prost(int32, tag = "6")] + pub dmmamjgngnn: i32, + #[prost(message, optional, tag = "15")] + pub item_cost_list: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Lfggpngkbch { + #[prost(uint32, tag = "3")] + pub jifkhckpnfm: u32, + #[prost(map = "uint32, message", tag = "9")] + pub iakhmmelmfd: ::std::collections::HashMap, + #[prost(int32, tag = "12")] + pub dmmamjgngnn: i32, + #[prost(message, optional, tag = "11")] + pub faidibodmch: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Kifilcjolch { #[prost(uint32, tag = "8")] pub scepter_id: u32, + #[prost(message, optional, tag = "3")] + pub item_cost_list: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Dhmfcidjbfd { - #[prost(message, repeated, tag = "13")] + #[prost(message, repeated, tag = "5")] pub eldolkcakae: ::prost::alloc::vec::Vec, } /// Obf: BCMDOEOIAGB #[derive(proto_derive::CmdID)] -#[cmdid(5610)] +#[cmdid(5662)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RogueWorkbenchHandleFuncCsReq { #[prost(uint32, tag = "7")] - pub prop_entity_id: u32, - #[prost(uint32, tag = "5")] pub hobjminnbop: u32, - #[prost(message, optional, tag = "6")] + #[prost(uint32, tag = "15")] + pub prop_entity_id: u32, + #[prost(message, optional, tag = "14")] pub lbobpbhelgj: ::core::option::Option, } /// Obf: LMPBJLIBHCA #[derive(proto_derive::CmdID)] -#[cmdid(5697)] +#[cmdid(5614)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RogueWorkbenchHandleFuncScRsp { - #[prost(uint32, tag = "1")] + #[prost(message, optional, tag = "9")] + pub mlkioodnllf: ::core::option::Option, + #[prost(uint32, tag = "5")] pub retcode: u32, #[prost(uint32, tag = "8")] pub hobjminnbop: u32, - #[prost(message, optional, tag = "15")] - pub mlkioodnllf: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Akmbehgcbhe { - #[prost(oneof = "akmbehgcbhe::Item", tags = "1, 5, 11, 3, 2, 13, 7, 14, 8, 10")] + #[prost(oneof = "akmbehgcbhe::Item", tags = "6, 14, 7, 10, 3, 5, 4, 1, 2, 12")] pub item: ::core::option::Option, } /// Nested message and enum types in `AKMBEHGCBHE`. @@ -25224,151 +26636,151 @@ pub mod akmbehgcbhe { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] pub enum Item { - #[prost(message, tag = "1")] + #[prost(message, tag = "6")] Cggnfjcbbkm(super::Akkcdlmlkdf), - #[prost(message, tag = "5")] - Piclegggncf(super::Alnigmcjfdm), - #[prost(message, tag = "11")] - Eapmicbgoio(super::Neoccicfned), - #[prost(message, tag = "3")] - Nnchmgdgdfi(super::Kojkplcegen), - #[prost(message, tag = "2")] - Ndkhogemkja(super::Bhjhapdlpno), - #[prost(message, tag = "13")] - Jlfddmekljk(super::Jdooidbkcim), - #[prost(message, tag = "7")] - Lcbecpoogcl(super::Gjbblcipbhd), #[prost(message, tag = "14")] - Ceajnliofhf(super::Lehglceljmf), - #[prost(message, tag = "8")] - Pgpaapopdoc(super::Fhjglopmfnc), + Piclegggncf(super::Alnigmcjfdm), + #[prost(message, tag = "7")] + Eapmicbgoio(super::Neoccicfned), #[prost(message, tag = "10")] + Nnchmgdgdfi(super::Kojkplcegen), + #[prost(message, tag = "3")] + Ndkhogemkja(super::Bhjhapdlpno), + #[prost(message, tag = "5")] + Jlfddmekljk(super::Jdooidbkcim), + #[prost(message, tag = "4")] + Lcbecpoogcl(super::Gjbblcipbhd), + #[prost(message, tag = "1")] + Ceajnliofhf(super::Lehglceljmf), + #[prost(message, tag = "2")] + Pgpaapopdoc(super::Fhjglopmfnc), + #[prost(message, tag = "12")] Pmkehgbpcng(super::Jbncdffpdop), } } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Akkcdlmlkdf { - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "1")] pub hifgeekagla: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Alnigmcjfdm { - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "3")] pub pfmgabppdfl: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Neoccicfned { - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "2")] pub amohedgmlee: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Kojkplcegen { - #[prost(uint32, repeated, tag = "14")] + #[prost(uint32, repeated, tag = "1")] pub nlklhflbjfm: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Bhjhapdlpno { - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "15")] pub icaeccokajp: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Jdooidbkcim { - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "5")] pub fpljoaacdgd: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Gjbblcipbhd { - #[prost(uint32, repeated, tag = "10")] + #[prost(uint32, repeated, tag = "1")] pub clopkobkhma: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Lehglceljmf { - #[prost(uint32, repeated, tag = "7")] + #[prost(uint32, repeated, tag = "1")] pub dnkccibpfgk: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Fhjglopmfnc { - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "10")] pub unit_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Jbncdffpdop { - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "1")] pub scepter_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Fkbfooefpae { - #[prost(uint32, tag = "13")] - pub infbhpgdlnd: u32, - #[prost(enumeration = "Hgpokmdgknn", tag = "6")] + #[prost(enumeration = "Hgpokmdgknn", tag = "10")] pub status: i32, + #[prost(uint32, tag = "8")] + pub infbhpgdlnd: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Ajakdcddamo { #[prost(uint32, tag = "1")] pub infbhpgdlnd: u32, - #[prost(enumeration = "Hhiclpljnco", tag = "15")] + #[prost(enumeration = "Hhiclpljnco", tag = "5")] pub status: i32, - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "12")] pub eonlmdcbnme: u32, } /// Obf: CKLNGGBJMHD #[derive(proto_derive::CmdID)] -#[cmdid(5679)] +#[cmdid(5686)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetRogueCollectionCsReq {} /// Obf: CHLEKGNDAKJ #[derive(proto_derive::CmdID)] -#[cmdid(5670)] +#[cmdid(5675)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetRogueCollectionScRsp { - #[prost(uint32, tag = "11")] - pub retcode: u32, - #[prost(message, repeated, tag = "4")] - pub pahpdbiacha: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "1")] + #[prost(message, repeated, tag = "2")] pub pcpedflnbga: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "9")] + pub retcode: u32, + #[prost(message, repeated, tag = "14")] + pub pahpdbiacha: ::prost::alloc::vec::Vec, } /// Obf: GFIACEHAOFI #[derive(proto_derive::CmdID)] -#[cmdid(5604)] +#[cmdid(5630)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SetRogueCollectionCsReq { - #[prost(uint32, repeated, tag = "6")] + #[prost(uint32, repeated, tag = "3")] pub fpipmkcagpd: ::prost::alloc::vec::Vec, - #[prost(enumeration = "Mhkmpgabbpl", repeated, tag = "13")] + #[prost(enumeration = "Mhkmpgabbpl", repeated, tag = "6")] pub lghphfppjen: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "9")] + #[prost(uint32, repeated, tag = "12")] pub opkmciffcch: ::prost::alloc::vec::Vec, } /// Obf: MGEPEKLCAPM #[derive(proto_derive::CmdID)] -#[cmdid(5618)] +#[cmdid(5683)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SetRogueCollectionScRsp { - #[prost(message, repeated, tag = "14")] - pub pcpedflnbga: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "6")] - pub retcode: u32, - #[prost(message, repeated, tag = "11")] + #[prost(message, repeated, tag = "2")] pub pahpdbiacha: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "7")] + pub retcode: u32, + #[prost(message, repeated, tag = "5")] + pub pcpedflnbga: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Gbpflagfaij { - #[prost(enumeration = "Ehcobodeeje", tag = "4")] + #[prost(enumeration = "Ehcobodeeje", tag = "15")] pub status: i32, #[prost(uint32, tag = "8")] pub kbdfbginnbj: u32, @@ -25376,52 +26788,52 @@ pub struct Gbpflagfaij { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Dmodinlgccb { - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "13")] + pub kbdfbginnbj: u32, + #[prost(uint32, tag = "15")] pub eonlmdcbnme: u32, #[prost(enumeration = "Hhiclpljnco", tag = "10")] pub status: i32, - #[prost(uint32, tag = "6")] - pub kbdfbginnbj: u32, } /// Obf: GAFKHGLMDKJ #[derive(proto_derive::CmdID)] -#[cmdid(5644)] +#[cmdid(5632)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetRogueExhibitionCsReq {} /// Obf: AKKEABKJKMK #[derive(proto_derive::CmdID)] -#[cmdid(5626)] +#[cmdid(5611)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetRogueExhibitionScRsp { - #[prost(message, repeated, tag = "13")] + #[prost(message, repeated, tag = "5")] pub pjpjokkfnim: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "15")] pub retcode: u32, - #[prost(message, repeated, tag = "7")] + #[prost(message, repeated, tag = "3")] pub mkcefancaig: ::prost::alloc::vec::Vec, } /// Obf: FGHCIEOMINE #[derive(proto_derive::CmdID)] -#[cmdid(5673)] +#[cmdid(5651)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SetRogueExhibitionCsReq { - #[prost(uint32, repeated, tag = "11")] - pub ldifbjdgffe: ::prost::alloc::vec::Vec, - #[prost(enumeration = "Mhkmpgabbpl", repeated, tag = "10")] - pub anekpinlkfj: ::prost::alloc::vec::Vec, #[prost(uint32, repeated, tag = "7")] pub heepoeolilo: ::prost::alloc::vec::Vec, + #[prost(enumeration = "Mhkmpgabbpl", repeated, tag = "8")] + pub anekpinlkfj: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "10")] + pub ldifbjdgffe: ::prost::alloc::vec::Vec, } /// Obf: MBDACGMFDBA #[derive(proto_derive::CmdID)] -#[cmdid(5667)] +#[cmdid(5656)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SetRogueExhibitionScRsp { - #[prost(message, repeated, tag = "4")] + #[prost(message, repeated, tag = "12")] pub pjpjokkfnim: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "1")] + #[prost(message, repeated, tag = "4")] pub mkcefancaig: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "13")] pub retcode: u32, } #[derive(proto_derive::CmdID)] @@ -25433,19 +26845,19 @@ pub struct Ehkegmcgcmh { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Pndnjbbdhdp { - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "2")] pub bimbfjgnpfb: u32, - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "4")] pub level: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Dopjlbmmphb { - #[prost(bool, tag = "1")] - pub kdgbjgopehi: bool, #[prost(uint32, tag = "7")] pub bimbfjgnpfb: u32, - #[prost(oneof = "dopjlbmmphb::Oonijkkdllp", tags = "14, 15")] + #[prost(bool, tag = "9")] + pub kdgbjgopehi: bool, + #[prost(oneof = "dopjlbmmphb::Oonijkkdllp", tags = "2, 14")] pub oonijkkdllp: ::core::option::Option, } /// Nested message and enum types in `DOPJLBMMPHB`. @@ -25453,208 +26865,208 @@ pub mod dopjlbmmphb { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Oneof)] pub enum Oonijkkdllp { - #[prost(message, tag = "14")] + #[prost(message, tag = "2")] Djnabioeenf(super::Ehkegmcgcmh), - #[prost(message, tag = "15")] + #[prost(message, tag = "14")] Imcajaogclg(super::Pndnjbbdhdp), } } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Lopjejmofbg { - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "3")] pub group_id: u32, #[prost(message, repeated, tag = "14")] pub bbpapddenhb: ::prost::alloc::vec::Vec, - #[prost(bool, tag = "7")] + #[prost(bool, tag = "11")] pub enbijbfbnec: bool, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Eomodelgnhe { - #[prost(uint32, tag = "6")] - pub ddjddbknpff: u32, - #[prost(message, repeated, tag = "13")] - pub maze_group_list: ::prost::alloc::vec::Vec, - #[prost(bool, tag = "15")] - pub loffeohfpfl: bool, - #[prost(message, optional, tag = "8")] - pub kedcohkknak: ::core::option::Option, #[prost(uint32, tag = "2")] - pub akkonobbjnk: u32, - #[prost(uint32, tag = "1")] pub hfbkbhjiegd: u32, - #[prost(uint32, tag = "4")] + #[prost(message, repeated, tag = "8")] + pub maze_group_list: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "7")] + pub ddjddbknpff: u32, + #[prost(uint32, tag = "6")] + pub akkonobbjnk: u32, + #[prost(bool, tag = "11")] + pub loffeohfpfl: bool, + #[prost(message, optional, tag = "4")] + pub kedcohkknak: ::core::option::Option, + #[prost(uint32, tag = "10")] pub cur_times: u32, } /// Obf: JLEMAPHNDDK #[derive(proto_derive::CmdID)] -#[cmdid(5628)] +#[cmdid(5661)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RogueGetGambleInfoCsReq { - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "9")] pub prop_entity_id: u32, } /// Obf: KGMFOEAIEJA #[derive(proto_derive::CmdID)] -#[cmdid(5615)] +#[cmdid(5608)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RogueGetGambleInfoScRsp { - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "4")] pub retcode: u32, - #[prost(message, optional, tag = "8")] + #[prost(message, optional, tag = "3")] pub ffmifpfibdd: ::core::option::Option, } /// Obf: PLNFKHDHDBP #[derive(proto_derive::CmdID)] -#[cmdid(5655)] +#[cmdid(5697)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RogueDoGambleCsReq { - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "2")] pub prop_entity_id: u32, } /// Obf: CGDANCPMJAE #[derive(proto_derive::CmdID)] -#[cmdid(5680)] +#[cmdid(5666)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RogueDoGambleScRsp { - #[prost(message, optional, tag = "7")] - pub ffmifpfibdd: ::core::option::Option, - #[prost(uint32, tag = "12")] - pub cfbglfojoda: u32, - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "2")] pub jpklmppogdh: u32, - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "8")] + pub cfbglfojoda: u32, + #[prost(uint32, tag = "11")] pub retcode: u32, + #[prost(message, optional, tag = "15")] + pub ffmifpfibdd: ::core::option::Option, } /// Obf: NOLOILJJAKG #[derive(proto_derive::CmdID)] -#[cmdid(5688)] +#[cmdid(5646)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RogueDebugReplaySaveScNotify { - #[prost(string, tag = "14")] - pub jhjgfdmkihg: ::prost::alloc::string::String, - #[prost(string, tag = "15")] + #[prost(string, tag = "7")] + pub dfpfalbjhjh: ::prost::alloc::string::String, + #[prost(string, tag = "1")] pub jdedckkacgo: ::prost::alloc::string::String, - #[prost(string, tag = "5")] + #[prost(string, tag = "6")] pub nepgeejclah: ::prost::alloc::string::String, #[prost(string, tag = "12")] - pub kfamackfhpm: ::prost::alloc::string::String, - #[prost(string, tag = "2")] - pub ijppknknlnl: ::prost::alloc::string::String, - #[prost(uint32, tag = "1")] + pub jhjgfdmkihg: ::prost::alloc::string::String, + #[prost(uint32, tag = "8")] pub uid: u32, - #[prost(string, tag = "9")] - pub dfpfalbjhjh: ::prost::alloc::string::String, + #[prost(string, tag = "13")] + pub ijppknknlnl: ::prost::alloc::string::String, + #[prost(string, tag = "10")] + pub kfamackfhpm: ::prost::alloc::string::String, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Jnfelckiocm { - #[prost(uint32, tag = "8")] - pub map_id: u32, - #[prost(enumeration = "Egpimdadfdi", tag = "10")] - pub status: i32, - #[prost(uint32, tag = "15")] - pub gmpiiaeggek: u32, - #[prost(uint32, repeated, tag = "7")] - pub avatar_id_list: ::prost::alloc::vec::Vec, - #[prost(message, optional, tag = "11")] - pub jlnilijomem: ::core::option::Option, - #[prost(uint32, tag = "14")] - pub ffkpegnbhod: u32, #[prost(uint32, repeated, tag = "6")] pub trial_avatar_id_list: ::prost::alloc::vec::Vec, - #[prost(message, optional, tag = "12")] - pub lchkkhngbgj: ::core::option::Option, - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "5")] + pub ffkpegnbhod: u32, + #[prost(uint32, tag = "14")] + pub map_id: u32, + #[prost(message, optional, tag = "7")] + pub jlnilijomem: ::core::option::Option, + #[prost(uint32, tag = "10")] pub kjgimhfkgbn: u32, + #[prost(enumeration = "RogueStatus", tag = "15")] + pub status: i32, + #[prost(uint32, repeated, tag = "11")] + pub avatar_id_list: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "1")] + pub gmpiiaeggek: u32, + #[prost(message, optional, tag = "4")] + pub lchkkhngbgj: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Oendafiaecg { - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "9")] pub kkpkaljmamf: u32, - #[prost(uint32, tag = "1")] - pub hdjcjbbknaf: u32, - #[prost(uint32, tag = "11")] - pub aeieojgcmmo: u32, - #[prost(uint32, tag = "12")] - pub bpekcejpofe: u32, - #[prost(uint32, tag = "13")] - pub battle_id: u32, - #[prost(bool, tag = "14")] - pub ighlhohcckc: bool, - #[prost(uint32, tag = "15")] - pub jpkjkimnigg: u32, - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "4")] pub hdllmdnlokp: u32, + #[prost(uint32, tag = "1")] + pub aeieojgcmmo: u32, + #[prost(uint32, tag = "10")] + pub battle_id: u32, + #[prost(uint32, tag = "8")] + pub bpekcejpofe: u32, + #[prost(bool, tag = "5")] + pub ighlhohcckc: bool, + #[prost(uint32, tag = "3")] + pub jpkjkimnigg: u32, + #[prost(uint32, tag = "12")] + pub hdjcjbbknaf: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Peodocnclnp { - #[prost(uint32, tag = "6")] - pub area_id: u32, - #[prost(message, optional, tag = "1")] + #[prost(message, optional, tag = "6")] pub bopaangkogh: ::core::option::Option, + #[prost(uint32, tag = "1")] + pub area_id: u32, #[prost(uint32, tag = "4")] pub module_id: u32, - #[prost(message, optional, tag = "7")] + #[prost(message, optional, tag = "5")] pub aeloipgfodb: ::core::option::Option, } /// Obf: JGHNPPCKJOE #[derive(proto_derive::CmdID)] -#[cmdid(6002)] +#[cmdid(6005)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetRogueEndlessActivityDataCsReq {} /// Obf: ELKMJMAANCM #[derive(proto_derive::CmdID)] -#[cmdid(6005)] +#[cmdid(6009)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetRogueEndlessActivityDataScRsp { + #[prost(uint32, tag = "4")] + pub jchchlmdpen: u32, + #[prost(message, repeated, tag = "1")] + pub data: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "10")] + pub anameobfkgn: u32, #[prost(uint32, tag = "14")] pub retcode: u32, - #[prost(uint32, tag = "2")] - pub anameobfkgn: u32, - #[prost(uint32, repeated, tag = "8")] + #[prost(uint32, repeated, tag = "7")] pub eahbikfallf: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "7")] - pub data: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "13")] - pub jchchlmdpen: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Bbnhemckdin { - #[prost(enumeration = "AvatarType", tag = "8")] + #[prost(enumeration = "AvatarType", tag = "2")] pub avatar_type: i32, - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "1")] pub avatar_id: u32, } /// Obf: MKCPGOPOHNH #[derive(proto_derive::CmdID)] -#[cmdid(6004)] +#[cmdid(6008)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct EnterRogueEndlessActivityStageCsReq { - #[prost(message, repeated, tag = "13")] + #[prost(message, repeated, tag = "10")] pub avatar_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "3")] pub mgigdcmleog: u32, } /// Obf: BNBIAMBDALL #[derive(proto_derive::CmdID)] -#[cmdid(6007)] +#[cmdid(6003)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct EnterRogueEndlessActivityStageScRsp { #[prost(message, optional, tag = "14")] pub battle_info: ::core::option::Option, - #[prost(message, optional, tag = "12")] + #[prost(message, optional, tag = "10")] pub bopaangkogh: ::core::option::Option, - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "12")] pub retcode: u32, } /// Obf: CKKLIEMDEOF #[derive(proto_derive::CmdID)] -#[cmdid(6001)] +#[cmdid(6006)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RogueEndlessActivityBattleEndScNotify { #[prost(message, optional, tag = "15")] @@ -25662,498 +27074,498 @@ pub struct RogueEndlessActivityBattleEndScNotify { } /// Obf: BCNDKNLJOEP #[derive(proto_derive::CmdID)] -#[cmdid(6009)] +#[cmdid(6007)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TakeRogueEndlessActivityPointRewardCsReq { - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "12")] pub level: u32, - #[prost(bool, tag = "12")] + #[prost(bool, tag = "11")] pub mdhjkkbnmcf: bool, } /// Obf: FMCEDJKIHNP #[derive(proto_derive::CmdID)] -#[cmdid(6006)] +#[cmdid(6001)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TakeRogueEndlessActivityPointRewardScRsp { - #[prost(message, optional, tag = "10")] - pub reward: ::core::option::Option, - #[prost(uint32, tag = "1")] - pub retcode: u32, #[prost(uint32, tag = "5")] - pub level: u32, - #[prost(uint32, repeated, tag = "12")] + pub retcode: u32, + #[prost(uint32, tag = "14")] + pub jchchlmdpen: u32, + #[prost(message, optional, tag = "9")] + pub reward: ::core::option::Option, + #[prost(uint32, repeated, tag = "4")] pub eahbikfallf: ::prost::alloc::vec::Vec, - #[prost(bool, tag = "9")] + #[prost(bool, tag = "3")] pub mdhjkkbnmcf: bool, #[prost(uint32, tag = "2")] - pub jchchlmdpen: u32, + pub level: u32, } /// Obf: HLEKECOCGJI #[derive(proto_derive::CmdID)] -#[cmdid(6003)] +#[cmdid(6010)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TakeRogueEndlessActivityAllBonusRewardCsReq {} /// Obf: JJPPDHEHFIM #[derive(proto_derive::CmdID)] -#[cmdid(6010)] +#[cmdid(6004)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TakeRogueEndlessActivityAllBonusRewardScRsp { - #[prost(uint32, tag = "8")] - pub retcode: u32, - #[prost(uint32, repeated, tag = "10")] - pub eahbikfallf: ::prost::alloc::vec::Vec, #[prost(uint32, tag = "9")] pub jchchlmdpen: u32, - #[prost(message, optional, tag = "13")] + #[prost(message, optional, tag = "8")] pub reward: ::core::option::Option, + #[prost(uint32, tag = "14")] + pub retcode: u32, + #[prost(uint32, repeated, tag = "6")] + pub eahbikfallf: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Hfippdggjol { - #[prost(message, optional, tag = "3")] - pub map_rotation_data: ::core::option::Option, - #[prost(message, optional, tag = "14")] + #[prost(message, optional, tag = "2")] pub scene: ::core::option::Option, - #[prost(message, optional, tag = "7")] + #[prost(message, optional, tag = "1")] pub lineup: ::core::option::Option, + #[prost(message, optional, tag = "12")] + pub map_rotation_data: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Bpaifngedgh { - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "5")] pub ppjbgnbmkpm: u32, - #[prost(enumeration = "Jlcbbkkgoej", tag = "3")] - pub status: i32, - #[prost(uint32, tag = "4")] - pub bhpgjcicmjm: u32, - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "6")] pub ogldnefkndo: u32, - #[prost(message, repeated, tag = "11")] + #[prost(enumeration = "Jlcbbkkgoej", tag = "9")] + pub status: i32, + #[prost(uint32, tag = "7")] + pub bhpgjcicmjm: u32, + #[prost(message, repeated, tag = "3")] pub mnfjeiininl: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Oiikgfipmfg { - #[prost(uint32, tag = "14")] - pub eipnnejnnkj: u32, - #[prost(enumeration = "Jiokhlhgeod", tag = "5")] - pub status: i32, - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "3")] pub akdleblpbmd: u32, - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "4")] + pub eipnnejnnkj: u32, + #[prost(enumeration = "Jiokhlhgeod", tag = "9")] + pub status: i32, + #[prost(uint32, tag = "1")] pub room_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Mjkkoneiobo { - #[prost(uint32, tag = "4")] - pub acgbelaigbo: u32, - #[prost(message, repeated, tag = "6")] - pub ahooafgdehf: ::prost::alloc::vec::Vec, - #[prost(enumeration = "Behfnmkdomk", tag = "15")] - pub status: i32, - #[prost(uint32, tag = "2")] - pub lfcdodfmhhn: u32, - #[prost(enumeration = "Jmpphgigffi", tag = "1")] - pub reason: i32, #[prost(uint32, tag = "9")] + pub lfcdodfmhhn: u32, + #[prost(enumeration = "Behfnmkdomk", tag = "12")] + pub status: i32, + #[prost(uint32, tag = "8")] + pub acgbelaigbo: u32, + #[prost(message, repeated, tag = "11")] + pub ahooafgdehf: ::prost::alloc::vec::Vec, + #[prost(enumeration = "Jmpphgigffi", tag = "14")] + pub reason: i32, + #[prost(uint32, tag = "13")] pub bgokheibnkl: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Jchcgfmgbak { - #[prost(message, repeated, tag = "6")] + #[prost(message, repeated, tag = "9")] pub eldolkcakae: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "7")] - pub nmjaibbldoc: u32, - #[prost(bool, tag = "11")] - pub jfcnajmihci: bool, - #[prost(message, repeated, tag = "1")] + #[prost(message, repeated, tag = "8")] pub magic_list: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "11")] + pub nmjaibbldoc: u32, + #[prost(bool, tag = "5")] + pub jfcnajmihci: bool, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Llnhfmgmcmn { - #[prost(uint32, repeated, tag = "3")] + #[prost(uint32, repeated, tag = "11")] pub dimhpbcpnlc: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Klohnfgbnph { - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "13")] pub laeejiikmpi: u32, } /// Obf: ODFPBAAGAPO #[derive(proto_derive::CmdID)] -#[cmdid(7795)] +#[cmdid(7720)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RogueMagicStartCsReq { - #[prost(uint32, tag = "1")] - pub jeafpigjdol: u32, - #[prost(uint32, repeated, tag = "15")] - pub ahiibhkdfjb: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "13")] - pub area_id: u32, - #[prost(uint32, repeated, tag = "6")] + #[prost(uint32, repeated, tag = "2")] pub avatar_id_list: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "8")] + pub area_id: u32, + #[prost(uint32, repeated, tag = "3")] + pub ahiibhkdfjb: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "7")] + pub jeafpigjdol: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Aapkbpeggbh { - #[prost(message, optional, tag = "15")] - pub cacgekaankl: ::core::option::Option, #[prost(message, optional, tag = "10")] + pub cacgekaankl: ::core::option::Option, + #[prost(message, optional, tag = "1")] + pub jibdgcfcdio: ::core::option::Option, + #[prost(message, optional, tag = "9")] + pub kkobbenpfph: ::core::option::Option, + #[prost(message, optional, tag = "5")] + pub lineup: ::core::option::Option, + #[prost(message, optional, tag = "8")] pub basic_info: ::core::option::Option, #[prost(message, optional, tag = "6")] - pub jibdgcfcdio: ::core::option::Option, - #[prost(message, optional, tag = "5")] - pub jlfddmekljk: ::core::option::Option, - #[prost(message, optional, tag = "2")] - pub lineup: ::core::option::Option, - #[prost(message, optional, tag = "11")] pub level: ::core::option::Option, - #[prost(message, optional, tag = "3")] - pub kkobbenpfph: ::core::option::Option, - #[prost(message, optional, tag = "9")] + #[prost(message, optional, tag = "14")] + pub jlfddmekljk: ::core::option::Option, + #[prost(message, optional, tag = "4")] pub item_value: ::core::option::Option, } /// Obf: BEACKFEHJIJ #[derive(proto_derive::CmdID)] -#[cmdid(7732)] +#[cmdid(7791)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RogueMagicStartScRsp { - #[prost(message, optional, tag = "13")] + #[prost(message, optional, tag = "3")] pub bhmhlpchklg: ::core::option::Option, - #[prost(message, optional, tag = "2")] - pub lcoclenjjai: ::core::option::Option, - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "6")] pub retcode: u32, + #[prost(message, optional, tag = "12")] + pub lcoclenjjai: ::core::option::Option, } /// Obf: NMAEBMBEGOL #[derive(proto_derive::CmdID)] -#[cmdid(7731)] +#[cmdid(7767)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RogueMagicEnterCsReq {} /// Obf: FOJGIIBDBPJ #[derive(proto_derive::CmdID)] -#[cmdid(7740)] +#[cmdid(7739)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RogueMagicEnterScRsp { - #[prost(message, optional, tag = "4")] + #[prost(message, optional, tag = "13")] pub lcoclenjjai: ::core::option::Option, - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "14")] pub retcode: u32, - #[prost(message, optional, tag = "9")] + #[prost(message, optional, tag = "7")] pub bhmhlpchklg: ::core::option::Option, } /// Obf: JPNGLDLLJCP #[derive(proto_derive::CmdID)] -#[cmdid(7776)] +#[cmdid(7727)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RogueMagicLeaveCsReq {} /// Obf: JOEGNNIECCN #[derive(proto_derive::CmdID)] -#[cmdid(7748)] +#[cmdid(7721)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RogueMagicLeaveScRsp { - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "8")] pub retcode: u32, - #[prost(message, optional, tag = "10")] + #[prost(message, optional, tag = "13")] pub lcoclenjjai: ::core::option::Option, } /// Obf: BKFDIABHNDA #[derive(proto_derive::CmdID)] -#[cmdid(7722)] +#[cmdid(7754)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RogueMagicEnterRoomCsReq { - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "10")] pub bhpgjcicmjm: u32, - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "14")] pub fllablfbeik: u32, } /// Obf: ELMOIGEFFGB #[derive(proto_derive::CmdID)] -#[cmdid(7756)] +#[cmdid(7777)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RogueMagicEnterRoomScRsp { - #[prost(uint32, tag = "7")] - pub retcode: u32, - #[prost(message, optional, tag = "15")] + #[prost(message, optional, tag = "6")] pub lcoclenjjai: ::core::option::Option, + #[prost(uint32, tag = "3")] + pub retcode: u32, } /// Obf: OIOHPPMCMHE #[derive(proto_derive::CmdID)] -#[cmdid(7772)] +#[cmdid(7780)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RogueMagicEnterLayerCsReq { - #[prost(uint32, tag = "5")] - pub fllablfbeik: u32, - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "4")] pub lfcdodfmhhn: u32, + #[prost(uint32, tag = "15")] + pub fllablfbeik: u32, } /// Obf: LDALHBMJLPD #[derive(proto_derive::CmdID)] -#[cmdid(7785)] +#[cmdid(7702)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RogueMagicEnterLayerScRsp { - #[prost(uint32, tag = "1")] - pub retcode: u32, - #[prost(message, optional, tag = "4")] + #[prost(message, optional, tag = "13")] pub lcoclenjjai: ::core::option::Option, + #[prost(uint32, tag = "9")] + pub retcode: u32, } /// Obf: NMAAKGGGDDE #[derive(proto_derive::CmdID)] -#[cmdid(7716)] +#[cmdid(7705)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RogueMagicLevelInfoUpdateScNotify { - #[prost(message, repeated, tag = "3")] - pub ahooafgdehf: ::prost::alloc::vec::Vec, - #[prost(enumeration = "Jmpphgigffi", tag = "15")] - pub reason: i32, #[prost(uint32, tag = "2")] pub acgbelaigbo: u32, - #[prost(uint32, tag = "1")] - pub bgokheibnkl: u32, - #[prost(uint32, tag = "14")] - pub lfcdodfmhhn: u32, - #[prost(enumeration = "Behfnmkdomk", tag = "13")] + #[prost(message, repeated, tag = "15")] + pub ahooafgdehf: ::prost::alloc::vec::Vec, + #[prost(enumeration = "Jmpphgigffi", tag = "4")] + pub reason: i32, + #[prost(enumeration = "Behfnmkdomk", tag = "12")] pub status: i32, + #[prost(uint32, tag = "3")] + pub bgokheibnkl: u32, + #[prost(uint32, tag = "9")] + pub lfcdodfmhhn: u32, } /// Obf: BJMDBIIDBPH #[derive(proto_derive::CmdID)] -#[cmdid(7746)] +#[cmdid(7774)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RogueMagicAreaUpdateScNotify { - #[prost(message, repeated, tag = "13")] + #[prost(message, repeated, tag = "4")] pub jidjeamdkde: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Caclanloolk { - #[prost(uint32, tag = "2")] - pub efkegdoajbh: u32, #[prost(bool, tag = "14")] pub fbjhgpdkbgm: bool, + #[prost(uint32, tag = "2")] + pub efkegdoajbh: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Fjjdkdndfdj { - #[prost(bool, tag = "2")] - pub fbjhgpdkbgm: bool, - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "12")] pub kknghgbhcgg: u32, + #[prost(bool, tag = "4")] + pub fbjhgpdkbgm: bool, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Ognbigkhhbm { - #[prost(message, optional, tag = "7")] - pub gcglnkfdkkn: ::core::option::Option, - #[prost(message, optional, tag = "4")] - pub bjlemfmcodd: ::core::option::Option, - #[prost(message, optional, tag = "5")] + #[prost(message, optional, tag = "8")] pub embagmmhipa: ::core::option::Option, + #[prost(message, optional, tag = "7")] + pub bjlemfmcodd: ::core::option::Option, #[prost(message, optional, tag = "3")] pub bhmhlpchklg: ::core::option::Option, + #[prost(message, optional, tag = "5")] + pub gcglnkfdkkn: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Hcjgpmdgbjo { - #[prost(message, repeated, tag = "2")] - pub epckcookclj: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "5")] - pub blbfdcgceda: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "3")] + #[prost(message, repeated, tag = "15")] pub klmgaebeagk: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "11")] + #[prost(uint32, repeated, tag = "4")] pub mnkcjfelcng: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "10")] + pub blbfdcgceda: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "1")] + pub epckcookclj: ::prost::alloc::vec::Vec, } /// Obf: LPHOAKOKCGL #[derive(proto_derive::CmdID)] -#[cmdid(7739)] +#[cmdid(7738)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RogueMagicBattleFailSettleInfoScNotify { - #[prost(message, optional, tag = "1")] + #[prost(message, optional, tag = "3")] pub njnjebodmnl: ::core::option::Option, - #[prost(message, optional, tag = "13")] + #[prost(message, optional, tag = "1")] pub lcoclenjjai: ::core::option::Option, } /// Obf: PICMLKBCPGJ #[derive(proto_derive::CmdID)] -#[cmdid(7771)] +#[cmdid(7770)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RogueMagicSettleCsReq {} /// Obf: MMFBKKPAIAK #[derive(proto_derive::CmdID)] -#[cmdid(7752)] +#[cmdid(7759)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RogueMagicSettleScRsp { - #[prost(message, optional, tag = "15")] - pub njnjebodmnl: ::core::option::Option, #[prost(message, optional, tag = "6")] - pub mgcfoglkmch: ::core::option::Option, - #[prost(uint32, tag = "4")] - pub retcode: u32, - #[prost(message, optional, tag = "8")] - pub gfonfdbfbna: ::core::option::Option, - #[prost(message, optional, tag = "12")] pub lcoclenjjai: ::core::option::Option, + #[prost(message, optional, tag = "13")] + pub mgcfoglkmch: ::core::option::Option, + #[prost(message, optional, tag = "12")] + pub njnjebodmnl: ::core::option::Option, + #[prost(message, optional, tag = "1")] + pub gfonfdbfbna: ::core::option::Option, + #[prost(uint32, tag = "5")] + pub retcode: u32, } /// Obf: MHPBBOBPBDK #[derive(proto_derive::CmdID)] -#[cmdid(7743)] +#[cmdid(7752)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RogueMagicReviveCostUpdateScNotify { - #[prost(message, optional, tag = "14")] + #[prost(message, optional, tag = "15")] pub gficflciejj: ::core::option::Option, } /// Obf: PHCBEONFBHA #[derive(proto_derive::CmdID)] -#[cmdid(7733)] +#[cmdid(7768)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RogueMagicReviveAvatarCsReq { - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "7")] pub interacted_prop_entity_id: u32, - #[prost(uint32, repeated, tag = "14")] + #[prost(uint32, repeated, tag = "11")] pub avatar_id_list: ::prost::alloc::vec::Vec, } /// Obf: CPMJBEHCKNB #[derive(proto_derive::CmdID)] -#[cmdid(7742)] +#[cmdid(7794)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RogueMagicReviveAvatarScRsp { - #[prost(message, optional, tag = "12")] + #[prost(message, optional, tag = "6")] pub gficflciejj: ::core::option::Option, - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "3")] pub retcode: u32, } /// Obf: JCNFFMKKAKM #[derive(proto_derive::CmdID)] -#[cmdid(7777)] +#[cmdid(7736)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RogueMagicQueryCsReq {} #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Olfgbamefji { - #[prost(uint32, tag = "10")] - pub blfdfmcffim: u32, - #[prost(uint32, tag = "9")] - pub nnnkjkclblo: u32, - #[prost(uint32, tag = "6")] - pub fonnghlgjfa: u32, - #[prost(message, repeated, tag = "685")] - pub eldolkcakae: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "1062")] - pub magic_list: ::prost::alloc::vec::Vec, #[prost(uint32, tag = "8")] - pub ofbiahgopcm: u32, - #[prost(uint32, tag = "5")] - pub ipodnbljpol: u32, - #[prost(uint32, tag = "15")] - pub njiempgeeog: u32, - #[prost(uint32, tag = "4")] - pub hmkgbmidgop: u32, - #[prost(uint32, tag = "3")] pub bgokheibnkl: u32, - #[prost(uint32, repeated, tag = "1190")] - pub jlhfojodokg: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "4")] + pub blfdfmcffim: u32, + #[prost(uint32, tag = "15")] + pub ofbiahgopcm: u32, + #[prost(message, repeated, tag = "1117")] + pub magic_list: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "7")] + pub nnnkjkclblo: u32, + #[prost(uint32, tag = "5")] + pub hmkgbmidgop: u32, + #[prost(uint32, tag = "10")] pub nmjaibbldoc: u32, - #[prost(uint32, repeated, tag = "512")] + #[prost(uint32, repeated, tag = "1499")] pub avatar_id_list: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "1368")] + pub eldolkcakae: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "1")] + pub njiempgeeog: u32, + #[prost(uint32, tag = "14")] + pub ipodnbljpol: u32, + #[prost(uint32, repeated, tag = "616")] + pub jlhfojodokg: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "11")] + pub fonnghlgjfa: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Koiicmieaef { - #[prost(uint32, repeated, tag = "1458")] + #[prost(uint32, repeated, tag = "439")] pub dpplcddhbge: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Pjebcbnpdic { + #[prost(message, optional, tag = "9")] + pub cgaijcclkbh: ::core::option::Option, + #[prost(bool, tag = "14")] + pub biifelfegnk: bool, + #[prost(uint32, tag = "15")] + pub ifpoilopfag: u32, + #[prost(bool, tag = "8")] + pub is_taken_reward: bool, + #[prost(message, optional, tag = "10")] + pub record_info: ::core::option::Option, #[prost(uint32, tag = "6")] pub area_id: u32, - #[prost(uint32, tag = "14")] - pub ifpoilopfag: u32, - #[prost(bool, tag = "11")] - pub is_taken_reward: bool, - #[prost(uint32, repeated, tag = "13")] - pub npbnmmkhkop: ::prost::alloc::vec::Vec, - #[prost(message, optional, tag = "5")] - pub record_info: ::core::option::Option, - #[prost(bool, tag = "7")] + #[prost(bool, tag = "4")] pub knbdpfeidnm: bool, - #[prost(message, optional, tag = "1")] - pub cgaijcclkbh: ::core::option::Option, - #[prost(bool, tag = "12")] - pub biifelfegnk: bool, + #[prost(uint32, repeated, tag = "1")] + pub npbnmmkhkop: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Cchiedibofm { - #[prost(bool, tag = "13")] - pub knbdpfeidnm: bool, - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "1")] pub handcdpibld: u32, + #[prost(bool, tag = "7")] + pub knbdpfeidnm: bool, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Bgapfbpijhp { - #[prost(uint32, repeated, tag = "9")] + #[prost(uint32, repeated, tag = "8")] pub eacemapdndh: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Pbbedpiipek { - #[prost(message, repeated, tag = "14")] - pub dimgdinccji: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "2")] - pub picfhpkdnel: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "5")] - pub kglbndeaphf: ::prost::alloc::vec::Vec, - #[prost(message, optional, tag = "13")] - pub okakamonpfl: ::core::option::Option, - #[prost(message, optional, tag = "9")] - pub story_buff_info: ::core::option::Option, #[prost(message, repeated, tag = "4")] pub jidjeamdkde: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "12")] + #[prost(message, repeated, tag = "2")] pub magic_list: ::prost::alloc::vec::Vec, + #[prost(message, optional, tag = "12")] + pub story_info: ::core::option::Option, + #[prost(message, repeated, tag = "1")] + pub picfhpkdnel: ::prost::alloc::vec::Vec, + #[prost(message, optional, tag = "9")] + pub okakamonpfl: ::core::option::Option, + #[prost(uint32, repeated, tag = "3")] + pub kglbndeaphf: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "6")] + pub dimgdinccji: ::prost::alloc::vec::Vec, } /// Obf: JAFOJENLDJP #[derive(proto_derive::CmdID)] -#[cmdid(7758)] +#[cmdid(7787)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RogueMagicQueryScRsp { - #[prost(message, optional, tag = "4")] - pub bhmhlpchklg: ::core::option::Option, - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "6")] pub retcode: u32, - #[prost(message, optional, tag = "11")] + #[prost(message, optional, tag = "12")] + pub bhmhlpchklg: ::core::option::Option, + #[prost(message, optional, tag = "5")] pub lagbgldlgcb: ::core::option::Option, } /// Obf: MDLNPIMICMD #[derive(proto_derive::CmdID)] -#[cmdid(7729)] +#[cmdid(7706)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RogueMagicScepterDressInUnitCsReq { - #[prost(uint32, tag = "12")] - pub scepter_id: u32, - #[prost(uint32, tag = "7")] - pub elpinnnalbd: u32, - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "1")] pub slot_id: u32, + #[prost(uint32, tag = "14")] + pub scepter_id: u32, + #[prost(uint32, tag = "12")] + pub elpinnnalbd: u32, } /// Obf: AAGDKJFNAKG #[derive(proto_derive::CmdID)] -#[cmdid(7763)] +#[cmdid(7731)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RogueMagicScepterDressInUnitScRsp { - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "8")] pub retcode: u32, } /// Obf: CHJNEKCPADA #[derive(proto_derive::CmdID)] -#[cmdid(7764)] +#[cmdid(7718)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RogueMagicAutoDressInUnitCsReq { #[prost(uint32, repeated, tag = "4")] @@ -26161,208 +27573,208 @@ pub struct RogueMagicAutoDressInUnitCsReq { } /// Obf: DMKCMBHADOL #[derive(proto_derive::CmdID)] -#[cmdid(7706)] +#[cmdid(7747)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RogueMagicAutoDressInUnitScRsp { - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "12")] pub retcode: u32, } /// Obf: LIAJHMCJDLO #[derive(proto_derive::CmdID)] -#[cmdid(7724)] +#[cmdid(7728)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RogueMagicSetAutoDressInMagicUnitCsReq { - #[prost(bool, tag = "5")] + #[prost(bool, tag = "10")] pub khdhahnnalm: bool, } /// Obf: NNJADFLFHEB #[derive(proto_derive::CmdID)] -#[cmdid(7757)] +#[cmdid(7723)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RogueMagicSetAutoDressInMagicUnitScRsp { - #[prost(bool, tag = "1")] - pub khdhahnnalm: bool, - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "2")] pub retcode: u32, + #[prost(bool, tag = "7")] + pub khdhahnnalm: bool, } /// Obf: AMBAEBKGJIB #[derive(proto_derive::CmdID)] -#[cmdid(7713)] +#[cmdid(7755)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RogueMagicAutoDressInMagicUnitChangeScNotify { - #[prost(bool, tag = "5")] + #[prost(bool, tag = "4")] pub khdhahnnalm: bool, } /// Obf: LLCCLFEGKHD #[derive(proto_derive::CmdID)] -#[cmdid(7711)] +#[cmdid(7744)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RogueMagicScepterTakeOffUnitCsReq { - #[prost(uint32, tag = "8")] - pub scepter_id: u32, - #[prost(uint32, repeated, tag = "13")] + #[prost(uint32, repeated, tag = "12")] pub bhkankfpdcp: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "10")] + pub scepter_id: u32, } /// Obf: FJKAPMKLJAE #[derive(proto_derive::CmdID)] -#[cmdid(7793)] +#[cmdid(7749)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RogueMagicScepterTakeOffUnitScRsp { - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "6")] pub retcode: u32, } /// Obf: IHBDBADPBEH #[derive(proto_derive::CmdID)] -#[cmdid(7725)] +#[cmdid(7741)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RogueMagicUnitComposeCsReq { - #[prost(uint32, repeated, tag = "10")] + #[prost(uint32, repeated, tag = "5")] pub bhkankfpdcp: ::prost::alloc::vec::Vec, } /// Obf: GPLNECHOOCF #[derive(proto_derive::CmdID)] -#[cmdid(7714)] +#[cmdid(7784)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RogueMagicUnitComposeScRsp { - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "12")] pub retcode: u32, } /// Obf: DDIECBDNCIJ #[derive(proto_derive::CmdID)] -#[cmdid(7784)] +#[cmdid(7778)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RogueMagicUnitReforgeCsReq { - #[prost(uint32, repeated, tag = "4")] + #[prost(uint32, repeated, tag = "14")] pub bhkankfpdcp: ::prost::alloc::vec::Vec, } /// Obf: AJMPFOIJAML #[derive(proto_derive::CmdID)] -#[cmdid(7737)] +#[cmdid(7734)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RogueMagicUnitReforgeScRsp { - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "11")] pub retcode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Iejppfjfjlj { - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "7")] pub cmadmlialjl: u32, - #[prost(message, optional, tag = "13")] + #[prost(message, optional, tag = "3")] pub talent_info: ::core::option::Option, } /// Obf: MKFONFJNKDB #[derive(proto_derive::CmdID)] -#[cmdid(7730)] +#[cmdid(7745)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RogueMagicGetTalentInfoCsReq {} /// Obf: CMFPLABIBCD #[derive(proto_derive::CmdID)] -#[cmdid(7775)] +#[cmdid(7769)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RogueMagicGetTalentInfoScRsp { #[prost(uint32, tag = "14")] pub retcode: u32, - #[prost(message, optional, tag = "12")] + #[prost(message, optional, tag = "9")] pub okakamonpfl: ::core::option::Option, } /// Obf: HHMFEHGPHIL #[derive(proto_derive::CmdID)] -#[cmdid(7751)] +#[cmdid(7703)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RogueMagicEnableTalentCsReq { - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "15")] pub talent_id: u32, } /// Obf: BLCHCIIGNDB #[derive(proto_derive::CmdID)] -#[cmdid(7791)] +#[cmdid(7724)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RogueMagicEnableTalentScRsp { #[prost(message, optional, tag = "4")] pub okakamonpfl: ::core::option::Option, - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "11")] pub retcode: u32, } /// Obf: ECEGEHKCEBB #[derive(proto_derive::CmdID)] -#[cmdid(7707)] +#[cmdid(7722)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RogueMagicGetMiscRealTimeDataCsReq {} /// Obf: FANODLFGDEG #[derive(proto_derive::CmdID)] -#[cmdid(7798)] +#[cmdid(7740)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RogueMagicGetMiscRealTimeDataScRsp { - #[prost(message, optional, tag = "9")] + #[prost(message, optional, tag = "2")] pub gcglnkfdkkn: ::core::option::Option, - #[prost(uint32, tag = "6")] - pub retcode: u32, - #[prost(message, optional, tag = "8")] + #[prost(message, optional, tag = "10")] pub bjlemfmcodd: ::core::option::Option, + #[prost(uint32, tag = "1")] + pub retcode: u32, } /// Obf: GCIONHDOOCC #[derive(proto_derive::CmdID)] -#[cmdid(7745)] +#[cmdid(7719)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RogueMagicStoryInfoUpdateScNotify { - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "2")] pub mnbccbabcha: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Eddhmigfdji { - #[prost(uint32, tag = "9")] - pub mbgkckldhib: u32, - #[prost(bool, tag = "5")] + #[prost(bool, tag = "3")] pub pipmgacmjnn: bool, - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "1")] pub inbjppapcag: u32, + #[prost(uint32, tag = "11")] + pub mbgkckldhib: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Foiacpfkdhk { - #[prost(bool, tag = "3")] - pub pipmgacmjnn: bool, - #[prost(uint32, tag = "2")] - pub mbgkckldhib: u32, - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "13")] pub inbjppapcag: u32, - #[prost(uint32, repeated, tag = "5")] + #[prost(uint32, tag = "10")] + pub mbgkckldhib: u32, + #[prost(uint32, repeated, tag = "15")] pub onnjgdjnflg: ::prost::alloc::vec::Vec, + #[prost(bool, tag = "12")] + pub pipmgacmjnn: bool, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Pogcnjmngpi { - #[prost(uint32, repeated, tag = "9")] + #[prost(uint32, repeated, tag = "13")] pub onnjgdjnflg: ::prost::alloc::vec::Vec, - #[prost(bool, tag = "8")] - pub pipmgacmjnn: bool, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "4")] pub inbjppapcag: u32, + #[prost(bool, tag = "7")] + pub pipmgacmjnn: bool, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Ainblbbfdbj { - #[prost(bool, tag = "4")] - pub pipmgacmjnn: bool, - #[prost(uint32, repeated, tag = "3")] - pub nhgojdodgma: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "5")] - pub nijagoajpem: u32, - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "8")] pub inbjppapcag: u32, + #[prost(uint32, tag = "3")] + pub nijagoajpem: u32, + #[prost(uint32, repeated, tag = "11")] + pub nhgojdodgma: ::prost::alloc::vec::Vec, + #[prost(bool, tag = "6")] + pub pipmgacmjnn: bool, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Ajeeiakemip { - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "2")] pub cehfiilmjkm: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Khmjbjlobpg { - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "9")] pub cpocngekiib: u32, } #[derive(proto_derive::CmdID)] @@ -26374,196 +27786,196 @@ pub struct Gfgdodhmbpk { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Npdipkhdcnf { - #[prost(uint32, tag = "5")] - pub inbjppapcag: u32, - #[prost(uint32, tag = "1")] - pub iigoemfhgll: u32, - #[prost(uint32, repeated, tag = "6")] - pub nhgojdodgma: ::prost::alloc::vec::Vec, - #[prost(bool, tag = "14")] + #[prost(bool, tag = "12")] pub pipmgacmjnn: bool, + #[prost(uint32, tag = "14")] + pub iigoemfhgll: u32, + #[prost(uint32, tag = "15")] + pub inbjppapcag: u32, + #[prost(uint32, repeated, tag = "13")] + pub nhgojdodgma: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Egalagnaefb { - #[prost(uint32, tag = "7")] - pub gpdeiiioipn: u32, - #[prost(uint32, tag = "3")] - pub olgljhecdof: u32, #[prost(uint32, tag = "15")] + pub olgljhecdof: u32, + #[prost(uint32, tag = "5")] pub gclebgddiip: u32, + #[prost(uint32, tag = "11")] + pub gpdeiiioipn: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Ndgljknkefk { - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "14")] pub ojeblmkkmgo: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Egfdajdihnj { - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "9")] pub item_id: u32, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "11")] pub mbejblfhcbh: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Pnikofbimjl { - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "4")] pub nejdmegnfgk: u32, #[prost(uint32, tag = "13")] pub eoaefbknffe: u32, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "1")] pub num: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Jjdkoeehbjo { - #[prost(uint32, tag = "6")] - pub num: u32, - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "2")] pub ooofgdbldce: u32, + #[prost(uint32, tag = "8")] + pub num: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Okgmdmjhcmk { - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "11")] pub cehfiilmjkm: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Cfkbhpnbcnb { - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "12")] pub mbgkckldhib: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Bbbeoeoifjk { - #[prost(uint32, repeated, tag = "10")] - pub onnjgdjnflg: ::prost::alloc::vec::Vec, #[prost(uint32, tag = "13")] pub inbjppapcag: u32, - #[prost(bool, tag = "12")] + #[prost(uint32, repeated, tag = "8")] + pub onnjgdjnflg: ::prost::alloc::vec::Vec, + #[prost(bool, tag = "2")] pub pipmgacmjnn: bool, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Ahpnapgpjeg { - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "7")] pub ojeblmkkmgo: u32, - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "14")] pub amojfmfeoge: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Fpchmkkcgfa { - #[prost(enumeration = "Njchljfiodm", tag = "10")] - pub lghokgabgck: i32, - #[prost(uint32, tag = "3")] - pub bnckfbfmgmi: u32, #[prost(uint32, tag = "8")] + pub bnckfbfmgmi: u32, + #[prost(uint32, tag = "3")] pub affjhmjdibn: u32, + #[prost(enumeration = "Njchljfiodm", tag = "7")] + pub lghokgabgck: i32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Ndfookghhop { - #[prost(uint32, repeated, tag = "1")] - pub cegckbndalf: ::prost::alloc::vec::Vec, - #[prost(bool, tag = "7")] - pub pipmgacmjnn: bool, - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "1")] pub inbjppapcag: u32, + #[prost(bool, tag = "2")] + pub pipmgacmjnn: bool, + #[prost(uint32, repeated, tag = "10")] + pub cegckbndalf: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Mdbjbiekkee { - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "4")] pub lipapomhmce: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Blcpnbikclp { - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "8")] pub count: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Aekpjeldapd { - #[prost(uint64, tag = "12")] - pub pkfcldincal: u64, - #[prost(message, optional, tag = "9")] - pub scepter: ::core::option::Option, - #[prost(enumeration = "Lgmdbcffjof", tag = "2")] + #[prost(enumeration = "Lgmdbcffjof", tag = "3")] pub hhmabjdimgm: i32, - #[prost(oneof = "aekpjeldapd::Buff", tags = "1234")] - pub buff: ::core::option::Option, + #[prost(uint64, tag = "15")] + pub pkfcldincal: u64, + #[prost(message, optional, tag = "14")] + pub scepter: ::core::option::Option, + #[prost(oneof = "aekpjeldapd::Info", tags = "1733")] + pub info: ::core::option::Option, } /// Nested message and enum types in `AEKPJELDAPD`. pub mod aekpjeldapd { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum Buff { - #[prost(message, tag = "1234")] + pub enum Info { + #[prost(message, tag = "1733")] Kbobeemcndd(super::Ndfookghhop), } } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Eendhpkpflp { - #[prost(message, repeated, tag = "11")] + #[prost(message, repeated, tag = "4")] pub mebjclenpio: ::prost::alloc::vec::Vec, } /// Obf: BMPIBDIIFBE #[derive(proto_derive::CmdID)] -#[cmdid(5331)] +#[cmdid(5367)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RogueModifierAddNotify { - #[prost(message, optional, tag = "6")] + #[prost(message, optional, tag = "1")] pub pdaampcelaa: ::core::option::Option, } /// Obf: ICHALPIPMMJ #[derive(proto_derive::CmdID)] -#[cmdid(5340)] +#[cmdid(5339)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RogueModifierSelectCellCsReq { - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "10")] pub hhcbjghkcpc: u32, } /// Obf: DEMFLHNIOGF #[derive(proto_derive::CmdID)] -#[cmdid(5376)] +#[cmdid(5327)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RogueModifierSelectCellScRsp { - #[prost(uint32, tag = "1")] - pub retcode: u32, - #[prost(uint32, tag = "6")] - pub hhcbjghkcpc: u32, - #[prost(message, optional, tag = "3")] + #[prost(message, optional, tag = "11")] pub jdijkegcibp: ::core::option::Option, + #[prost(uint32, tag = "10")] + pub hhcbjghkcpc: u32, + #[prost(uint32, tag = "2")] + pub retcode: u32, } /// Obf: JGDGHGEKGPG #[derive(proto_derive::CmdID)] -#[cmdid(5352)] +#[cmdid(5359)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RogueModifierUpdateNotify { - #[prost(message, optional, tag = "3")] + #[prost(message, optional, tag = "4")] pub pdaampcelaa: ::core::option::Option, } /// Obf: HOCIFOBCEOM #[derive(proto_derive::CmdID)] -#[cmdid(5322)] +#[cmdid(5354)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RogueModifierDelNotify { - #[prost(uint64, tag = "15")] + #[prost(uint64, tag = "6")] pub pkfcldincal: u64, } /// Obf: HCGBFLPOCPI #[derive(proto_derive::CmdID)] -#[cmdid(5356)] +#[cmdid(5377)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RogueModifierStageStartNotify { - #[prost(enumeration = "Lgmdbcffjof", tag = "9")] + #[prost(enumeration = "Lgmdbcffjof", tag = "7")] pub hhmabjdimgm: i32, } #[derive(proto_derive::CmdID)] @@ -26571,337 +27983,337 @@ pub struct RogueModifierStageStartNotify { pub struct Fjemjbnajfj { #[prost(message, optional, tag = "4")] pub scene: ::core::option::Option, - #[prost(message, optional, tag = "5")] + #[prost(message, optional, tag = "2")] pub lineup: ::core::option::Option, - #[prost(message, optional, tag = "1")] + #[prost(message, optional, tag = "5")] pub map_rotation_data: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Cfcdhlpoogc { - #[prost(message, optional, tag = "6")] + #[prost(message, optional, tag = "11")] pub ikobkinkhcf: ::core::option::Option, - #[prost(oneof = "cfcdhlpoogc::Buff", tags = "1752")] - pub buff: ::core::option::Option, + #[prost(oneof = "cfcdhlpoogc::Info", tags = "1916")] + pub info: ::core::option::Option, } /// Nested message and enum types in `CFCDHLPOOGC`. pub mod cfcdhlpoogc { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum Buff { - #[prost(message, tag = "1752")] + pub enum Info { + #[prost(message, tag = "1916")] Icffjlicimb(super::Lhadmkcgcko), } } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Nkpkiaamodg { - #[prost(uint32, tag = "10")] - pub jdbahpebfjc: u32, - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "9")] pub mnnkjpliilj: u32, - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "8")] + pub jdbahpebfjc: u32, + #[prost(uint32, tag = "10")] pub ldfehkdcnel: u32, - #[prost(bool, tag = "1")] + #[prost(bool, tag = "15")] pub fbjhgpdkbgm: bool, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Nnijcdkhpkl { - #[prost(bool, tag = "15")] - pub fbjhgpdkbgm: bool, - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "1")] pub jedjbedkcji: u32, - #[prost(uint32, tag = "7")] - pub aiplflibpkj: u32, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "6")] pub cdinhfhbmog: u32, + #[prost(bool, tag = "8")] + pub fbjhgpdkbgm: bool, + #[prost(uint32, tag = "11")] + pub aiplflibpkj: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Gpnjmehndmn { - #[prost(uint32, tag = "6")] - pub hipjhpjolbe: u32, - #[prost(bool, tag = "10")] + #[prost(bool, tag = "6")] pub fbjhgpdkbgm: bool, - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "8")] + pub hipjhpjolbe: u32, + #[prost(uint32, tag = "9")] pub japdcmjpiej: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Fbhnfjcnhml { - #[prost(bool, tag = "14")] + #[prost(bool, tag = "3")] pub fbjhgpdkbgm: bool, - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "9")] pub japdcmjpiej: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Bmnmbpnbbhm { - #[prost(bool, tag = "13")] + #[prost(bool, tag = "2")] pub pgcbeoleioo: bool, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Lhadmkcgcko { + #[prost(message, optional, tag = "12")] + pub ijbphigkmhf: ::core::option::Option, #[prost(message, optional, tag = "13")] - pub jmidlldkjbi: ::core::option::Option, - #[prost(message, optional, tag = "9")] - pub lmpgbonbhgn: ::core::option::Option, - #[prost(message, optional, tag = "2")] - pub item_value: ::core::option::Option, - #[prost(message, optional, tag = "1")] pub level: ::core::option::Option, + #[prost(message, optional, tag = "11")] + pub lkkfhfdpfke: ::core::option::Option, + #[prost(message, optional, tag = "5")] + pub lineup: ::core::option::Option, + #[prost(message, optional, tag = "2")] + pub kkobbenpfph: ::core::option::Option, #[prost(message, optional, tag = "14")] pub jibdgcfcdio: ::core::option::Option, - #[prost(message, optional, tag = "5")] - pub ijbphigkmhf: ::core::option::Option, - #[prost(message, optional, tag = "10")] - pub kkobbenpfph: ::core::option::Option, + #[prost(message, optional, tag = "1")] + pub bdjebpnjelp: ::core::option::Option, #[prost(message, optional, tag = "8")] pub hpdbjalemmo: ::core::option::Option, - #[prost(message, optional, tag = "3")] - pub lineup: ::core::option::Option, - #[prost(message, optional, tag = "15")] - pub bdjebpnjelp: ::core::option::Option, - #[prost(message, optional, tag = "12")] - pub lkkfhfdpfke: ::core::option::Option, + #[prost(message, optional, tag = "7")] + pub jmidlldkjbi: ::core::option::Option, + #[prost(message, optional, tag = "4")] + pub item_value: ::core::option::Option, + #[prost(message, optional, tag = "6")] + pub lmpgbonbhgn: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Gekleellcbf { #[prost(bool, tag = "2")] pub ejoijgclcjo: bool, - #[prost(enumeration = "Ogadimmljhn", tag = "9")] - pub status: i32, - #[prost(bool, tag = "6")] + #[prost(bool, tag = "13")] pub lgbohdicfpk: bool, - #[prost(message, repeated, tag = "8")] - pub ahooafgdehf: ::prost::alloc::vec::Vec, - #[prost(enumeration = "Akkhkmecafl", tag = "14")] - pub reason: i32, - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "12")] pub lfcdodfmhhn: u32, + #[prost(enumeration = "Ogadimmljhn", tag = "6")] + pub status: i32, + #[prost(enumeration = "Akkhkmecafl", tag = "15")] + pub reason: i32, + #[prost(message, repeated, tag = "9")] + pub ahooafgdehf: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Aggmhdjgfdi { - #[prost(uint32, tag = "3")] - pub ognhpkojhjp: u32, #[prost(uint32, tag = "13")] + pub ognhpkojhjp: u32, + #[prost(uint32, tag = "3")] pub klgmnchbicp: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Fnijjhaenbl { - #[prost(uint32, repeated, tag = "13")] + #[prost(uint32, repeated, tag = "2")] pub dimhpbcpnlc: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Babhbomomdf { - #[prost(message, repeated, tag = "2")] + #[prost(message, repeated, tag = "6")] pub mnfjeiininl: ::prost::alloc::vec::Vec, - #[prost(enumeration = "Odbnigdlncf", tag = "13")] + #[prost(enumeration = "Odbnigdlncf", tag = "15")] pub status: i32, - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "2")] pub ppjbgnbmkpm: u32, - #[prost(uint32, tag = "9")] - pub bhpgjcicmjm: u32, #[prost(uint32, tag = "4")] + pub bhpgjcicmjm: u32, + #[prost(uint32, tag = "3")] pub ogldnefkndo: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Lhomiedaoid { - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "11")] pub akdleblpbmd: u32, - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "9")] pub room_id: u32, - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "7")] pub eipnnejnnkj: u32, - #[prost(enumeration = "Lmiknfdlffo", tag = "1")] + #[prost(enumeration = "Lmiknfdlffo", tag = "6")] pub status: i32, } /// Obf: BENEIABJKJJ #[derive(proto_derive::CmdID)] -#[cmdid(6032)] +#[cmdid(6080)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RogueTournStartCsReq { - #[prost(uint32, repeated, tag = "15")] - pub avatar_id_list: ::prost::alloc::vec::Vec, - #[prost(bool, tag = "1")] + #[prost(uint32, tag = "5")] + pub area_id: u32, + #[prost(bool, tag = "8")] pub lgbohdicfpk: bool, + #[prost(uint32, repeated, tag = "6")] + pub avatar_id_list: ::prost::alloc::vec::Vec, #[prost(bool, tag = "11")] pub ejoijgclcjo: bool, - #[prost(uint32, tag = "2")] - pub area_id: u32, } /// Obf: JHDPEKDNLJA #[derive(proto_derive::CmdID)] -#[cmdid(6078)] +#[cmdid(6044)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RogueTournStartScRsp { #[prost(uint32, tag = "3")] pub khjcgnllfoh: u32, - #[prost(message, optional, tag = "11")] - pub bhmhlpchklg: ::core::option::Option, #[prost(message, optional, tag = "1")] pub lcoclenjjai: ::core::option::Option, - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "8")] pub retcode: u32, + #[prost(message, optional, tag = "11")] + pub bhmhlpchklg: ::core::option::Option, } /// Obf: BGHMEOBMOLD #[derive(proto_derive::CmdID)] -#[cmdid(6064)] +#[cmdid(6065)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RogueTournEnterCsReq {} /// Obf: LIHHHJPDFJP #[derive(proto_derive::CmdID)] -#[cmdid(6070)] +#[cmdid(6073)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RogueTournEnterScRsp { - #[prost(message, optional, tag = "10")] - pub bhmhlpchklg: ::core::option::Option, - #[prost(message, optional, tag = "14")] - pub lcoclenjjai: ::core::option::Option, - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "11")] pub retcode: u32, + #[prost(message, optional, tag = "9")] + pub bhmhlpchklg: ::core::option::Option, + #[prost(message, optional, tag = "6")] + pub lcoclenjjai: ::core::option::Option, } /// Obf: EAKFLBEGFOC #[derive(proto_derive::CmdID)] -#[cmdid(6026)] +#[cmdid(6038)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RogueTournLeaveCsReq {} /// Obf: KLBFIAEDCKA #[derive(proto_derive::CmdID)] -#[cmdid(6042)] +#[cmdid(6096)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RogueTournLeaveScRsp { - #[prost(message, optional, tag = "4")] + #[prost(message, optional, tag = "1")] pub lcoclenjjai: ::core::option::Option, #[prost(uint32, tag = "11")] pub retcode: u32, } /// Obf: PGAJDCGCLDK #[derive(proto_derive::CmdID)] -#[cmdid(6080)] +#[cmdid(6048)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RogueTournSettleCsReq {} #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Jhllljajkep { - #[prost(message, optional, tag = "15")] - pub clkhpondddo: ::core::option::Option, - #[prost(message, optional, tag = "13")] - pub embagmmhipa: ::core::option::Option, - #[prost(message, optional, tag = "3")] - pub kgciaiafibe: ::core::option::Option, #[prost(message, optional, tag = "6")] - pub gcglnkfdkkn: ::core::option::Option, + pub embagmmhipa: ::core::option::Option, #[prost(message, optional, tag = "2")] pub cjcojamleel: ::core::option::Option, + #[prost(message, optional, tag = "12")] + pub kgciaiafibe: ::core::option::Option, + #[prost(message, optional, tag = "14")] + pub clkhpondddo: ::core::option::Option, #[prost(message, optional, tag = "5")] - pub bhmhlpchklg: ::core::option::Option, - #[prost(message, optional, tag = "4")] pub pfoepfphfnj: ::core::option::Option, + #[prost(message, optional, tag = "13")] + pub bhmhlpchklg: ::core::option::Option, + #[prost(message, optional, tag = "10")] + pub gcglnkfdkkn: ::core::option::Option, } /// Obf: FOKBKLIAFOL #[derive(proto_derive::CmdID)] -#[cmdid(6056)] +#[cmdid(6062)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RogueTournSettleScRsp { - #[prost(uint32, tag = "11")] - pub retcode: u32, - #[prost(message, optional, tag = "7")] - pub njnjebodmnl: ::core::option::Option, - #[prost(message, optional, tag = "12")] + #[prost(message, optional, tag = "1")] pub lcoclenjjai: ::core::option::Option, + #[prost(uint32, tag = "15")] + pub retcode: u32, + #[prost(message, optional, tag = "5")] + pub njnjebodmnl: ::core::option::Option, } /// Obf: HCBPGMHLBPN #[derive(proto_derive::CmdID)] -#[cmdid(6084)] +#[cmdid(6033)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RogueTournEnterRoomCsReq { - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "12")] pub bhpgjcicmjm: u32, - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "8")] pub fllablfbeik: u32, } /// Obf: CDGLINBMGNK #[derive(proto_derive::CmdID)] -#[cmdid(6061)] +#[cmdid(6031)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RogueTournEnterRoomScRsp { - #[prost(message, optional, tag = "7")] + #[prost(message, optional, tag = "8")] pub lcoclenjjai: ::core::option::Option, - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "11")] pub retcode: u32, } /// Obf: EHOIEFKOAGF #[derive(proto_derive::CmdID)] -#[cmdid(6081)] +#[cmdid(6074)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RogueTournEnterLayerCsReq { - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "5")] pub fllablfbeik: u32, - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "12")] pub lfcdodfmhhn: u32, } /// Obf: JPAGIJLIDLH #[derive(proto_derive::CmdID)] -#[cmdid(6073)] +#[cmdid(6035)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RogueTournEnterLayerScRsp { - #[prost(uint32, tag = "2")] - pub retcode: u32, - #[prost(message, optional, tag = "5")] + #[prost(message, optional, tag = "15")] pub lcoclenjjai: ::core::option::Option, + #[prost(uint32, tag = "9")] + pub retcode: u32, } /// Obf: EDLKHKLMEFN #[derive(proto_derive::CmdID)] -#[cmdid(6087)] +#[cmdid(6077)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RogueTournLevelInfoUpdateScNotify { - #[prost(message, repeated, tag = "12")] - pub ahooafgdehf: ::prost::alloc::vec::Vec, - #[prost(enumeration = "Ogadimmljhn", tag = "14")] - pub status: i32, - #[prost(enumeration = "Akkhkmecafl", tag = "9")] + #[prost(enumeration = "Akkhkmecafl", tag = "1")] pub reason: i32, - #[prost(uint32, tag = "15")] + #[prost(message, repeated, tag = "13")] + pub ahooafgdehf: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "11")] pub lfcdodfmhhn: u32, + #[prost(enumeration = "Ogadimmljhn", tag = "2")] + pub status: i32, } /// Obf: DHMMALPJOEO #[derive(proto_derive::CmdID)] -#[cmdid(6039)] +#[cmdid(6084)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RogueTournTakeExpRewardCsReq { - #[prost(uint32, tag = "15")] - pub acgkfedndfh: u32, - #[prost(uint32, repeated, tag = "10")] + #[prost(uint32, repeated, tag = "8")] pub lopmhjfbhim: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "1")] + pub acgkfedndfh: u32, } /// Obf: CMJJOJDPFCE #[derive(proto_derive::CmdID)] -#[cmdid(6094)] +#[cmdid(6015)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RogueTournTakeExpRewardScRsp { - #[prost(uint32, tag = "9")] - pub exp: u32, - #[prost(message, optional, tag = "5")] - pub reward: ::core::option::Option, #[prost(uint32, tag = "6")] pub retcode: u32, - #[prost(uint32, repeated, tag = "10")] + #[prost(uint32, repeated, tag = "7")] pub ckbmgabeego: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "2")] + pub exp: u32, + #[prost(message, optional, tag = "8")] + pub reward: ::core::option::Option, } /// Obf: PNDLKBFADJJ #[derive(proto_derive::CmdID)] -#[cmdid(6030)] +#[cmdid(6026)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RogueTournExpNotify { - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "2")] pub exp: u32, } /// Obf: AHAAMLBKFHF @@ -26912,703 +28324,703 @@ pub struct RogueTournQueryCsReq {} #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Olkfphpbpdl { - #[prost(uint32, repeated, tag = "4")] - pub hdmdaodjacb: ::prost::alloc::vec::Vec, #[prost(bool, tag = "14")] - pub biifelfegnk: bool, - #[prost(uint32, tag = "7")] - pub area_id: u32, - #[prost(bool, tag = "13")] pub gmopljjgbpo: bool, - #[prost(bool, tag = "12")] - pub knbdpfeidnm: bool, - #[prost(bool, tag = "8")] + #[prost(bool, tag = "10")] pub is_taken_reward: bool, + #[prost(bool, tag = "15")] + pub biifelfegnk: bool, + #[prost(uint32, tag = "8")] + pub area_id: u32, + #[prost(uint32, repeated, tag = "9")] + pub hdmdaodjacb: ::prost::alloc::vec::Vec, + #[prost(bool, tag = "5")] + pub knbdpfeidnm: bool, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Lhaeabojgop { - #[prost(uint32, tag = "3")] - pub lfpccpoljpc: u32, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "9")] pub khjcgnllfoh: u32, - #[prost(int64, tag = "14")] - pub end_time: i64, #[prost(bool, tag = "6")] pub gpodhhaohnp: bool, + #[prost(uint32, tag = "13")] + pub lfpccpoljpc: u32, + #[prost(int64, tag = "3")] + pub end_time: i64, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Ndnkbaggdhd { - #[prost(uint32, tag = "2")] - pub exp: u32, - #[prost(uint32, repeated, tag = "9")] + #[prost(uint32, repeated, tag = "3")] pub ckbmgabeego: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "4")] + pub exp: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Boicekfmcic { - #[prost(uint32, tag = "7")] - pub bjceklknlcd: u32, - #[prost(message, optional, tag = "14")] + #[prost(message, optional, tag = "7")] pub talent_info: ::core::option::Option, + #[prost(uint32, tag = "14")] + pub bjceklknlcd: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Jigdnfdnojd { - #[prost(bool, tag = "7")] + #[prost(bool, tag = "1")] pub knbdpfeidnm: bool, - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "5")] pub handcdpibld: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Pmbnjoonhpa { - #[prost(uint32, tag = "15")] - pub kaeojcobihc: u32, - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "13")] pub acgkfedndfh: u32, + #[prost(uint32, tag = "2")] + pub kaeojcobihc: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Kgdofadndaj { - #[prost(uint32, tag = "6")] - pub boflhofkacn: u32, - #[prost(uint32, repeated, tag = "11")] - pub nffbjbbcdmg: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "7")] - pub ppconkkpipm: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "2")] - pub fajcnmekknn: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "5")] - pub idoecnpkgce: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "3")] + #[prost(uint32, repeated, tag = "14")] pub kcdlmnincge: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "15")] + #[prost(uint32, repeated, tag = "8")] pub bkgjpcclidn: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "13")] + pub ppconkkpipm: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "2")] + pub boflhofkacn: u32, + #[prost(uint32, repeated, tag = "3")] + pub fajcnmekknn: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "6")] + pub nffbjbbcdmg: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "1")] + pub idoecnpkgce: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Kclchjmnpgl { - #[prost(uint32, tag = "6")] - pub ofgbjcccike: u32, - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "7")] pub ngiambeihpi: u32, + #[prost(uint32, tag = "14")] + pub ofgbjcccike: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Chgggegamdi { - #[prost(message, repeated, tag = "7")] + #[prost(message, repeated, tag = "1")] pub dimgdinccji: ::prost::alloc::vec::Vec, - #[prost(message, optional, tag = "11")] - pub ehobbjmedee: ::core::option::Option, - #[prost(message, optional, tag = "4")] - pub iakcmplpoee: ::core::option::Option, - #[prost(message, optional, tag = "13")] - pub hndbkklomlc: ::core::option::Option, - #[prost(message, optional, tag = "2")] - pub jdbmbikpbjb: ::core::option::Option, - #[prost(message, optional, tag = "14")] - pub fejgmnnfflg: ::core::option::Option, - #[prost(message, optional, tag = "12")] - pub llaoogchhdk: ::core::option::Option, - #[prost(message, repeated, tag = "3")] - pub gmopekcolbe: ::prost::alloc::vec::Vec, #[prost(message, repeated, tag = "8")] - pub jidjeamdkde: ::prost::alloc::vec::Vec, - #[prost(message, optional, tag = "15")] + pub gmopekcolbe: ::prost::alloc::vec::Vec, + #[prost(message, optional, tag = "2")] + pub ehobbjmedee: ::core::option::Option, + #[prost(message, optional, tag = "5")] + pub hndbkklomlc: ::core::option::Option, + #[prost(message, optional, tag = "12")] + pub fejgmnnfflg: ::core::option::Option, + #[prost(message, optional, tag = "14")] pub lkcefcljcbm: ::core::option::Option, + #[prost(message, optional, tag = "9")] + pub iakcmplpoee: ::core::option::Option, + #[prost(message, optional, tag = "6")] + pub llaoogchhdk: ::core::option::Option, + #[prost(message, repeated, tag = "15")] + pub jidjeamdkde: ::prost::alloc::vec::Vec, + #[prost(message, optional, tag = "7")] + pub jdbmbikpbjb: ::core::option::Option, } /// Obf: EKMABILMFGP #[derive(proto_derive::CmdID)] -#[cmdid(6052)] +#[cmdid(6058)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RogueTournQueryScRsp { - #[prost(message, optional, tag = "1")] - pub lagbgldlgcb: ::core::option::Option, - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "3")] pub retcode: u32, - #[prost(message, optional, tag = "13")] + #[prost(message, optional, tag = "14")] + pub lagbgldlgcb: ::core::option::Option, + #[prost(message, optional, tag = "10")] pub bhmhlpchklg: ::core::option::Option, } /// Obf: IGGANJCLBGC #[derive(proto_derive::CmdID)] -#[cmdid(6040)] +#[cmdid(6013)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RogueTournAreaUpdateScNotify { - #[prost(message, repeated, tag = "8")] + #[prost(message, repeated, tag = "9")] pub jidjeamdkde: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Cjpkpjfjkdg { - #[prost(message, optional, tag = "15")] + #[prost(message, optional, tag = "7")] pub bhmhlpchklg: ::core::option::Option, - #[prost(int64, tag = "3")] - pub end_time: i64, - #[prost(int64, tag = "10")] - pub time: i64, - #[prost(uint32, tag = "8")] - pub khncedgfpgl: u32, - #[prost(string, tag = "12")] + #[prost(string, tag = "1")] pub name: ::prost::alloc::string::String, - #[prost(message, optional, tag = "13")] + #[prost(message, optional, tag = "10")] pub fejgmnnfflg: ::core::option::Option, - #[prost(message, optional, tag = "4")] + #[prost(message, optional, tag = "11")] pub data: ::core::option::Option, + #[prost(int64, tag = "4")] + pub time: i64, + #[prost(int64, tag = "14")] + pub end_time: i64, + #[prost(uint32, tag = "2")] + pub khncedgfpgl: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Bkffnnaiodc { - #[prost(message, repeated, tag = "5")] + #[prost(message, repeated, tag = "9")] pub ckgfonmaeko: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "4")] pub item_value: u32, - #[prost(message, repeated, tag = "6")] + #[prost(message, repeated, tag = "2")] pub buff_list: ::prost::alloc::vec::Vec, } /// Obf: JAIKOKAHCLG #[derive(proto_derive::CmdID)] -#[cmdid(6021)] +#[cmdid(6037)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RogueTournGetAllArchiveCsReq {} /// Obf: ILMJEOBPDLK #[derive(proto_derive::CmdID)] -#[cmdid(6100)] +#[cmdid(6024)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RogueTournGetAllArchiveScRsp { - #[prost(uint32, tag = "1")] - pub retcode: u32, - #[prost(message, repeated, tag = "13")] + #[prost(message, repeated, tag = "7")] pub edjpodpnmed: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "10")] + pub retcode: u32, } /// Obf: JHENEDOMODK #[derive(proto_derive::CmdID)] -#[cmdid(6043)] +#[cmdid(6089)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RogueTournDeleteArchiveCsReq { - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "14")] pub khncedgfpgl: u32, } /// Obf: EABBDEIEDCB #[derive(proto_derive::CmdID)] -#[cmdid(6049)] +#[cmdid(6030)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RogueTournDeleteArchiveScRsp { - #[prost(uint32, tag = "8")] - pub khncedgfpgl: u32, - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "7")] pub retcode: u32, + #[prost(uint32, tag = "6")] + pub khncedgfpgl: u32, } /// Obf: ODHIICJDKOL #[derive(proto_derive::CmdID)] -#[cmdid(6024)] +#[cmdid(6088)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RogueTournRenameArchiveCsReq { - #[prost(uint32, tag = "10")] - pub khncedgfpgl: u32, - #[prost(string, tag = "2")] + #[prost(string, tag = "13")] pub name: ::prost::alloc::string::String, + #[prost(uint32, tag = "4")] + pub khncedgfpgl: u32, } /// Obf: KLCPHCOMDPF #[derive(proto_derive::CmdID)] -#[cmdid(6093)] +#[cmdid(6055)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RogueTournRenameArchiveScRsp { + #[prost(string, tag = "7")] + pub name: ::prost::alloc::string::String, #[prost(uint32, tag = "11")] pub khncedgfpgl: u32, - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "15")] pub retcode: u32, - #[prost(string, tag = "15")] - pub name: ::prost::alloc::string::String, } /// Obf: IOMGAOKICLC #[derive(proto_derive::CmdID)] -#[cmdid(6082)] +#[cmdid(6032)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RogueTournClearArchiveNameScNotify { - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "4")] pub khncedgfpgl: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Oomghibbcbn { #[prost(uint32, repeated, tag = "13")] - pub jncbpdhcahi: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "11")] - pub mkaifjibjik: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "10")] - pub hgcgilabndl: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "6")] pub hmjfcdlcifd: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "7")] + #[prost(message, repeated, tag = "9")] + pub hgcgilabndl: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "12")] + pub jncbpdhcahi: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "15")] pub acgkfedndfh: u32, - #[prost(uint32, repeated, tag = "15")] - pub amldailbmbo: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "8")] pub kaeojcobihc: u32, + #[prost(uint32, repeated, tag = "2")] + pub mkaifjibjik: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "11")] + pub amldailbmbo: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Bmpcjdeaiih { - #[prost(uint32, repeated, tag = "10")] + #[prost(uint32, tag = "6")] + pub khncedgfpgl: u32, + #[prost(uint32, tag = "13")] + pub fclolobfpal: u32, + #[prost(uint32, repeated, tag = "9")] pub bijgjecjmhm: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "8")] - pub avatar_id: u32, - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "14")] pub ofikkogklgo: u32, #[prost(uint32, tag = "4")] - pub fclolobfpal: u32, - #[prost(uint32, tag = "3")] - pub khncedgfpgl: u32, + pub avatar_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Abdabiikojc { - #[prost(message, optional, tag = "1")] - pub gndiodgogpi: ::core::option::Option, - #[prost(string, tag = "14")] + #[prost(string, tag = "1")] pub name: ::prost::alloc::string::String, - #[prost(int64, tag = "4")] + #[prost(int64, tag = "10")] pub time: i64, - #[prost(uint32, tag = "13")] + #[prost(message, optional, tag = "8")] + pub gndiodgogpi: ::core::option::Option, + #[prost(uint32, tag = "4")] pub khncedgfpgl: u32, } /// Obf: NEMPMKMLMPA #[derive(proto_derive::CmdID)] -#[cmdid(6035)] +#[cmdid(6094)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RogueTournGetAllBuildRefCsReq {} /// Obf: PIFEBIKOBKK #[derive(proto_derive::CmdID)] -#[cmdid(6046)] +#[cmdid(6057)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RogueTournGetAllBuildRefScRsp { - #[prost(message, repeated, tag = "5")] + #[prost(message, repeated, tag = "3")] pub iiccngokklf: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "5")] pub retcode: u32, } /// Obf: NAFDLMKOPKI #[derive(proto_derive::CmdID)] -#[cmdid(6085)] +#[cmdid(6042)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RogueTournDeleteBuildRefCsReq { - #[prost(uint32, repeated, tag = "5")] + #[prost(uint32, repeated, tag = "12")] pub ndobmajmlnk: ::prost::alloc::vec::Vec, } /// Obf: IMJLMLGPDKN #[derive(proto_derive::CmdID)] -#[cmdid(6083)] +#[cmdid(6021)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RogueTournDeleteBuildRefScRsp { - #[prost(uint32, repeated, tag = "3")] + #[prost(uint32, repeated, tag = "7")] pub ndobmajmlnk: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "8")] pub retcode: u32, } /// Obf: HCKHBFLLEPL #[derive(proto_derive::CmdID)] -#[cmdid(6012)] +#[cmdid(6054)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RogueTournSaveBuildRefCsReq { - #[prost(uint32, tag = "13")] - pub khncedgfpgl: u32, - #[prost(string, tag = "1")] - pub name: ::prost::alloc::string::String, - #[prost(message, optional, tag = "3")] + #[prost(message, optional, tag = "5")] pub gndiodgogpi: ::core::option::Option, + #[prost(uint32, tag = "9")] + pub khncedgfpgl: u32, + #[prost(string, tag = "12")] + pub name: ::prost::alloc::string::String, } /// Obf: BKHCDHKLADH #[derive(proto_derive::CmdID)] -#[cmdid(6020)] +#[cmdid(6083)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RogueTournSaveBuildRefScRsp { - #[prost(uint32, tag = "10")] - pub retcode: u32, - #[prost(string, tag = "2")] - pub name: ::prost::alloc::string::String, - #[prost(uint32, tag = "11")] - pub khncedgfpgl: u32, -} -/// Obf: EGHMOPNDPPB -#[derive(proto_derive::CmdID)] -#[cmdid(6014)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueTournRenameBuildRefCsReq { - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "1")] pub khncedgfpgl: u32, #[prost(string, tag = "10")] pub name: ::prost::alloc::string::String, + #[prost(uint32, tag = "3")] + pub retcode: u32, +} +/// Obf: EGHMOPNDPPB +#[derive(proto_derive::CmdID)] +#[cmdid(6061)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct RogueTournRenameBuildRefCsReq { + #[prost(string, tag = "5")] + pub name: ::prost::alloc::string::String, + #[prost(uint32, tag = "9")] + pub khncedgfpgl: u32, } /// Obf: DJICLHILEPO #[derive(proto_derive::CmdID)] -#[cmdid(6028)] +#[cmdid(6066)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RogueTournRenameBuildRefScRsp { - #[prost(uint32, tag = "9")] - pub retcode: u32, + #[prost(string, tag = "5")] + pub name: ::prost::alloc::string::String, #[prost(uint32, tag = "10")] pub khncedgfpgl: u32, - #[prost(string, tag = "15")] - pub name: ::prost::alloc::string::String, + #[prost(uint32, tag = "15")] + pub retcode: u32, } /// Obf: OCKCOECJEJG #[derive(proto_derive::CmdID)] -#[cmdid(6099)] +#[cmdid(6028)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RogueTournGetPermanentTalentInfoCsReq {} /// Obf: NPEGPLAKNPO #[derive(proto_derive::CmdID)] -#[cmdid(6067)] +#[cmdid(6079)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RogueTournGetPermanentTalentInfoScRsp { - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "13")] pub retcode: u32, - #[prost(message, optional, tag = "13")] + #[prost(message, optional, tag = "14")] pub ehobbjmedee: ::core::option::Option, } /// Obf: OPDIFHCIMBE #[derive(proto_derive::CmdID)] -#[cmdid(6013)] +#[cmdid(6063)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RogueTournEnablePermanentTalentCsReq { - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "2")] pub talent_id: u32, } /// Obf: IHGOFIKKCCE #[derive(proto_derive::CmdID)] -#[cmdid(6058)] +#[cmdid(6064)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RogueTournEnablePermanentTalentScRsp { - #[prost(message, optional, tag = "5")] - pub ehobbjmedee: ::core::option::Option, - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "9")] pub retcode: u32, + #[prost(message, optional, tag = "10")] + pub ehobbjmedee: ::core::option::Option, } /// Obf: PHGKPBPDDAD #[derive(proto_derive::CmdID)] -#[cmdid(6031)] +#[cmdid(6046)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RogueTournResetPermanentTalentCsReq {} /// Obf: GCEPBOAKGCI #[derive(proto_derive::CmdID)] -#[cmdid(6089)] +#[cmdid(6012)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RogueTournResetPermanentTalentScRsp { - #[prost(uint32, tag = "8")] - pub retcode: u32, - #[prost(message, optional, tag = "3")] + #[prost(message, optional, tag = "13")] pub ehobbjmedee: ::core::option::Option, + #[prost(uint32, tag = "14")] + pub retcode: u32, } /// Obf: GFHOMFLLKND #[derive(proto_derive::CmdID)] -#[cmdid(6034)] +#[cmdid(6029)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RogueTournEnterRogueCocoonSceneCsReq { - #[prost(uint32, tag = "7")] - pub pilmkhckmed: u32, - #[prost(uint32, tag = "3")] - pub ibgnlboebcg: u32, - #[prost(bool, tag = "15")] - pub eiddmghlpbp: bool, - #[prost(uint32, tag = "9")] - pub pbalfienefo: u32, - #[prost(message, repeated, tag = "5")] + #[prost(message, repeated, tag = "9")] pub avatar_list: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "11")] + pub pilmkhckmed: u32, + #[prost(uint32, tag = "10")] + pub ibgnlboebcg: u32, + #[prost(bool, tag = "3")] + pub eiddmghlpbp: bool, + #[prost(uint32, tag = "6")] + pub pbalfienefo: u32, } /// Obf: NDMMGDAGIAI #[derive(proto_derive::CmdID)] -#[cmdid(6062)] +#[cmdid(6053)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RogueTournEnterRogueCocoonSceneScRsp { - #[prost(message, optional, tag = "15")] + #[prost(message, optional, tag = "2")] pub lcoclenjjai: ::core::option::Option, - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "13")] pub retcode: u32, } /// Obf: DCPEPJDFJGM #[derive(proto_derive::CmdID)] -#[cmdid(6017)] +#[cmdid(6085)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RogueTournLeaveRogueCocoonSceneCsReq {} /// Obf: MCCGKGLHEJE #[derive(proto_derive::CmdID)] -#[cmdid(6066)] +#[cmdid(6059)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RogueTournLeaveRogueCocoonSceneScRsp { - #[prost(message, optional, tag = "15")] + #[prost(message, optional, tag = "10")] pub lcoclenjjai: ::core::option::Option, - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "13")] pub retcode: u32, } /// Obf: GOHLBLIADDP #[derive(proto_derive::CmdID)] -#[cmdid(6027)] +#[cmdid(6050)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RogueTournReEnterRogueCocoonStageCsReq { - #[prost(bool, tag = "8")] + #[prost(bool, tag = "6")] pub eiddmghlpbp: bool, } /// Obf: MAGDGKDOGGF #[derive(proto_derive::CmdID)] -#[cmdid(6016)] +#[cmdid(6051)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RogueTournReEnterRogueCocoonStageScRsp { - #[prost(message, optional, tag = "1")] + #[prost(message, optional, tag = "11")] pub battle_info: ::core::option::Option, - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "6")] pub retcode: u32, } /// Obf: BFIHHAAKHKA #[derive(proto_derive::CmdID)] -#[cmdid(6055)] +#[cmdid(6093)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RogueTournGetCurRogueCocoonInfoCsReq {} /// Obf: GJKFFJJHCKF #[derive(proto_derive::CmdID)] -#[cmdid(6063)] +#[cmdid(6036)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RogueTournGetCurRogueCocoonInfoScRsp { - #[prost(uint32, tag = "15")] - pub pilmkhckmed: u32, - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "11")] pub ibgnlboebcg: u32, - #[prost(uint32, tag = "8")] - pub retcode: u32, - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "6")] pub pbalfienefo: u32, + #[prost(uint32, tag = "12")] + pub retcode: u32, + #[prost(uint32, tag = "2")] + pub pilmkhckmed: u32, } /// Obf: KDIMMBPEHIP #[derive(proto_derive::CmdID)] -#[cmdid(6050)] +#[cmdid(6072)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RogueTournDifficultyCompNotify { - #[prost(uint32, repeated, tag = "11")] + #[prost(uint32, repeated, tag = "12")] pub gggfigcpklf: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Jniaogiiogb { - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "13")] pub deidchamdba: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Jcccacnfdjg { - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "15")] pub deidchamdba: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Jfihgdpoiid { - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "12")] pub buff_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Ecgochpmcpd { - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "6")] pub event_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Apfjlofinfj { - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "11")] pub formula_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Fidfnncjaje { - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "9")] pub ijppknknlnl: u32, - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "13")] pub dchpogobdko: u32, - #[prost(uint32, tag = "11")] - pub level: u32, - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "10")] pub iboekjbomog: u32, + #[prost(uint32, tag = "14")] + pub level: u32, } /// Obf: IDJEPIBJFDF #[derive(proto_derive::CmdID)] -#[cmdid(6023)] +#[cmdid(6081)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RogueTournHandBookNotify { - #[prost(oneof = "rogue_tourn_hand_book_notify::Buff", tags = "11, 10, 5, 3, 9, 13")] - pub buff: ::core::option::Option, + #[prost(oneof = "rogue_tourn_hand_book_notify::Info", tags = "6, 9, 12, 11, 14, 3")] + pub info: ::core::option::Option, } /// Nested message and enum types in `RogueTournHandBookNotify`. pub mod rogue_tourn_hand_book_notify { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Oneof)] - pub enum Buff { - #[prost(message, tag = "11")] + pub enum Info { + #[prost(message, tag = "6")] Iihopmeeaja(super::Jniaogiiogb), - #[prost(message, tag = "10")] - Gpolbdgoood(super::Jcccacnfdjg), - #[prost(message, tag = "5")] - Lkkfhfdpfke(super::Jfihgdpoiid), - #[prost(message, tag = "3")] - Nfldodiabcl(super::Ecgochpmcpd), #[prost(message, tag = "9")] + Gpolbdgoood(super::Jcccacnfdjg), + #[prost(message, tag = "12")] + Lkkfhfdpfke(super::Jfihgdpoiid), + #[prost(message, tag = "11")] + Nfldodiabcl(super::Ecgochpmcpd), + #[prost(message, tag = "14")] Hpdbjalemmo(super::Apfjlofinfj), - #[prost(message, tag = "13")] + #[prost(message, tag = "3")] Jmidlldkjbi(super::Fidfnncjaje), } } /// Obf: HBBPLJNFJOE #[derive(proto_derive::CmdID)] -#[cmdid(6068)] +#[cmdid(6069)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RogueTournGetSettleInfoCsReq { - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "14")] pub area_id: u32, } /// Obf: MBKBNHIHPHH #[derive(proto_derive::CmdID)] -#[cmdid(6059)] +#[cmdid(6047)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RogueTournGetSettleInfoScRsp { - #[prost(uint32, tag = "3")] - pub retcode: u32, - #[prost(message, optional, tag = "7")] + #[prost(message, optional, tag = "14")] pub njnjebodmnl: ::core::option::Option, + #[prost(uint32, tag = "11")] + pub retcode: u32, } /// Obf: LFEGHEBNLID #[derive(proto_derive::CmdID)] -#[cmdid(6088)] +#[cmdid(6040)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RogueTournConfirmSettleCsReq { - #[prost(string, tag = "9")] + #[prost(string, tag = "14")] pub name: ::prost::alloc::string::String, - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "11")] pub area_id: u32, #[prost(uint32, tag = "15")] pub khncedgfpgl: u32, } /// Obf: KNFNPCHJNEA #[derive(proto_derive::CmdID)] -#[cmdid(6090)] +#[cmdid(6045)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RogueTournConfirmSettleScRsp { - #[prost(uint32, tag = "1")] - pub retcode: u32, - #[prost(message, optional, tag = "15")] - pub lcoclenjjai: ::core::option::Option, - #[prost(message, optional, tag = "3")] + #[prost(message, optional, tag = "5")] pub ohhjkgfofhb: ::core::option::Option, - #[prost(message, optional, tag = "10")] + #[prost(message, optional, tag = "8")] pub gfonfdbfbna: ::core::option::Option, - #[prost(message, optional, tag = "12")] + #[prost(message, optional, tag = "10")] + pub lcoclenjjai: ::core::option::Option, + #[prost(message, optional, tag = "9")] pub jplaapjccbh: ::core::option::Option, + #[prost(uint32, tag = "4")] + pub retcode: u32, } /// Obf: AAHKKCDIDDL #[derive(proto_derive::CmdID)] -#[cmdid(6018)] +#[cmdid(6043)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RogueTournWeekChallengeUpdateScNotify { - #[prost(message, optional, tag = "14")] + #[prost(message, optional, tag = "11")] pub jdbmbikpbjb: ::core::option::Option, } /// Obf: MKGHIJOGPEJ #[derive(proto_derive::CmdID)] -#[cmdid(6045)] +#[cmdid(6067)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RogueTournGetMiscRealTimeDataCsReq {} /// Obf: FGPHEAEKDFK #[derive(proto_derive::CmdID)] -#[cmdid(6044)] +#[cmdid(6034)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RogueTournGetMiscRealTimeDataScRsp { - #[prost(uint32, tag = "1")] - pub retcode: u32, - #[prost(message, optional, tag = "2")] - pub gcglnkfdkkn: ::core::option::Option, - #[prost(message, optional, tag = "6")] - pub cjcojamleel: ::core::option::Option, - #[prost(message, optional, tag = "12")] + #[prost(message, optional, tag = "13")] pub kgciaiafibe: ::core::option::Option, - #[prost(message, optional, tag = "10")] + #[prost(message, optional, tag = "7")] + pub gcglnkfdkkn: ::core::option::Option, + #[prost(message, optional, tag = "2")] + pub cjcojamleel: ::core::option::Option, + #[prost(uint32, tag = "14")] + pub retcode: u32, + #[prost(message, optional, tag = "4")] pub clkhpondddo: ::core::option::Option, - #[prost(message, optional, tag = "8")] + #[prost(message, optional, tag = "15")] pub pfoepfphfnj: ::core::option::Option, } /// Obf: DANDBOKPCOD #[derive(proto_derive::CmdID)] -#[cmdid(6074)] +#[cmdid(6049)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RogueTournGetArchiveRepositoryCsReq {} /// Obf: KHCPHANCILB #[derive(proto_derive::CmdID)] -#[cmdid(6011)] +#[cmdid(6087)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RogueTournGetArchiveRepositoryScRsp { - #[prost(uint32, repeated, tag = "10")] - pub hkdoclopkoh: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "14")] - pub lnejmjbfllh: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "12")] pub retcode: u32, + #[prost(uint32, repeated, tag = "7")] + pub hkdoclopkoh: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "9")] + pub lnejmjbfllh: ::prost::alloc::vec::Vec, } /// Obf: NOGKPEIBCGP #[derive(proto_derive::CmdID)] -#[cmdid(6086)] +#[cmdid(6070)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RogueTournReviveCostUpdateScNotify { - #[prost(message, optional, tag = "3")] + #[prost(message, optional, tag = "13")] pub gficflciejj: ::core::option::Option, } /// Obf: KGNIIBGNPNC #[derive(proto_derive::CmdID)] -#[cmdid(6098)] +#[cmdid(6060)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RogueTournReviveAvatarCsReq { - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "7")] pub interacted_prop_entity_id: u32, - #[prost(uint32, repeated, tag = "14")] + #[prost(uint32, repeated, tag = "13")] pub avatar_id_list: ::prost::alloc::vec::Vec, } /// Obf: LHPBCLDIOCF #[derive(proto_derive::CmdID)] -#[cmdid(6047)] +#[cmdid(6022)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RogueTournReviveAvatarScRsp { #[prost(uint32, tag = "1")] pub retcode: u32, - #[prost(message, optional, tag = "10")] + #[prost(message, optional, tag = "8")] pub gficflciejj: ::core::option::Option, } /// Obf: FHOCCHFLAFE #[derive(proto_derive::CmdID)] -#[cmdid(6037)] +#[cmdid(6041)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RogueTournBattleFailSettleInfoScNotify { + #[prost(message, optional, tag = "8")] + pub njnjebodmnl: ::core::option::Option, #[prost(message, optional, tag = "12")] pub lcoclenjjai: ::core::option::Option, - #[prost(message, optional, tag = "7")] - pub njnjebodmnl: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Gigpoffbieo { - #[prost(message, optional, tag = "5")] + #[prost(message, optional, tag = "9")] pub talent_info: ::core::option::Option, - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "12")] pub cmoghiandfl: u32, } /// Obf: NKNJFCGHEIF #[derive(proto_derive::CmdID)] -#[cmdid(6079)] +#[cmdid(6078)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RogueTournGetSeasonTalentInfoCsReq {} /// Obf: ACNOIBHNLCD #[derive(proto_derive::CmdID)] -#[cmdid(6097)] +#[cmdid(6017)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RogueTournGetSeasonTalentInfoScRsp { - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "1")] pub retcode: u32, - #[prost(message, optional, tag = "8")] + #[prost(message, optional, tag = "15")] pub llaoogchhdk: ::core::option::Option, } /// Obf: LBCCBGPPNND @@ -27616,321 +29028,321 @@ pub struct RogueTournGetSeasonTalentInfoScRsp { #[cmdid(6019)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RogueTournEnableSeasonTalentCsReq { - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "1")] pub talent_id: u32, } /// Obf: CAAKGIBCGJF #[derive(proto_derive::CmdID)] -#[cmdid(6041)] +#[cmdid(6090)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RogueTournEnableSeasonTalentScRsp { - #[prost(message, optional, tag = "9")] + #[prost(message, optional, tag = "12")] pub llaoogchhdk: ::core::option::Option, - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "9")] pub retcode: u32, } /// Obf: PALMBOJAJCE #[derive(proto_derive::CmdID)] -#[cmdid(6053)] +#[cmdid(6016)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RogueTournTitanUpdateTitanBlessProgressScNotify { - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "7")] pub ldfgifdfpcf: u32, } /// Obf: AOMFJFLCDON #[derive(proto_derive::CmdID)] -#[cmdid(6914)] +#[cmdid(6918)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetRollShopInfoCsReq { - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "6")] pub roll_shop_id: u32, } /// Obf: PGAFADIAONA #[derive(proto_derive::CmdID)] -#[cmdid(6913)] +#[cmdid(6909)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetRollShopInfoScRsp { - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "14")] pub gacha_random: u32, - #[prost(uint32, repeated, tag = "13")] + #[prost(uint32, repeated, tag = "2")] pub bchaohddila: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "5")] - pub retcode: u32, - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "9")] pub roll_shop_id: u32, + #[prost(uint32, tag = "13")] + pub retcode: u32, } /// Obf: DFAGJNNKKDM #[derive(proto_derive::CmdID)] -#[cmdid(6908)] +#[cmdid(6910)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct DoGachaInRollShopCsReq { - #[prost(uint32, tag = "3")] - pub ifngnhhcngl: u32, - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "12")] pub gacha_random: u32, - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "5")] pub roll_shop_id: u32, + #[prost(uint32, tag = "8")] + pub ifngnhhcngl: u32, } /// Obf: AHBFBJKMOCO #[derive(proto_derive::CmdID)] -#[cmdid(6910)] +#[cmdid(6916)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct DoGachaInRollShopScRsp { - #[prost(uint32, tag = "4")] - pub roll_shop_id: u32, - #[prost(uint32, tag = "11")] - pub retcode: u32, - #[prost(uint32, tag = "13")] - pub penilhglhhm: u32, #[prost(uint32, tag = "3")] - pub ordering_index: u32, - #[prost(message, optional, tag = "9")] + pub retcode: u32, + #[prost(uint32, tag = "2")] + pub roll_shop_id: u32, + #[prost(uint32, tag = "8")] + pub penilhglhhm: u32, + #[prost(message, optional, tag = "5")] pub reward: ::core::option::Option, + #[prost(uint32, tag = "11")] + pub ordering_index: u32, } /// Obf: KJOEHGLJEPA #[derive(proto_derive::CmdID)] -#[cmdid(6904)] +#[cmdid(6907)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TakeRollShopRewardCsReq { - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "3")] pub roll_shop_id: u32, } /// Obf: TakeRollShopRewardScRsp #[derive(proto_derive::CmdID)] -#[cmdid(6902)] +#[cmdid(6911)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TakeRollShopRewardScRsp { - #[prost(uint32, tag = "9")] - pub roll_shop_id: u32, - #[prost(message, optional, tag = "4")] - pub reward: ::core::option::Option, - #[prost(uint32, tag = "12")] - pub retcode: u32, - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "2")] pub group_type: u32, + #[prost(uint32, tag = "13")] + pub retcode: u32, + #[prost(uint32, tag = "6")] + pub roll_shop_id: u32, + #[prost(message, optional, tag = "5")] + pub reward: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SceneActorInfo { - #[prost(uint32, tag = "11")] - pub uid: u32, - #[prost(uint32, tag = "15")] - pub map_layer: u32, - #[prost(uint32, tag = "12")] - pub base_avatar_id: u32, - #[prost(enumeration = "AvatarType", tag = "9")] + #[prost(enumeration = "AvatarType", tag = "12")] pub avatar_type: i32, + #[prost(uint32, tag = "2")] + pub map_layer: u32, + #[prost(uint32, tag = "8")] + pub base_avatar_id: u32, + #[prost(uint32, tag = "7")] + pub uid: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Eehijpmfiin { - #[prost(uint32, tag = "13")] - pub ehieoodecmi: u32, - #[prost(uint32, tag = "1")] - pub elite_group: u32, - #[prost(uint32, tag = "9")] - pub hard_level_group: u32, #[prost(uint32, tag = "3")] + pub ehieoodecmi: u32, + #[prost(uint32, tag = "14")] + pub hard_level_group: u32, + #[prost(uint32, tag = "15")] pub dneampllfme: u32, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "5")] pub level: u32, + #[prost(uint32, tag = "4")] + pub elite_group: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Edbjjknjpfm { - #[prost(oneof = "edbjjknjpfm::Buff", tags = "3")] - pub buff: ::core::option::Option, + #[prost(oneof = "edbjjknjpfm::Info", tags = "12")] + pub info: ::core::option::Option, } /// Nested message and enum types in `EDBJJKNJPFM`. pub mod edbjjknjpfm { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Oneof)] - pub enum Buff { - #[prost(message, tag = "3")] + pub enum Info { + #[prost(message, tag = "12")] RogueInfo(super::Eehijpmfiin), } } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SceneNpcMonsterInfo { - #[prost(uint32, tag = "3")] - pub monster_id: u32, - #[prost(uint32, tag = "12")] - pub event_id: u32, - #[prost(bool, tag = "13")] + #[prost(bool, tag = "2")] + pub idpjidnlehh: bool, + #[prost(uint32, tag = "13")] + pub world_level: u32, + #[prost(message, optional, tag = "14")] + pub extra_info: ::core::option::Option, + #[prost(bool, tag = "8")] pub mpfedfbkkdf: bool, #[prost(uint32, tag = "7")] - pub world_level: u32, - #[prost(message, optional, tag = "6")] - pub extra_info: ::core::option::Option, - #[prost(bool, tag = "15")] - pub idpjidnlehh: bool, + pub monster_id: u32, + #[prost(uint32, tag = "1")] + pub event_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct NpcDialogueEventParam { - #[prost(uint32, tag = "9")] - pub rogue_dialogue_event_id: u32, - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "11")] pub arg_id: u32, + #[prost(uint32, tag = "4")] + pub rogue_dialogue_event_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct NpcRogueGameInfo { - #[prost(uint32, tag = "5")] - pub event_unique_id: u32, + #[prost(bool, tag = "11")] + pub eccdglbkeje: bool, + #[prost(map = "uint32, uint32", tag = "3")] + pub kjcbneindhl: ::std::collections::HashMap, + #[prost(bool, tag = "14")] + pub jenfhombkke: bool, + #[prost(uint32, tag = "15")] + pub onlhfcoglal: u32, #[prost(uint32, tag = "2")] pub cdjecokfiof: u32, - #[prost(bool, tag = "11")] + #[prost(uint32, tag = "13")] + pub event_unique_id: u32, + #[prost(bool, tag = "4")] pub lomilomcaom: bool, - #[prost(map = "uint32, uint32", tag = "4")] - pub kjcbneindhl: ::std::collections::HashMap, - #[prost(uint32, tag = "1")] - pub onlhfcoglal: u32, - #[prost(bool, tag = "7")] - pub eccdglbkeje: bool, - #[prost(bool, tag = "6")] - pub jenfhombkke: bool, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Kkfkkppldai { - #[prost(bool, tag = "13")] - pub iagodfdjaik: bool, - #[prost(uint32, tag = "7")] - pub amlkpohdeln: u32, - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "6")] pub visitor_id: u32, + #[prost(bool, tag = "14")] + pub iagodfdjaik: bool, + #[prost(uint32, tag = "13")] + pub amlkpohdeln: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Clfacbcgifl { - #[prost(uint32, tag = "1")] - pub klfcnoaggpc: u32, - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "14")] pub incagnldjmn: u32, + #[prost(uint32, tag = "12")] + pub klfcnoaggpc: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct NpcExtraInfo { - #[prost(oneof = "npc_extra_info::Buff", tags = "11, 7, 5")] - pub buff: ::core::option::Option, + #[prost(oneof = "npc_extra_info::Info", tags = "14, 10, 4")] + pub info: ::core::option::Option, } /// Nested message and enum types in `NpcExtraInfo`. pub mod npc_extra_info { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum Buff { - #[prost(message, tag = "11")] + pub enum Info { + #[prost(message, tag = "14")] RogueInfo(super::NpcRogueGameInfo), - #[prost(message, tag = "7")] + #[prost(message, tag = "10")] Jkjopmefcbo(super::Kkfkkppldai), - #[prost(message, tag = "5")] + #[prost(message, tag = "4")] Pnbjjbjnmgl(super::Clfacbcgifl), } } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SceneNpcInfo { - #[prost(uint32, tag = "12")] - pub npc_id: u32, #[prost(message, optional, tag = "6")] pub extra_info: ::core::option::Option, + #[prost(uint32, tag = "12")] + pub npc_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct PropRogueInfo { + #[prost(uint32, tag = "3")] + pub bbnfiifmgak: u32, + #[prost(uint32, tag = "4")] + pub ccdepapjnko: u32, #[prost(uint32, tag = "9")] pub room_id: u32, - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "1")] pub site_id: u32, - #[prost(uint32, tag = "15")] - pub bbnfiifmgak: u32, - #[prost(uint32, tag = "6")] - pub ccdepapjnko: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct PropAeonInfo { - #[prost(uint32, tag = "2")] - pub dialogue_group_id: u32, - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "8")] pub add_exp: u32, - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "12")] + pub dialogue_group_id: u32, + #[prost(uint32, tag = "2")] pub aeon_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Aoiheklndid { - #[prost(bool, tag = "3")] - pub algafomniia: bool, - #[prost(bool, tag = "13")] + #[prost(bool, tag = "11")] pub akcghbfgbcc: bool, + #[prost(bool, tag = "4")] + pub algafomniia: bool, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Hdocjdhlapd { - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "2")] pub nbocipljmhi: u32, - #[prost(bool, tag = "2")] - pub pjdnhbhddha: bool, - #[prost(uint32, tag = "13")] - pub eipnnejnnkj: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Jeghkicdaoo { #[prost(bool, tag = "8")] pub pjdnhbhddha: bool, - #[prost(uint32, tag = "10")] - pub nbocipljmhi: u32, #[prost(uint32, tag = "7")] pub eipnnejnnkj: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Akmciglbjad { +pub struct Jeghkicdaoo { + #[prost(uint32, tag = "9")] + pub eipnnejnnkj: u32, #[prost(bool, tag = "6")] + pub pjdnhbhddha: bool, + #[prost(uint32, tag = "4")] + pub nbocipljmhi: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Akmciglbjad { + #[prost(bool, tag = "10")] pub gldjnhiggje: bool, - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "9")] pub hobjminnbop: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Eekihhefaic { - #[prost(message, repeated, tag = "5")] - pub gnoncmjmcbf: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "13")] pub pmjaippjfkc: u32, + #[prost(message, repeated, tag = "4")] + pub gnoncmjmcbf: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Eigoiecdmna { - #[prost(message, optional, tag = "12")] + #[prost(message, optional, tag = "10")] pub ffmifpfibdd: ::core::option::Option, - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "9")] pub mgdmhlgjhoc: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Ojckhbbbfef { - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "7")] pub kigaehdgklm: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Lnojkicccme { - #[prost(bool, tag = "9")] + #[prost(bool, tag = "10")] pub mbankgmdfmj: bool, - #[prost(bytes = "vec", tag = "6")] + #[prost(bytes = "vec", tag = "1")] pub ddcjbfloame: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct PropExtraInfo { - #[prost(message, optional, tag = "9")] + #[prost(message, optional, tag = "2")] pub timeline_info: ::core::option::Option, - #[prost(oneof = "prop_extra_info::InfoCase", tags = "5, 11, 6, 7, 3, 10, 14, 12")] + #[prost(oneof = "prop_extra_info::InfoCase", tags = "3, 15, 14, 9, 6, 1, 11, 8")] pub info_case: ::core::option::Option, } /// Nested message and enum types in `PropExtraInfo`. @@ -27938,68 +29350,68 @@ pub mod prop_extra_info { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] pub enum InfoCase { - #[prost(message, tag = "5")] - RogueInfo(super::PropRogueInfo), - #[prost(message, tag = "11")] - AeonInfo(super::PropAeonInfo), - #[prost(message, tag = "6")] - ChessRogueInfo(super::Aoiheklndid), - #[prost(message, tag = "7")] - RogueTournDoorInfo(super::Hdocjdhlapd), #[prost(message, tag = "3")] - RogueTournWorkbenchInfo(super::Eekihhefaic), - #[prost(message, tag = "10")] - RogueGambleMachineInfo(super::Eigoiecdmna), + RogueInfo(super::PropRogueInfo), + #[prost(message, tag = "15")] + AeonInfo(super::PropAeonInfo), #[prost(message, tag = "14")] + ChessRogueInfo(super::Aoiheklndid), + #[prost(message, tag = "9")] + RogueTournDoorInfo(super::Hdocjdhlapd), + #[prost(message, tag = "6")] + RogueTournWorkbenchInfo(super::Eekihhefaic), + #[prost(message, tag = "1")] + RogueGambleMachineInfo(super::Eigoiecdmna), + #[prost(message, tag = "11")] RogueCurseChestInfo(super::Ojckhbbbfef), - #[prost(message, tag = "12")] + #[prost(message, tag = "8")] RogueMagicDoorInfo(super::Jeghkicdaoo), } } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ScenePropInfo { - #[prost(uint32, tag = "1")] - pub life_time_ms: u32, - #[prost(uint32, tag = "14")] - pub prop_state: u32, - #[prost(message, optional, tag = "13")] - pub extra_info: ::core::option::Option, - #[prost(uint64, tag = "6")] - pub create_time_ms: u64, - #[prost(string, repeated, tag = "4")] + #[prost(string, repeated, tag = "2")] pub trigger_name_list: ::prost::alloc::vec::Vec<::prost::alloc::string::String>, - #[prost(uint32, tag = "3")] + #[prost(uint64, tag = "14")] + pub create_time_ms: u64, + #[prost(message, optional, tag = "4")] + pub extra_info: ::core::option::Option, + #[prost(uint32, tag = "9")] pub prop_id: u32, + #[prost(uint32, tag = "5")] + pub prop_state: u32, + #[prost(uint32, tag = "3")] + pub life_time_ms: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SceneSummonUnitInfo { - #[prost(uint64, tag = "13")] + #[prost(string, repeated, tag = "6")] + pub trigger_name_list: ::prost::alloc::vec::Vec<::prost::alloc::string::String>, + #[prost(int32, tag = "12")] + pub life_time_ms: i32, + #[prost(uint32, tag = "9")] + pub attach_entity_id: u32, + #[prost(uint64, tag = "5")] pub create_time_ms: u64, #[prost(uint32, tag = "15")] pub summon_unit_id: u32, - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "13")] pub caster_entity_id: u32, - #[prost(int32, tag = "7")] - pub life_time_ms: i32, - #[prost(uint32, tag = "5")] - pub attach_entity_id: u32, - #[prost(string, repeated, tag = "4")] - pub trigger_name_list: ::prost::alloc::vec::Vec<::prost::alloc::string::String>, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SceneEntityInfo { - #[prost(message, optional, tag = "9")] - pub motion: ::core::option::Option, - #[prost(uint32, tag = "15")] - pub group_id: u32, - #[prost(uint32, tag = "8")] - pub inst_id: u32, - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "9")] pub entity_id: u32, - #[prost(oneof = "scene_entity_info::Entity", tags = "6, 4, 12, 5, 7")] + #[prost(uint32, tag = "14")] + pub group_id: u32, + #[prost(message, optional, tag = "11")] + pub motion: ::core::option::Option, + #[prost(uint32, tag = "4")] + pub inst_id: u32, + #[prost(oneof = "scene_entity_info::Entity", tags = "15, 10, 6, 2, 3")] pub entity: ::core::option::Option, } /// Nested message and enum types in `SceneEntityInfo`. @@ -28007,44 +29419,44 @@ pub mod scene_entity_info { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] pub enum Entity { - #[prost(message, tag = "6")] + #[prost(message, tag = "15")] Actor(super::SceneActorInfo), - #[prost(message, tag = "4")] + #[prost(message, tag = "10")] NpcMonster(super::SceneNpcMonsterInfo), - #[prost(message, tag = "12")] + #[prost(message, tag = "6")] Npc(super::SceneNpcInfo), - #[prost(message, tag = "5")] + #[prost(message, tag = "2")] Prop(super::ScenePropInfo), - #[prost(message, tag = "7")] + #[prost(message, tag = "3")] SummonUnit(super::SceneSummonUnitInfo), } } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct BuffInfo { - #[prost(uint32, tag = "5")] - pub level: u32, + #[prost(map = "string, float", tag = "3")] + pub dynamic_values: ::std::collections::HashMap<::prost::alloc::string::String, f32>, #[prost(uint32, tag = "11")] - pub buff_id: u32, - #[prost(uint32, tag = "6")] pub count: u32, + #[prost(uint64, tag = "1")] + pub add_time_ms: u64, + #[prost(uint32, tag = "6")] + pub level: u32, #[prost(uint32, tag = "8")] pub target_entity_id: u32, - #[prost(map = "string, float", tag = "1")] - pub dynamic_values: ::std::collections::HashMap<::prost::alloc::string::String, f32>, - #[prost(uint32, tag = "3")] - pub base_avatar_id: u32, - #[prost(float, tag = "9")] + #[prost(float, tag = "15")] pub life_time: f32, - #[prost(uint64, tag = "2")] - pub add_time_ms: u64, + #[prost(uint32, tag = "10")] + pub base_avatar_id: u32, + #[prost(uint32, tag = "9")] + pub buff_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct EntityBuffInfo { - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "2")] pub entity_id: u32, - #[prost(message, repeated, tag = "15")] + #[prost(message, repeated, tag = "3")] pub buff_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] @@ -28052,456 +29464,456 @@ pub struct EntityBuffInfo { pub struct Nomfjhmoeah { #[prost(uint32, tag = "3")] pub value: u32, - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "12")] pub ohdeoighiem: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct CustomSaveData { - #[prost(uint32, tag = "3")] - pub group_id: u32, - #[prost(string, tag = "9")] + #[prost(string, tag = "8")] pub save_data: ::prost::alloc::string::String, + #[prost(uint32, tag = "5")] + pub group_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Kegmihdfpmm { - #[prost(uint32, tag = "14")] - pub blogjdckahm: u32, - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "15")] pub cppdjfkiihk: u32, + #[prost(uint32, tag = "1")] + pub blogjdckahm: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SceneEntityGroupInfo { - #[prost(uint32, tag = "6")] - pub state: u32, - #[prost(uint32, tag = "9")] - pub group_id: u32, - #[prost(message, repeated, tag = "12")] + #[prost(message, repeated, tag = "7")] pub entity_list: ::prost::alloc::vec::Vec, - #[prost(map = "string, int32", tag = "3")] + #[prost(map = "string, int32", tag = "1")] pub hejamoojbcj: ::std::collections::HashMap<::prost::alloc::string::String, i32>, + #[prost(uint32, tag = "13")] + pub group_id: u32, + #[prost(uint32, tag = "4")] + pub state: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SceneGroupState { - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "2")] + pub group_id: u32, + #[prost(uint32, tag = "9")] pub state: u32, #[prost(bool, tag = "4")] pub is_default: bool, - #[prost(uint32, tag = "3")] - pub group_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MissionStatusBySceneInfo { - #[prost(uint32, repeated, tag = "8")] - pub disabled_main_mission_id_list: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "11")] - pub unfinished_main_mission_id_list: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "10")] + pub bigehkdpgpn: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "2")] + pub icbikgmghik: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "4")] + pub finished_mission_id: ::prost::alloc::vec::Vec, #[prost(uint32, repeated, tag = "6")] - pub finished_mission_id_list: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "14")] - pub bigehkdpgpn: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "13")] - pub sub_mission_status_list: ::prost::alloc::vec::Vec, + pub ndnonhfimfi: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "11")] + pub dgkjillcfla: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SceneInfo { - #[prost(map = "string, int32", tag = "1560")] + #[prost(message, repeated, tag = "1142")] + pub group_state_list: ::prost::alloc::vec::Vec, + #[prost(message, optional, tag = "1116")] + pub scene_mission_info: ::core::option::Option, + #[prost(uint32, tag = "1175")] + pub content_id: u32, + #[prost(uint32, tag = "15")] + pub leader_entity_id: u32, + #[prost(uint32, tag = "1302")] + pub gfhglffhfbd: u32, + #[prost(uint32, tag = "8")] + pub plane_id: u32, + #[prost(uint32, repeated, tag = "1906")] + pub djbibijmebh: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "13")] + pub floor_id: u32, + #[prost(message, repeated, tag = "14")] + pub scene_buff_info_list: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "12")] + pub custom_data_list: ::prost::alloc::vec::Vec, + #[prost(map = "uint32, message", tag = "1")] + pub mpehibkeobe: ::std::collections::HashMap, + #[prost(uint32, tag = "3")] + pub game_mode_type: u32, + #[prost(message, repeated, tag = "555")] + pub entity_group_list: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "11")] + pub entry_id: u32, + #[prost(uint32, tag = "1784")] + pub game_story_line_id: u32, + #[prost(map = "string, int32", tag = "673")] pub floor_saved_data: ::std::collections::HashMap< ::prost::alloc::string::String, i32, >, - #[prost(message, repeated, tag = "11")] - pub entity_buff_info_list: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "9")] - pub custom_data_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "7")] - pub world_id: u32, - #[prost(uint32, tag = "8")] - pub entry_id: u32, - #[prost(uint32, tag = "2")] - pub game_mode_type: u32, - #[prost(message, repeated, tag = "5")] - pub icclnhkdbbm: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "1168")] - pub content_id: u32, - #[prost(uint32, tag = "6")] - pub floor_id: u32, - #[prost(uint32, tag = "1925")] - pub emdhekkocmd: u32, - #[prost(uint32, tag = "3")] - pub client_pos_version: u32, - #[prost(uint32, repeated, tag = "624")] - pub chest_id_list: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "15")] - pub entity_list: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "351")] - pub entity_group_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "4")] - pub leader_entity_id: u32, - #[prost(uint32, tag = "1384")] - pub gfhglffhfbd: u32, - #[prost(message, optional, tag = "976")] - pub scene_mission_info: ::core::option::Option, - #[prost(map = "uint32, message", tag = "10")] - pub mpehibkeobe: ::std::collections::HashMap, - #[prost(uint32, tag = "14")] - pub plane_id: u32, - #[prost(uint32, repeated, tag = "13")] + #[prost(uint32, repeated, tag = "10")] pub lighten_section_list: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "524")] - pub group_state_list: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "5")] + pub entity_buff_info_list: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "4")] + pub world_id: u32, + #[prost(message, repeated, tag = "9")] + pub entity_list: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "7")] + pub client_pos_version: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct EntityMotion { - #[prost(uint32, tag = "12")] - pub entity_id: u32, - #[prost(uint32, tag = "10")] - pub map_layer: u32, - #[prost(message, optional, tag = "13")] - pub motion: ::core::option::Option, - #[prost(bool, tag = "1")] + #[prost(bool, tag = "7")] pub nfopikdkpgg: bool, + #[prost(message, optional, tag = "11")] + pub motion: ::core::option::Option, + #[prost(uint32, tag = "9")] + pub map_layer: u32, + #[prost(uint32, tag = "15")] + pub entity_id: u32, } /// Obf: CIPDBAAAPCE #[derive(proto_derive::CmdID)] -#[cmdid(1495)] +#[cmdid(1420)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SceneEntityMoveCsReq { - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "11")] pub entry_id: u32, - #[prost(message, repeated, tag = "15")] - pub entity_motion_list: ::prost::alloc::vec::Vec, - #[prost(uint64, tag = "6")] + #[prost(uint64, tag = "10")] pub pemlejjbaje: u64, + #[prost(message, repeated, tag = "2")] + pub entity_motion_list: ::prost::alloc::vec::Vec, } /// Obf: LNIOMOHNMCA #[derive(proto_derive::CmdID)] -#[cmdid(1432)] +#[cmdid(1491)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SceneEntityMoveScRsp { - #[prost(uint32, tag = "4")] - pub retcode: u32, - #[prost(message, repeated, tag = "15")] - pub entity_motion_list: ::prost::alloc::vec::Vec, #[prost(message, optional, tag = "2")] pub download_data: ::core::option::Option, + #[prost(uint32, tag = "4")] + pub retcode: u32, + #[prost(message, repeated, tag = "1")] + pub entity_motion_list: ::prost::alloc::vec::Vec, } /// Obf: CGGEMOEPGHF #[derive(proto_derive::CmdID)] -#[cmdid(1472)] +#[cmdid(1480)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SceneEntityMoveScNotify { - #[prost(message, optional, tag = "5")] - pub motion: ::core::option::Option, - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "10")] pub client_pos_version: u32, - #[prost(uint32, tag = "6")] - pub entry_id: u32, - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "1")] pub entity_id: u32, + #[prost(uint32, tag = "4")] + pub entry_id: u32, + #[prost(message, optional, tag = "14")] + pub motion: ::core::option::Option, } /// Obf: BGJHILOCEOG #[derive(proto_derive::CmdID)] -#[cmdid(1485)] +#[cmdid(1402)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SceneUpdatePositionVersionNotify { - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "10")] pub djjbkeiaobd: u32, } /// Obf: HLEFIDCMBJA #[derive(proto_derive::CmdID)] -#[cmdid(1431)] +#[cmdid(1467)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct InteractPropCsReq { - #[prost(uint32, tag = "13")] - pub prop_entity_id: u32, - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "14")] pub interact_id: u32, + #[prost(uint32, tag = "5")] + pub prop_entity_id: u32, } /// Obf: GEPAMEPINIH #[derive(proto_derive::CmdID)] -#[cmdid(1440)] +#[cmdid(1439)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct InteractPropScRsp { - #[prost(uint32, tag = "2")] - pub prop_state: u32, - #[prost(uint32, tag = "12")] - pub prop_entity_id: u32, - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "9")] pub retcode: u32, + #[prost(uint32, tag = "6")] + pub prop_entity_id: u32, + #[prost(uint32, tag = "5")] + pub prop_state: u32, } /// Obf: DAEHNKJJIDI #[derive(proto_derive::CmdID)] -#[cmdid(1422)] +#[cmdid(1454)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ChangePropTimelineInfoCsReq { - #[prost(uint64, tag = "9")] - pub miilnlhddjm: u64, - #[prost(message, optional, tag = "11")] + #[prost(message, optional, tag = "5")] pub djnfcmfddoa: ::core::option::Option, - #[prost(bool, tag = "2")] + #[prost(bool, tag = "1")] pub dlbedaonnkh: bool, - #[prost(uint32, tag = "8")] + #[prost(uint64, tag = "7")] + pub miilnlhddjm: u64, + #[prost(uint32, tag = "12")] pub prop_entity_id: u32, } /// Obf: LAHIOIBKPGO #[derive(proto_derive::CmdID)] -#[cmdid(1456)] +#[cmdid(1477)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ChangePropTimelineInfoScRsp { - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "2")] pub prop_entity_id: u32, - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "10")] pub retcode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Dkijloakkbo { - #[prost(enumeration = "MonsterBattleType", tag = "9")] - pub endjgmlkpbp: i32, - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "6")] pub gbllcemjjfi: u32, + #[prost(enumeration = "MonsterBattleType", tag = "11")] + pub endjgmlkpbp: i32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Jnhlelnabbd { - #[prost(string, tag = "3")] + #[prost(string, tag = "10")] pub key: ::prost::alloc::string::String, - #[prost(float, tag = "10")] + #[prost(float, tag = "7")] pub value: f32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct AssistMonsterWave { - #[prost(uint32, repeated, tag = "11")] + #[prost(uint32, repeated, tag = "3")] pub entity_id_list: ::prost::alloc::vec::Vec, } /// Obf: MJHLIMKLNOD #[derive(proto_derive::CmdID)] -#[cmdid(1476)] +#[cmdid(1427)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SceneCastSkillCsReq { - #[prost(uint32, tag = "11")] - pub caster_id: u32, - #[prost(uint32, tag = "14")] - pub attacked_group_id: u32, - #[prost(uint32, repeated, tag = "4")] - pub assist_monster_entity_id_list: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "8")] - pub hit_target_entity_id_list: ::prost::alloc::vec::Vec, - #[prost(enumeration = "SceneCastSkillType", repeated, tag = "5")] - pub casted_skill_type_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "1")] - pub hchdhljcije: u32, - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "3")] pub skill_index: u32, - #[prost(message, optional, tag = "13")] + #[prost(message, optional, tag = "4")] pub target_motion: ::core::option::Option, - #[prost(message, repeated, tag = "6")] - pub assist_monster_wave_list: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "7")] - pub dynamic_values: ::prost::alloc::vec::Vec, - #[prost(string, tag = "3")] + #[prost(uint32, tag = "9")] + pub caster_id: u32, + #[prost(uint32, repeated, tag = "1")] + pub assist_monster_entity_id_list: ::prost::alloc::vec::Vec, + #[prost(string, tag = "2")] pub kegdfimpnkh: ::prost::alloc::string::String, + #[prost(enumeration = "SceneCastSkillType", repeated, tag = "15")] + pub casted_skill_type_list: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "13")] + pub assist_monster_wave_list: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "11")] + pub dynamic_values: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "6")] + pub attacked_group_id: u32, + #[prost(uint32, tag = "12")] + pub hchdhljcije: u32, + #[prost(uint32, repeated, tag = "14")] + pub hit_target_entity_id_list: ::prost::alloc::vec::Vec, } /// Obf: KPNOOJMCCCI #[derive(proto_derive::CmdID)] -#[cmdid(1448)] +#[cmdid(1421)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SceneCastSkillScRsp { - #[prost(message, repeated, tag = "9")] + #[prost(uint32, tag = "14")] + pub attacked_group_id: u32, + #[prost(message, repeated, tag = "8")] pub kgnglgmiebg: ::prost::alloc::vec::Vec, #[prost(uint32, tag = "3")] pub retcode: u32, - #[prost(uint32, tag = "8")] - pub attacked_group_id: u32, - #[prost(message, optional, tag = "11")] + #[prost(message, optional, tag = "5")] pub battle_info: ::core::option::Option, } /// Obf: HIKCPJGJEHH #[derive(proto_derive::CmdID)] -#[cmdid(1446)] +#[cmdid(1474)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SceneCastSkillCostMpCsReq { - #[prost(uint32, tag = "8")] - pub skill_index: u32, - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "7")] pub caster_id: u32, - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "6")] pub attacked_group_id: u32, + #[prost(uint32, tag = "4")] + pub skill_index: u32, } /// Obf: FBBHCGOLMLF #[derive(proto_derive::CmdID)] -#[cmdid(1483)] +#[cmdid(1473)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SceneCastSkillCostMpScRsp { - #[prost(uint32, tag = "14")] - pub retcode: u32, - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "11")] pub attacked_group_id: u32, + #[prost(uint32, tag = "2")] + pub retcode: u32, } /// Obf: CFBDAOAGFII #[derive(proto_derive::CmdID)] -#[cmdid(1460)] +#[cmdid(1498)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SceneCastSkillMpUpdateScNotify { - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "11")] pub mp: u32, #[prost(uint32, tag = "10")] pub attacked_group_id: u32, } /// Obf: BJCADMHJOFB #[derive(proto_derive::CmdID)] -#[cmdid(1458)] +#[cmdid(1487)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SceneEnterStageCsReq { - #[prost(enumeration = "Lipekjfjmnm", tag = "4")] + #[prost(enumeration = "Lipekjfjmnm", tag = "15")] pub nikhbkchhjg: i32, - #[prost(bool, tag = "13")] - pub pmjahilblfl: bool, - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "11")] pub event_id: u32, + #[prost(bool, tag = "7")] + pub pmjahilblfl: bool, } /// Obf: OHOOIMFNPIO #[derive(proto_derive::CmdID)] -#[cmdid(1421)] +#[cmdid(1409)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SceneEnterStageScRsp { - #[prost(message, optional, tag = "2")] - pub battle_info: ::core::option::Option, - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "5")] pub retcode: u32, + #[prost(message, optional, tag = "7")] + pub battle_info: ::core::option::Option, } /// Obf: ABPCFHDBFGO #[derive(proto_derive::CmdID)] -#[cmdid(1429)] +#[cmdid(1406)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SceneReviveAfterRebattleCsReq { - #[prost(enumeration = "Lipekjfjmnm", tag = "12")] + #[prost(enumeration = "Lipekjfjmnm", tag = "10")] pub nikhbkchhjg: i32, } /// Obf: JEBJCABFJNA #[derive(proto_derive::CmdID)] -#[cmdid(1463)] +#[cmdid(1431)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SceneReviveAfterRebattleScRsp { - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "9")] pub retcode: u32, } /// Obf: GBAONLFLKMJ #[derive(proto_derive::CmdID)] -#[cmdid(1471)] +#[cmdid(1470)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetCurSceneInfoCsReq {} /// Obf: DDNODHNOKHH #[derive(proto_derive::CmdID)] -#[cmdid(1452)] +#[cmdid(1459)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetCurSceneInfoScRsp { - #[prost(uint32, tag = "11")] - pub retcode: u32, #[prost(message, optional, tag = "9")] pub scene: ::core::option::Option, + #[prost(uint32, tag = "7")] + pub retcode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct EntityBuffChangeInfo { - #[prost(uint32, tag = "15")] - pub attacked_group_id: u32, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "2")] pub entity_id: u32, - #[prost(enumeration = "EntityBuffChangeType", tag = "7")] + #[prost(enumeration = "EntityBuffChangeType", tag = "1")] pub reason: i32, - #[prost(oneof = "entity_buff_change_info::Buff", tags = "6, 2")] - pub buff: ::core::option::Option, + #[prost(uint32, tag = "12")] + pub attacked_group_id: u32, + #[prost(oneof = "entity_buff_change_info::Info", tags = "11, 4")] + pub info: ::core::option::Option, } /// Nested message and enum types in `EntityBuffChangeInfo`. pub mod entity_buff_change_info { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum Buff { - #[prost(message, tag = "6")] + pub enum Info { + #[prost(message, tag = "11")] AddBuffInfo(super::BuffInfo), - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "4")] RemoveBuffId(u32), } } /// Obf: IMNJNKPICAF #[derive(proto_derive::CmdID)] -#[cmdid(1416)] +#[cmdid(1405)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SyncEntityBuffChangeListScNotify { - #[prost(message, repeated, tag = "3")] + #[prost(message, repeated, tag = "11")] pub entity_buff_info_list: ::prost::alloc::vec::Vec, } /// Obf: BIPGPKHCJNG #[derive(proto_derive::CmdID)] -#[cmdid(1439)] +#[cmdid(1438)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SpringRefreshCsReq { - #[prost(uint32, tag = "13")] - pub floor_id: u32, - #[prost(uint32, tag = "9")] - pub plane_id: u32, - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "14")] pub prop_entity_id: u32, + #[prost(uint32, tag = "8")] + pub plane_id: u32, + #[prost(uint32, tag = "1")] + pub floor_id: u32, } /// Obf: KBEOJIAJBHO #[derive(proto_derive::CmdID)] -#[cmdid(1443)] +#[cmdid(1452)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SpringRefreshScRsp { - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "5")] pub retcode: u32, } /// Obf: GPOPGOFKHFJ #[derive(proto_derive::CmdID)] -#[cmdid(1433)] +#[cmdid(1468)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct LastSpringRefreshTimeNotify { - #[prost(int64, tag = "3")] + #[prost(int64, tag = "11")] pub jbicindpigm: i64, } /// Obf: NKFBPFNHCDL #[derive(proto_derive::CmdID)] -#[cmdid(1442)] +#[cmdid(1494)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ReturnLastTownCsReq {} /// Obf: EBKDCIDEFEG #[derive(proto_derive::CmdID)] -#[cmdid(1477)] +#[cmdid(1436)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ReturnLastTownScRsp { - #[prost(message, optional, tag = "15")] + #[prost(message, optional, tag = "8")] pub scene: ::core::option::Option, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "15")] pub retcode: u32, } /// Obf: FHFLJPFCOOJ #[derive(proto_derive::CmdID)] -#[cmdid(1411)] +#[cmdid(1444)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct EnterSectionCsReq { - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "10")] pub lbmncagokif: u32, } /// Obf: LEJKNHNDIBO #[derive(proto_derive::CmdID)] -#[cmdid(1493)] +#[cmdid(1449)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct EnterSectionScRsp { - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "6")] pub retcode: u32, } /// Obf: BBNOINDEFKD #[derive(proto_derive::CmdID)] -#[cmdid(1484)] +#[cmdid(1478)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SetCurInteractEntityCsReq { #[prost(uint32, tag = "14")] @@ -28509,432 +29921,432 @@ pub struct SetCurInteractEntityCsReq { } /// Obf: BGMHIBGBJMJ #[derive(proto_derive::CmdID)] -#[cmdid(1437)] +#[cmdid(1434)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SetCurInteractEntityScRsp { - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "8")] pub retcode: u32, } /// Obf: HCHMJOHLMDA #[derive(proto_derive::CmdID)] -#[cmdid(1430)] +#[cmdid(1445)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RecoverAllLineupCsReq {} /// Obf: CMLNFHPNDEG #[derive(proto_derive::CmdID)] -#[cmdid(1475)] +#[cmdid(1469)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RecoverAllLineupScRsp { - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "15")] pub retcode: u32, } /// Obf: SavePointsInfoNotify #[derive(proto_derive::CmdID)] -#[cmdid(1451)] +#[cmdid(1403)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SavePointsInfoNotify { - #[prost(uint32, tag = "3")] - pub valid_times: u32, - #[prost(int64, tag = "10")] + #[prost(int64, tag = "15")] pub refresh_time: i64, + #[prost(uint32, tag = "8")] + pub valid_times: u32, } /// Obf: JKIMJCCFMPI #[derive(proto_derive::CmdID)] -#[cmdid(1491)] +#[cmdid(1424)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct StartCocoonStageCsReq { - #[prost(uint32, tag = "9")] - pub cocoon_id: u32, - #[prost(uint32, tag = "14")] - pub wave: u32, - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "2")] + pub world_level: u32, + #[prost(uint32, tag = "3")] pub prop_entity_id: u32, #[prost(uint32, tag = "6")] - pub world_level: u32, + pub wave: u32, + #[prost(uint32, tag = "10")] + pub cocoon_id: u32, } /// Obf: StartCocoonStageScRsp #[derive(proto_derive::CmdID)] -#[cmdid(1424)] +#[cmdid(1428)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct StartCocoonStageScRsp { - #[prost(uint32, tag = "14")] - pub prop_entity_id: u32, - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "1")] pub cocoon_id: u32, - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "6")] + pub prop_entity_id: u32, + #[prost(uint32, tag = "15")] pub retcode: u32, - #[prost(uint32, tag = "3")] - pub wave: u32, - #[prost(message, optional, tag = "8")] + #[prost(message, optional, tag = "3")] pub battle_info: ::core::option::Option, + #[prost(uint32, tag = "8")] + pub wave: u32, } /// Obf: FFIHDGGAEKN #[derive(proto_derive::CmdID)] -#[cmdid(1457)] +#[cmdid(1423)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct EntityBindPropCsReq { - #[prost(message, optional, tag = "11")] - pub motion: ::core::option::Option, - #[prost(bool, tag = "10")] + #[prost(bool, tag = "4")] pub mjjmpiflmkf: bool, + #[prost(message, optional, tag = "15")] + pub motion: ::core::option::Option, } /// Obf: MNILDBFIHNM #[derive(proto_derive::CmdID)] -#[cmdid(1407)] +#[cmdid(1422)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct EntityBindPropScRsp { - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "11")] pub retcode: u32, } /// Obf: FINBEHEFKPL #[derive(proto_derive::CmdID)] -#[cmdid(1498)] +#[cmdid(1440)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SetClientPausedCsReq { - #[prost(bool, tag = "1")] + #[prost(bool, tag = "5")] pub paused: bool, } /// Obf: MLDMMOMNJPF #[derive(proto_derive::CmdID)] -#[cmdid(1464)] +#[cmdid(1418)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SetClientPausedScRsp { - #[prost(bool, tag = "9")] - pub paused: bool, - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "13")] pub retcode: u32, + #[prost(bool, tag = "15")] + pub paused: bool, } /// Obf: PLFDILGNLLH #[derive(proto_derive::CmdID)] -#[cmdid(1445)] +#[cmdid(1419)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct DeactivateFarmElementCsReq { - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "1")] pub entity_id: u32, } /// Obf: JBEDHCJJDGC #[derive(proto_derive::CmdID)] -#[cmdid(1413)] +#[cmdid(1455)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct DeactivateFarmElementScRsp { - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "7")] pub entity_id: u32, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "11")] pub retcode: u32, } /// Obf: JPFHHINHOHI #[derive(proto_derive::CmdID)] -#[cmdid(1478)] +#[cmdid(1471)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ActivateFarmElementCsReq { - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "6")] pub entity_id: u32, - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "2")] pub world_level: u32, } /// Obf: LNPHFEBJKAA #[derive(proto_derive::CmdID)] -#[cmdid(1420)] +#[cmdid(1463)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ActivateFarmElementScRsp { - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "12")] pub retcode: u32, - #[prost(uint32, tag = "4")] - pub entity_id: u32, - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "2")] pub world_level: u32, + #[prost(uint32, tag = "13")] + pub entity_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Heejkkagimo { - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "4")] pub jlafldchdgj: u32, - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "3")] pub avatar_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Fpdakbkbjkf { - #[prost(message, repeated, tag = "1")] - pub bcglmlabogf: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "5")] pub eidnigifnaa: u32, - #[prost(bool, tag = "15")] + #[prost(bool, tag = "14")] pub ghdepancgpf: bool, + #[prost(message, repeated, tag = "8")] + pub bcglmlabogf: ::prost::alloc::vec::Vec, } /// Obf: NIIKLJIBJEP #[derive(proto_derive::CmdID)] -#[cmdid(1468)] +#[cmdid(1490)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct UpdateMechanismBarScNotify { #[prost(uint32, tag = "3")] - pub floor_id: u32, - #[prost(message, optional, tag = "8")] - pub gigkdapgnme: ::core::option::Option, - #[prost(uint32, tag = "5")] pub plane_id: u32, + #[prost(message, optional, tag = "7")] + pub gigkdapgnme: ::core::option::Option, + #[prost(uint32, tag = "10")] + pub floor_id: u32, } /// Obf: OKLENHLIIGG #[derive(proto_derive::CmdID)] -#[cmdid(1401)] +#[cmdid(1489)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SetGroupCustomSaveDataCsReq { - #[prost(string, tag = "7")] - pub save_data: ::prost::alloc::string::String, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "15")] pub entry_id: u32, + #[prost(string, tag = "14")] + pub save_data: ::prost::alloc::string::String, #[prost(uint32, tag = "11")] pub group_id: u32, } /// Obf: AIAFOJMJHKK #[derive(proto_derive::CmdID)] -#[cmdid(1453)] +#[cmdid(1437)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SetGroupCustomSaveDataScRsp { - #[prost(uint32, tag = "15")] - pub group_id: u32, - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "14")] pub entry_id: u32, - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "7")] pub retcode: u32, + #[prost(uint32, tag = "11")] + pub group_id: u32, } /// Obf: IGPOPOJDLOH #[derive(proto_derive::CmdID)] -#[cmdid(1427)] +#[cmdid(1453)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ReEnterLastElementStageCsReq { - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "13")] pub stage_id: u32, } /// Obf: HAKNDGDAEOF #[derive(proto_derive::CmdID)] -#[cmdid(1474)] +#[cmdid(1433)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ReEnterLastElementStageScRsp { - #[prost(uint32, tag = "13")] - pub retcode: u32, - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "10")] pub stage_id: u32, - #[prost(message, optional, tag = "10")] + #[prost(message, optional, tag = "7")] pub battle_info: ::core::option::Option, + #[prost(uint32, tag = "9")] + pub retcode: u32, } /// Obf: MFKPBBGBIAO #[derive(proto_derive::CmdID)] -#[cmdid(1490)] +#[cmdid(1407)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SceneEntityTeleportCsReq { - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "7")] pub entry_id: u32, - #[prost(message, optional, tag = "8")] + #[prost(message, optional, tag = "13")] pub entity_motion: ::core::option::Option, } /// Obf: MBJFPBAHEGB #[derive(proto_derive::CmdID)] -#[cmdid(1417)] +#[cmdid(1448)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SceneEntityTeleportScRsp { - #[prost(uint32, tag = "4")] - pub client_pos_version: u32, - #[prost(message, optional, tag = "3")] - pub entity_motion: ::core::option::Option, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "15")] pub retcode: u32, + #[prost(uint32, tag = "11")] + pub client_pos_version: u32, + #[prost(message, optional, tag = "5")] + pub entity_motion: ::core::option::Option, } /// Obf: KFJJHAIMMHG #[derive(proto_derive::CmdID)] -#[cmdid(1469)] +#[cmdid(1425)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct EnterSceneCsReq { - #[prost(uint32, tag = "4")] - pub emdhekkocmd: u32, - #[prost(uint32, tag = "6")] - pub entry_id: u32, - #[prost(uint32, tag = "1")] - pub teleport_id: u32, - #[prost(uint32, tag = "7")] - pub content_id: u32, - #[prost(bool, tag = "10")] + #[prost(uint32, tag = "11")] + pub game_story_line_id: u32, + #[prost(bool, tag = "6")] pub dlbedaonnkh: bool, + #[prost(uint32, tag = "5")] + pub entry_id: u32, + #[prost(uint32, tag = "15")] + pub teleport_id: u32, + #[prost(uint32, tag = "13")] + pub content_id: u32, } /// Obf: OPBPKAAGIBE #[derive(proto_derive::CmdID)] -#[cmdid(1449)] +#[cmdid(1443)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct EnterSceneScRsp { - #[prost(bool, tag = "1")] - pub dlbedaonnkh: bool, - #[prost(bool, tag = "10")] - pub iiaafopfcbn: bool, - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "13")] pub content_id: u32, - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "6")] + pub game_story_line_id: u32, + #[prost(uint32, tag = "3")] pub retcode: u32, - #[prost(uint32, tag = "7")] - pub emdhekkocmd: u32, + #[prost(bool, tag = "11")] + pub iiaafopfcbn: bool, + #[prost(bool, tag = "9")] + pub dlbedaonnkh: bool, } /// Obf: OLLMMKGBDGO #[derive(proto_derive::CmdID)] -#[cmdid(1403)] +#[cmdid(1412)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct EnterSceneByServerScNotify { - #[prost(message, optional, tag = "2")] + #[prost(message, optional, tag = "12")] pub scene: ::core::option::Option, - #[prost(message, optional, tag = "9")] + #[prost(message, optional, tag = "13")] pub lineup: ::core::option::Option, - #[prost(enumeration = "EnterSceneReason", tag = "15")] + #[prost(enumeration = "EnterSceneReason", tag = "8")] pub reason: i32, } /// Obf: KIFHBHNPCOC #[derive(proto_derive::CmdID)] -#[cmdid(1410)] +#[cmdid(1462)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ScenePlaneEventScNotify { - #[prost(message, optional, tag = "11")] - pub get_item_list: ::core::option::Option, - #[prost(message, optional, tag = "7")] + #[prost(message, optional, tag = "2")] + pub mhdjadhndkd: ::core::option::Option, + #[prost(message, optional, tag = "15")] + pub meekfpcobai: ::core::option::Option, + #[prost(message, optional, tag = "4")] pub acfcjiomjnf: ::core::option::Option, #[prost(message, optional, tag = "13")] - pub mhdjadhndkd: ::core::option::Option, - #[prost(message, optional, tag = "2")] - pub meekfpcobai: ::core::option::Option, + pub get_item_list: ::core::option::Option, } /// Obf: MBLCANFKHCP #[derive(proto_derive::CmdID)] -#[cmdid(1497)] +#[cmdid(1414)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetSceneMapInfoCsReq { - #[prost(uint32, tag = "1")] - pub cur_map_entry_id: u32, - #[prost(uint32, tag = "9")] - pub content_id: u32, - #[prost(bool, tag = "7")] + #[prost(bool, tag = "13")] pub igfikghllno: bool, #[prost(uint32, repeated, tag = "15")] pub entry_id_list: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "5")] + #[prost(uint32, repeated, tag = "12")] pub floor_id_list: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "7")] + pub cur_map_entry_id: u32, + #[prost(uint32, tag = "4")] + pub content_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MazeProp { - #[prost(uint32, tag = "12")] - pub group_id: u32, - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "10")] pub config_id: u32, - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "2")] + pub group_id: u32, + #[prost(uint32, tag = "12")] pub state: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Ofcaigdhpoh { - #[prost(uint32, tag = "5")] - pub state: u32, - #[prost(uint32, tag = "7")] - pub group_id: u32, - #[prost(message, optional, tag = "1")] - pub extra_info: ::core::option::Option, - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "4")] pub config_id: u32, + #[prost(uint32, tag = "12")] + pub state: u32, + #[prost(uint32, tag = "6")] + pub group_id: u32, + #[prost(message, optional, tag = "11")] + pub extra_info: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MazeGroup { - #[prost(uint32, tag = "5")] - pub group_id: u32, - #[prost(bool, tag = "1")] - pub ilbeaaoojjp: bool, - #[prost(uint32, repeated, tag = "12")] + #[prost(uint32, repeated, tag = "15")] pub nobkeonakle: ::prost::alloc::vec::Vec, + #[prost(bool, tag = "5")] + pub ilbeaaoojjp: bool, + #[prost(uint32, tag = "9")] + pub group_id: u32, #[prost(int64, tag = "4")] pub modify_time: i64, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MazeChest { - #[prost(enumeration = "MapInfoChestType", tag = "8")] - pub map_info_chest_type: i32, - #[prost(uint32, tag = "14")] - pub unlocked_amount_list: u32, - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "12")] pub total_amount_list: u32, + #[prost(uint32, tag = "7")] + pub unlocked_amount_list: u32, + #[prost(enumeration = "MapInfoChestType", tag = "4")] + pub map_info_chest_type: i32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Npaogkfkaae { - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "7")] pub fljindnjphl: u32, - #[prost(uint32, tag = "10")] - pub slot: u32, #[prost(uint32, tag = "11")] pub fokcifjmjgl: u32, + #[prost(uint32, tag = "3")] + pub slot: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MazeMapData { - #[prost(message, repeated, tag = "1")] - pub unlocked_chest_list: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "11")] + #[prost(message, repeated, tag = "12")] + pub lmngahfnaon: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "3")] pub lighten_section_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "10")] - pub entry_id: u32, - #[prost(map = "string, int32", tag = "15")] + #[prost(uint32, repeated, tag = "14")] + pub unlocked_teleport_list: ::prost::alloc::vec::Vec, + #[prost(map = "string, int32", tag = "1")] pub floor_saved_data: ::std::collections::HashMap< ::prost::alloc::string::String, i32, >, - #[prost(message, repeated, tag = "6")] - pub lmngahfnaon: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "12")] - pub gfhglffhfbd: u32, - #[prost(message, repeated, tag = "7")] - pub jmldmocnmhm: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "9")] - pub retcode: u32, - #[prost(uint32, repeated, tag = "8")] - pub unlocked_teleport_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "3")] - pub lmeefkjbpec: u32, - #[prost(message, repeated, tag = "4")] + #[prost(message, repeated, tag = "9")] + pub unlocked_chest_list: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "2")] pub maze_prop_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "6")] pub floor_id: u32, + #[prost(message, repeated, tag = "4")] + pub jmldmocnmhm: ::prost::alloc::vec::Vec, #[prost(message, repeated, tag = "5")] pub maze_group_list: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "13")] + pub lmeefkjbpec: u32, + #[prost(uint32, tag = "7")] + pub retcode: u32, + #[prost(uint32, tag = "15")] + pub gfhglffhfbd: u32, + #[prost(uint32, tag = "8")] + pub entry_id: u32, } /// Obf: PGMDNIBOJIK #[derive(proto_derive::CmdID)] -#[cmdid(1479)] +#[cmdid(1486)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetSceneMapInfoScRsp { - #[prost(uint32, tag = "14")] - pub retcode: u32, - #[prost(uint32, tag = "10")] - pub content_id: u32, - #[prost(bool, tag = "1")] + #[prost(bool, tag = "5")] pub igfikghllno: bool, - #[prost(message, repeated, tag = "12")] - pub map_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "8")] + pub content_id: u32, + #[prost(uint32, tag = "15")] pub cur_map_entry_id: u32, + #[prost(message, repeated, tag = "7")] + pub map_list: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "2")] + pub retcode: u32, } /// Obf: FGDBIJGOBEA #[derive(proto_derive::CmdID)] -#[cmdid(1470)] +#[cmdid(1475)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SyncServerSceneChangeNotify {} /// Obf: HKIJFKJGMCM #[derive(proto_derive::CmdID)] -#[cmdid(1473)] +#[cmdid(1451)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GameplayCounterCountDownCsReq { - #[prost(uint32, tag = "6")] - pub nmglnhpanah: u32, - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "5")] pub cur_times: u32, + #[prost(uint32, tag = "3")] + pub nmglnhpanah: u32, } /// Obf: JDHNNOHMMEF #[derive(proto_derive::CmdID)] -#[cmdid(1467)] +#[cmdid(1456)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GameplayCounterCountDownScRsp { #[prost(uint32, tag = "13")] @@ -28942,29 +30354,29 @@ pub struct GameplayCounterCountDownScRsp { } /// Obf: MDBDLPEODKD #[derive(proto_derive::CmdID)] -#[cmdid(1496)] +#[cmdid(1401)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GameplayCounterUpdateScNotify { - #[prost(uint32, tag = "13")] - pub blogjdckahm: u32, - #[prost(enumeration = "Cnppaammffd", tag = "5")] + #[prost(enumeration = "Cnppaammffd", tag = "15")] pub reason: i32, - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "14")] pub nmglnhpanah: u32, + #[prost(uint32, tag = "12")] + pub blogjdckahm: u32, } /// Obf: MFKPBCIAKCM #[derive(proto_derive::CmdID)] -#[cmdid(1441)] +#[cmdid(1482)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GameplayCounterRecoverCsReq { - #[prost(uint32, tag = "14")] - pub nmglnhpanah: u32, - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "13")] pub labooddaloe: u32, + #[prost(uint32, tag = "10")] + pub nmglnhpanah: u32, } /// Obf: LLBMDKIPMHM #[derive(proto_derive::CmdID)] -#[cmdid(1462)] +#[cmdid(1499)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GameplayCounterRecoverScRsp { #[prost(uint32, tag = "8")] @@ -28972,48 +30384,48 @@ pub struct GameplayCounterRecoverScRsp { } /// Obf: FBJOCFCINKO #[derive(proto_derive::CmdID)] -#[cmdid(1426)] +#[cmdid(1411)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct UpdateFloorSavedValueNotify { - #[prost(uint32, tag = "7")] - pub gfhglffhfbd: u32, - #[prost(map = "string, int32", tag = "10")] + #[prost(map = "string, int32", tag = "5")] pub oaifmglieep: ::std::collections::HashMap<::prost::alloc::string::String, i32>, #[prost(uint32, tag = "12")] - pub floor_id: u32, - #[prost(uint32, tag = "1")] pub plane_id: u32, + #[prost(uint32, tag = "6")] + pub floor_id: u32, + #[prost(uint32, tag = "7")] + pub gfhglffhfbd: u32, } /// Obf: PCFOFDPKLHJ #[derive(proto_derive::CmdID)] -#[cmdid(1404)] +#[cmdid(1430)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetUnlockTeleportCsReq { - #[prost(uint32, repeated, tag = "4")] + #[prost(uint32, repeated, tag = "11")] pub entry_id_list: ::prost::alloc::vec::Vec, } /// Obf: CGOLBMHDACA #[derive(proto_derive::CmdID)] -#[cmdid(1418)] +#[cmdid(1483)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetUnlockTeleportScRsp { - #[prost(uint32, tag = "3")] - pub retcode: u32, - #[prost(uint32, repeated, tag = "13")] + #[prost(uint32, repeated, tag = "5")] pub unlocked_teleport_list: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "11")] + pub retcode: u32, } /// Obf: MKMAMJECDAH #[derive(proto_derive::CmdID)] -#[cmdid(1444)] +#[cmdid(1432)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct OpenChestScNotify { - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "12")] pub kigaehdgklm: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SceneEntityRefreshInfo { - #[prost(oneof = "scene_entity_refresh_info::RefreshType", tags = "3, 9, 5")] + #[prost(oneof = "scene_entity_refresh_info::RefreshType", tags = "6, 4, 12")] pub refresh_type: ::core::option::Option, } /// Nested message and enum types in `SceneEntityRefreshInfo`. @@ -29021,114 +30433,114 @@ pub mod scene_entity_refresh_info { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] pub enum RefreshType { - #[prost(message, tag = "3")] + #[prost(message, tag = "6")] AddEntity(super::SceneEntityInfo), - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "4")] DelEntity(u32), - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "12")] Mhhoaahdgao(u32), } } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Cmgfhbhaffb { - #[prost(int32, tag = "8")] - pub dlmamkinnco: i32, - #[prost(int32, tag = "7")] + #[prost(int32, tag = "1")] pub agfijniebkf: i32, - #[prost(string, tag = "1")] + #[prost(string, tag = "12")] pub jaibieekheg: ::prost::alloc::string::String, + #[prost(int32, tag = "11")] + pub dlmamkinnco: i32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SceneGroupRefreshInfo { - #[prost(message, repeated, tag = "3")] - pub refresh_entity: ::prost::alloc::vec::Vec, - #[prost(enumeration = "SceneGroupRefreshType", tag = "14")] + #[prost(enumeration = "SceneGroupRefreshType", tag = "13")] pub group_refresh_type: i32, - #[prost(uint32, tag = "9")] - pub group_id: u32, - #[prost(uint32, tag = "5")] - pub state: u32, - #[prost(message, repeated, tag = "11")] + #[prost(message, repeated, tag = "2")] pub bccgjihncdn: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "1")] + pub state: u32, + #[prost(message, repeated, tag = "7")] + pub refresh_entity: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "4")] + pub group_id: u32, } /// Obf: DNIDLPMBJGI #[derive(proto_derive::CmdID)] -#[cmdid(1412)] +#[cmdid(1479)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SceneGroupRefreshScNotify { - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "3")] pub gfhglffhfbd: u32, - #[prost(uint32, tag = "10")] - pub floor_id: u32, - #[prost(message, repeated, tag = "4")] + #[prost(message, repeated, tag = "2")] pub group_refresh_info: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "8")] + pub floor_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GroupStateInfo { - #[prost(uint32, tag = "4")] - pub group_id: u32, - #[prost(uint32, tag = "10")] - pub entry_id: u32, - #[prost(uint32, tag = "15")] - pub group_state: u32, #[prost(uint32, tag = "3")] pub player_uid: u32, + #[prost(uint32, tag = "4")] + pub group_state: u32, + #[prost(uint32, tag = "7")] + pub entry_id: u32, + #[prost(uint32, tag = "14")] + pub group_id: u32, } /// Obf: EPALKAAFOPL #[derive(proto_derive::CmdID)] -#[cmdid(1428)] +#[cmdid(1461)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GroupStateChangeCsReq { - #[prost(message, optional, tag = "9")] + #[prost(message, optional, tag = "2")] pub group_state_info: ::core::option::Option, } /// Obf: HDJPNIADMMH #[derive(proto_derive::CmdID)] -#[cmdid(1415)] +#[cmdid(1408)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GroupStateChangeScRsp { - #[prost(message, optional, tag = "13")] + #[prost(message, optional, tag = "15")] pub group_state_info: ::core::option::Option, - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "2")] pub retcode: u32, } /// Obf: NEEPAILHCAD #[derive(proto_derive::CmdID)] -#[cmdid(1455)] +#[cmdid(1497)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GroupStateChangeScNotify { - #[prost(message, optional, tag = "14")] + #[prost(message, optional, tag = "4")] pub group_state_info: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct EnteredSceneInfo { - #[prost(uint32, tag = "12")] - pub plane_id: u32, #[prost(uint32, tag = "11")] pub floor_id: u32, + #[prost(uint32, tag = "3")] + pub plane_id: u32, } /// Obf: IKCIBNFGIGD #[derive(proto_derive::CmdID)] -#[cmdid(1480)] +#[cmdid(1466)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetEnteredSceneCsReq {} /// Obf: FFKICDPOBHE #[derive(proto_derive::CmdID)] -#[cmdid(1450)] +#[cmdid(1417)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetEnteredSceneScRsp { - #[prost(uint32, tag = "8")] - pub retcode: u32, - #[prost(message, repeated, tag = "14")] + #[prost(message, repeated, tag = "1")] pub entered_scene_info: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "12")] + pub retcode: u32, } /// Obf: KCMGLHOAMMA #[derive(proto_derive::CmdID)] -#[cmdid(1419)] +#[cmdid(1500)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct EnteredSceneChangeScNotify { #[prost(message, repeated, tag = "2")] @@ -29136,433 +30548,433 @@ pub struct EnteredSceneChangeScNotify { } /// Obf: KIOMIEGGBEN #[derive(proto_derive::CmdID)] -#[cmdid(1489)] +#[cmdid(1458)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RefreshTriggerByClientCsReq { - #[prost(uint32, repeated, tag = "7")] - pub trigger_target_id_list: ::prost::alloc::vec::Vec, - #[prost(string, tag = "3")] + #[prost(string, tag = "11")] pub trigger_name: ::prost::alloc::string::String, - #[prost(uint32, tag = "14")] - pub trigger_entity_id: u32, - #[prost(message, optional, tag = "2")] + #[prost(uint32, repeated, tag = "14")] + pub trigger_target_id_list: ::prost::alloc::vec::Vec, + #[prost(message, optional, tag = "12")] pub trigger_motion: ::core::option::Option, + #[prost(uint32, tag = "6")] + pub trigger_entity_id: u32, } /// Obf: JGDKAEIDJND #[derive(proto_derive::CmdID)] -#[cmdid(1488)] +#[cmdid(1446)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RefreshTriggerByClientScRsp { - #[prost(string, tag = "3")] - pub trigger_name: ::prost::alloc::string::String, - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "12")] pub trigger_entity_id: u32, - #[prost(uint32, tag = "10")] - pub retcode: u32, - #[prost(bool, tag = "15")] + #[prost(bool, tag = "7")] pub refresh_trigger: bool, + #[prost(string, tag = "6")] + pub trigger_name: ::prost::alloc::string::String, + #[prost(uint32, tag = "11")] + pub retcode: u32, } /// Obf: AHMJLGKLLKF #[derive(proto_derive::CmdID)] -#[cmdid(1438)] +#[cmdid(1442)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RefreshTriggerByClientScNotify { - #[prost(string, tag = "11")] - pub trigger_name: ::prost::alloc::string::String, #[prost(uint32, repeated, tag = "13")] pub trigger_target_id_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "8")] + #[prost(string, tag = "1")] + pub trigger_name: ::prost::alloc::string::String, + #[prost(uint32, tag = "12")] pub trigger_entity_id: u32, } /// Obf: PPKGLDLFMHB #[derive(proto_derive::CmdID)] -#[cmdid(1405)] +#[cmdid(1492)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct DeleteSummonUnitCsReq { - #[prost(uint32, repeated, tag = "3")] + #[prost(uint32, repeated, tag = "5")] pub entity_id_list: ::prost::alloc::vec::Vec, } /// Obf: AMHALMPHADG #[derive(proto_derive::CmdID)] -#[cmdid(1482)] +#[cmdid(1410)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct DeleteSummonUnitScRsp { - #[prost(uint32, repeated, tag = "2")] + #[prost(uint32, repeated, tag = "10")] pub entity_id_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "5")] pub retcode: u32, } /// Obf: NDJAIEFKJDC #[derive(proto_derive::CmdID)] -#[cmdid(1447)] +#[cmdid(1404)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct UnlockedAreaMapScNotify { - #[prost(uint32, repeated, tag = "4")] + #[prost(uint32, repeated, tag = "3")] pub entry_id_list: ::prost::alloc::vec::Vec, } /// Obf: MECGPLPPPLF #[derive(proto_derive::CmdID)] -#[cmdid(1466)] +#[cmdid(1488)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct UnlockTeleportNotify { - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "6")] pub entry_id: u32, - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "13")] pub teleport_id: u32, } /// Obf: PFGIGAKAMGI #[derive(proto_derive::CmdID)] -#[cmdid(1461)] +#[cmdid(1429)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct UpdateGroupPropertyCsReq { - #[prost(string, tag = "4")] - pub jaibieekheg: ::prost::alloc::string::String, - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "6")] pub gfhglffhfbd: u32, + #[prost(string, tag = "15")] + pub jaibieekheg: ::prost::alloc::string::String, + #[prost(uint32, tag = "4")] + pub group_id: u32, #[prost(uint32, tag = "7")] pub floor_id: u32, - #[prost(int32, tag = "2")] + #[prost(int32, tag = "12")] pub mojohjebcnj: i32, - #[prost(uint32, tag = "11")] - pub group_id: u32, } /// Obf: FKPHAPJNAED #[derive(proto_derive::CmdID)] -#[cmdid(1459)] +#[cmdid(1413)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct UpdateGroupPropertyScRsp { - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "14")] pub gfhglffhfbd: u32, - #[prost(uint32, tag = "6")] - pub group_id: u32, - #[prost(string, tag = "10")] - pub jaibieekheg: ::prost::alloc::string::String, - #[prost(uint32, tag = "9")] - pub floor_id: u32, - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "15")] pub retcode: u32, + #[prost(uint32, tag = "6")] + pub floor_id: u32, + #[prost(uint32, tag = "2")] + pub group_id: u32, + #[prost(int32, tag = "12")] + pub dlmamkinnco: i32, + #[prost(string, tag = "13")] + pub jaibieekheg: ::prost::alloc::string::String, #[prost(int32, tag = "5")] pub agfijniebkf: i32, - #[prost(int32, tag = "1")] - pub dlmamkinnco: i32, } /// Obf: IBGAGNCFDEN #[derive(proto_derive::CmdID)] -#[cmdid(1492)] +#[cmdid(1415)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TrainWorldIdChangeScNotify { - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "3")] pub npebnekdlen: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ServerPrefs { - #[prost(uint32, tag = "3")] - pub server_prefs_id: u32, - #[prost(bytes = "vec", tag = "2")] + #[prost(bytes = "vec", tag = "14")] pub data: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "7")] + pub server_prefs_id: u32, } /// Obf: ODFDCOFIFNE #[derive(proto_derive::CmdID)] -#[cmdid(6195)] +#[cmdid(6120)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetAllServerPrefsDataCsReq {} /// Obf: ANIEMJCBMEH #[derive(proto_derive::CmdID)] -#[cmdid(6132)] +#[cmdid(6191)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetAllServerPrefsDataScRsp { - #[prost(message, repeated, tag = "2")] - pub lfbeohkkdoi: ::prost::alloc::vec::Vec, #[prost(uint32, tag = "11")] pub retcode: u32, + #[prost(message, repeated, tag = "10")] + pub lfbeohkkdoi: ::prost::alloc::vec::Vec, } /// Obf: FLGFMAOEILG #[derive(proto_derive::CmdID)] -#[cmdid(6131)] +#[cmdid(6167)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetServerPrefsDataCsReq { - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "15")] pub server_prefs_id: u32, } /// Obf: DMLKMBPBNDF #[derive(proto_derive::CmdID)] -#[cmdid(6140)] +#[cmdid(6139)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetServerPrefsDataScRsp { - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "7")] pub retcode: u32, - #[prost(message, optional, tag = "7")] + #[prost(message, optional, tag = "4")] pub server_prefs: ::core::option::Option, } /// Obf: HEPBIHIMJAC #[derive(proto_derive::CmdID)] -#[cmdid(6176)] +#[cmdid(6127)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct UpdateServerPrefsDataCsReq { - #[prost(message, optional, tag = "10")] + #[prost(message, optional, tag = "1")] pub server_prefs: ::core::option::Option, } /// Obf: LOIEDLCJAED #[derive(proto_derive::CmdID)] -#[cmdid(6148)] +#[cmdid(6121)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct UpdateServerPrefsDataScRsp { - #[prost(uint32, tag = "12")] - pub server_prefs_id: u32, - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "8")] pub retcode: u32, + #[prost(uint32, tag = "7")] + pub server_prefs_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Shop { - #[prost(uint32, tag = "15")] - pub city_exp: u32, - #[prost(uint32, tag = "13")] - pub shop_id: u32, - #[prost(int64, tag = "2")] - pub begin_time: i64, - #[prost(uint32, tag = "4")] - pub city_level: u32, - #[prost(uint64, tag = "8")] - pub city_taken_level_reward: u64, - #[prost(int64, tag = "5")] - pub end_time: i64, - #[prost(message, repeated, tag = "7")] + #[prost(message, repeated, tag = "15")] pub goods_list: ::prost::alloc::vec::Vec, + #[prost(int64, tag = "9")] + pub begin_time: i64, + #[prost(int64, tag = "2")] + pub end_time: i64, + #[prost(uint32, tag = "7")] + pub shop_id: u32, + #[prost(uint64, tag = "10")] + pub city_taken_level_reward: u64, + #[prost(uint32, tag = "6")] + pub city_exp: u32, + #[prost(uint32, tag = "12")] + pub city_level: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Goods { - #[prost(uint32, tag = "6")] - pub item_id: u32, - #[prost(uint32, tag = "13")] - pub buy_times: u32, - #[prost(int64, tag = "12")] - pub begin_time: i64, - #[prost(uint32, tag = "15")] - pub goods_id: u32, - #[prost(int64, tag = "5")] + #[prost(int64, tag = "3")] pub end_time: i64, + #[prost(uint32, tag = "4")] + pub item_id: u32, + #[prost(uint32, tag = "11")] + pub goods_id: u32, + #[prost(uint32, tag = "8")] + pub buy_times: u32, + #[prost(int64, tag = "9")] + pub begin_time: i64, } /// Obf: FCKAFIDILMG #[derive(proto_derive::CmdID)] -#[cmdid(1595)] +#[cmdid(1520)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetShopListCsReq { - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "5")] pub shop_type: u32, } /// Obf: GetShopListScRsp #[derive(proto_derive::CmdID)] -#[cmdid(1532)] +#[cmdid(1591)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetShopListScRsp { - #[prost(message, repeated, tag = "2")] + #[prost(message, repeated, tag = "7")] pub shop_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "12")] - pub retcode: u32, - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "6")] pub shop_type: u32, + #[prost(uint32, tag = "2")] + pub retcode: u32, } /// Obf: CMOBCAPIPLL #[derive(proto_derive::CmdID)] -#[cmdid(1531)] +#[cmdid(1567)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct BuyGoodsCsReq { - #[prost(uint32, tag = "6")] - pub interacted_prop_entity_id: u32, - #[prost(uint32, repeated, tag = "15")] - pub fmpnheaimdn: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "10")] - pub item_id: u32, - #[prost(uint32, tag = "7")] - pub goods_id: u32, - #[prost(uint32, tag = "9")] - pub shop_id: u32, #[prost(uint32, tag = "1")] pub goods_num: u32, + #[prost(uint32, tag = "3")] + pub item_id: u32, + #[prost(uint32, tag = "4")] + pub goods_id: u32, + #[prost(uint32, repeated, tag = "8")] + pub fmpnheaimdn: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "12")] + pub interacted_prop_entity_id: u32, + #[prost(uint32, tag = "5")] + pub shop_id: u32, } /// Obf: BuyGoodsScRsp #[derive(proto_derive::CmdID)] -#[cmdid(1540)] +#[cmdid(1539)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct BuyGoodsScRsp { - #[prost(uint32, tag = "15")] - pub goods_id: u32, - #[prost(uint32, tag = "10")] - pub goods_buy_times: u32, - #[prost(uint32, tag = "9")] - pub shop_id: u32, - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "4")] pub retcode: u32, - #[prost(message, optional, tag = "12")] + #[prost(message, optional, tag = "11")] pub return_item_list: ::core::option::Option, + #[prost(uint32, tag = "6")] + pub goods_id: u32, + #[prost(uint32, tag = "14")] + pub goods_buy_times: u32, + #[prost(uint32, tag = "3")] + pub shop_id: u32, } /// Obf: GLKECELEPCE #[derive(proto_derive::CmdID)] -#[cmdid(1576)] +#[cmdid(1527)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TakeCityShopRewardCsReq { - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "15")] pub level: u32, - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "10")] pub shop_id: u32, } /// Obf: TakeCityShopRewardScRsp #[derive(proto_derive::CmdID)] -#[cmdid(1548)] +#[cmdid(1521)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TakeCityShopRewardScRsp { - #[prost(uint32, tag = "3")] - pub level: u32, - #[prost(uint32, tag = "10")] - pub shop_id: u32, - #[prost(message, optional, tag = "5")] - pub reward: ::core::option::Option, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "7")] pub retcode: u32, + #[prost(message, optional, tag = "4")] + pub reward: ::core::option::Option, + #[prost(uint32, tag = "5")] + pub level: u32, + #[prost(uint32, tag = "6")] + pub shop_id: u32, } /// Obf: CityShopInfoScNotify #[derive(proto_derive::CmdID)] -#[cmdid(1571)] +#[cmdid(1570)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct CityShopInfoScNotify { - #[prost(uint32, tag = "6")] - pub exp: u32, - #[prost(uint64, tag = "12")] - pub taken_level_reward: u64, - #[prost(uint32, tag = "7")] - pub level: u32, - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "4")] pub shop_id: u32, + #[prost(uint32, tag = "13")] + pub level: u32, + #[prost(uint64, tag = "2")] + pub taken_level_reward: u64, + #[prost(uint32, tag = "11")] + pub exp: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Fafgmlpadmi { - #[prost(uint32, repeated, tag = "7")] - pub item_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "10")] - pub bejeedaebbe: u32, - #[prost(uint32, tag = "3")] - pub unique_id: u32, - #[prost(uint32, tag = "1")] - pub fclnoogehmc: u32, - #[prost(uint32, repeated, tag = "15")] - pub igjcppkaibi: ::prost::alloc::vec::Vec, #[prost(bool, tag = "5")] pub halbhknpikh: bool, + #[prost(uint32, tag = "12")] + pub fclnoogehmc: u32, + #[prost(uint32, tag = "14")] + pub unique_id: u32, + #[prost(uint32, repeated, tag = "10")] + pub item_list: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "1")] + pub bejeedaebbe: u32, + #[prost(uint32, repeated, tag = "15")] + pub igjcppkaibi: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Ipjaiinegel { - #[prost(uint32, tag = "2")] - pub bejeedaebbe: u32, - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "12")] pub ecbalmaebjc: u32, + #[prost(uint32, tag = "8")] + pub bejeedaebbe: u32, } /// Obf: HINEAHNNJOL #[derive(proto_derive::CmdID)] -#[cmdid(6795)] +#[cmdid(6720)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SpaceZooDataCsReq {} /// Obf: AMIJINMJHPI #[derive(proto_derive::CmdID)] -#[cmdid(6732)] +#[cmdid(6791)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SpaceZooDataScRsp { - #[prost(message, repeated, tag = "5")] - pub aagihkbfmfi: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "11")] - pub kjfhkicggde: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "12")] - pub bnhndbnabfn: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "14")] - pub dplkbeehplb: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "2")] - pub pblcahnmfjg: u32, - #[prost(uint32, repeated, tag = "15")] - pub pmcmecdlemc: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "4")] - pub inihlancnfi: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "3")] + #[prost(uint32, repeated, tag = "2")] pub kmoadeogapa: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "10")] + #[prost(uint32, repeated, tag = "3")] + pub pmcmecdlemc: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "7")] + pub inihlancnfi: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "10")] + pub bnhndbnabfn: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "9")] + pub kjfhkicggde: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "14")] + pub aagihkbfmfi: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "4")] + pub dplkbeehplb: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "15")] + pub pblcahnmfjg: u32, + #[prost(uint32, tag = "11")] pub retcode: u32, } /// Obf: ACOPFJAGDAN #[derive(proto_derive::CmdID)] -#[cmdid(6731)] +#[cmdid(6767)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SpaceZooBornCsReq { - #[prost(uint32, repeated, tag = "12")] + #[prost(uint32, repeated, tag = "2")] pub hdcbacooind: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "7")] pub lheonphgbnb: u32, } /// Obf: GMDMLBNDCAD #[derive(proto_derive::CmdID)] -#[cmdid(6740)] +#[cmdid(6739)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SpaceZooBornScRsp { - #[prost(bool, tag = "3")] - pub iklpncgbppc: bool, - #[prost(message, optional, tag = "1")] - pub kpkdhghdgnb: ::core::option::Option, - #[prost(message, repeated, tag = "9")] - pub goeaofnfjod: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "6")] pub retcode: u32, + #[prost(bool, tag = "14")] + pub iklpncgbppc: bool, + #[prost(message, repeated, tag = "11")] + pub goeaofnfjod: ::prost::alloc::vec::Vec, + #[prost(message, optional, tag = "7")] + pub kpkdhghdgnb: ::core::option::Option, } /// Obf: CLGEJEGDOHO #[derive(proto_derive::CmdID)] -#[cmdid(6776)] +#[cmdid(6727)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SpaceZooMutateCsReq { - #[prost(uint32, tag = "4")] - pub item_id: u32, - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "5")] pub unique_id: u32, + #[prost(uint32, tag = "13")] + pub item_id: u32, } /// Obf: CCFOFENAHCA #[derive(proto_derive::CmdID)] -#[cmdid(6748)] +#[cmdid(6721)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SpaceZooMutateScRsp { - #[prost(message, optional, tag = "5")] - pub eflcmhmajal: ::core::option::Option, - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "15")] pub retcode: u32, - #[prost(message, repeated, tag = "10")] + #[prost(message, optional, tag = "4")] + pub eflcmhmajal: ::core::option::Option, + #[prost(message, repeated, tag = "13")] pub goeaofnfjod: ::prost::alloc::vec::Vec, - #[prost(bool, tag = "12")] + #[prost(bool, tag = "8")] pub iklpncgbppc: bool, } /// Obf: KFIBELFOHCF #[derive(proto_derive::CmdID)] -#[cmdid(6771)] +#[cmdid(6770)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SpaceZooOpCatteryCsReq { - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "9")] pub nileedjlgin: u32, - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "11")] pub op_type: u32, - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "13")] pub algeienioan: u32, } /// Obf: HHPGBIFODOJ #[derive(proto_derive::CmdID)] -#[cmdid(6752)] +#[cmdid(6759)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SpaceZooOpCatteryScRsp { - #[prost(uint32, repeated, tag = "11")] - pub kjfhkicggde: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "6")] pub retcode: u32, + #[prost(uint32, repeated, tag = "2")] + pub kjfhkicggde: ::prost::alloc::vec::Vec, } /// Obf: KHBDFDGDLLK #[derive(proto_derive::CmdID)] -#[cmdid(6722)] +#[cmdid(6754)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SpaceZooDeleteCatCsReq { #[prost(uint32, repeated, tag = "2")] @@ -29570,47 +30982,47 @@ pub struct SpaceZooDeleteCatCsReq { } /// Obf: CAINCJCDALE #[derive(proto_derive::CmdID)] -#[cmdid(6756)] +#[cmdid(6777)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SpaceZooDeleteCatScRsp { - #[prost(uint32, repeated, tag = "3")] + #[prost(uint32, repeated, tag = "7")] pub nfheagelici: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "1")] pub retcode: u32, } /// Obf: JPAKGAEBCFG #[derive(proto_derive::CmdID)] -#[cmdid(6772)] +#[cmdid(6780)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SpaceZooCatUpdateNotify { #[prost(bool, tag = "14")] pub fpmncagjebg: bool, - #[prost(bool, tag = "1")] - pub iklpncgbppc: bool, - #[prost(message, repeated, tag = "10")] + #[prost(message, repeated, tag = "6")] pub aikmbppnokd: ::prost::alloc::vec::Vec, + #[prost(bool, tag = "11")] + pub iklpncgbppc: bool, } /// Obf: LCLIHAJNNDF #[derive(proto_derive::CmdID)] -#[cmdid(6785)] +#[cmdid(6702)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SpaceZooExchangeItemCsReq { - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "14")] pub item_id: u32, } /// Obf: EHMCHGFLGGO #[derive(proto_derive::CmdID)] -#[cmdid(6716)] +#[cmdid(6705)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SpaceZooExchangeItemScRsp { - #[prost(uint32, tag = "1")] - pub retcode: u32, - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "8")] pub item_id: u32, + #[prost(uint32, tag = "11")] + pub retcode: u32, } /// Obf: HBFKBBBEHGJ #[derive(proto_derive::CmdID)] -#[cmdid(6746)] +#[cmdid(6774)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SpaceZooTakeCsReq { #[prost(uint32, tag = "9")] @@ -29618,531 +31030,531 @@ pub struct SpaceZooTakeCsReq { } /// Obf: JJNKPICGLPG #[derive(proto_derive::CmdID)] -#[cmdid(6783)] +#[cmdid(6773)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SpaceZooTakeScRsp { + #[prost(uint32, tag = "1")] + pub retcode: u32, + #[prost(message, optional, tag = "8")] + pub reward: ::core::option::Option, #[prost(uint32, tag = "4")] pub hlnmajidifd: u32, - #[prost(message, optional, tag = "5")] - pub reward: ::core::option::Option, - #[prost(uint32, tag = "3")] - pub retcode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Mjcjaikpllm { - #[prost(uint32, tag = "7")] +pub struct StarFightData { + #[prost(bool, tag = "9")] + pub acelagjphma: bool, + #[prost(uint32, tag = "1")] + pub cbindiaamjg: u32, + #[prost(uint32, tag = "2")] + pub group_id: u32, + #[prost(uint32, tag = "12")] pub ifangmhnkbb: u32, #[prost(uint32, tag = "11")] pub mpaecapoheo: u32, - #[prost(uint32, tag = "9")] - pub group_id: u32, - #[prost(bool, tag = "10")] - pub acelagjphma: bool, - #[prost(uint32, tag = "4")] - pub cbindiaamjg: u32, } /// Obf: HECAEIHOCCE #[derive(proto_derive::CmdID)] -#[cmdid(7162)] +#[cmdid(7165)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetStarFightDataCsReq {} /// Obf: HOLCFKIOBGN #[derive(proto_derive::CmdID)] -#[cmdid(7165)] +#[cmdid(7169)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetStarFightDataScRsp { - #[prost(uint32, tag = "12")] + #[prost(message, repeated, tag = "3")] + pub star_fight_data_list: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "5")] pub retcode: u32, - #[prost(message, repeated, tag = "7")] - pub bdiimmhjlcn: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Aedaoiffign { - #[prost(uint32, tag = "15")] +pub struct StarFightAvatar { + #[prost(uint32, tag = "3")] pub avatar_id: u32, - #[prost(enumeration = "AvatarType", tag = "8")] + #[prost(enumeration = "AvatarType", tag = "12")] pub avatar_type: i32, } /// Obf: JDOLCCABFOH #[derive(proto_derive::CmdID)] -#[cmdid(7164)] +#[cmdid(7168)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct StartStarFightLevelCsReq { - #[prost(message, repeated, tag = "11")] - pub avatar_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "2")] pub group_id: u32, #[prost(uint32, tag = "3")] - pub nedfibonlkb: u32, + pub difficulty: u32, + #[prost(message, repeated, tag = "9")] + pub avatar_list: ::prost::alloc::vec::Vec, } /// Obf: BCOKPHCMNOH #[derive(proto_derive::CmdID)] -#[cmdid(7167)] +#[cmdid(7163)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct StartStarFightLevelScRsp { - #[prost(message, optional, tag = "6")] - pub battle_info: ::core::option::Option, - #[prost(uint32, tag = "5")] - pub retcode: u32, - #[prost(uint32, tag = "10")] - pub group_id: u32, + #[prost(uint32, tag = "11")] + pub difficulty: u32, #[prost(uint32, tag = "12")] - pub nedfibonlkb: u32, + pub group_id: u32, + #[prost(message, optional, tag = "5")] + pub battle_info: ::core::option::Option, + #[prost(uint32, tag = "13")] + pub retcode: u32, } /// Obf: AHCKMCCDIIJ #[derive(proto_derive::CmdID)] -#[cmdid(7161)] +#[cmdid(7166)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct StarFightDataChangeNotify { - #[prost(message, optional, tag = "11")] - pub fmcdalalfia: ::core::option::Option, - #[prost(uint32, tag = "15")] + #[prost(message, optional, tag = "6")] + pub star_fight_data: ::core::option::Option, + #[prost(uint32, tag = "7")] pub group_id: u32, } /// Obf: NPHIJIJDPHC #[derive(proto_derive::CmdID)] -#[cmdid(6295)] +#[cmdid(6220)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetStoryLineInfoCsReq {} /// Obf: KCBPBDJNPEG #[derive(proto_derive::CmdID)] -#[cmdid(6232)] +#[cmdid(6291)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetStoryLineInfoScRsp { - #[prost(uint32, repeated, tag = "8")] - pub trial_avatar_id_list: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "1")] - pub fmihhbhfhoa: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "5")] - pub retcode: u32, #[prost(uint32, tag = "9")] + pub retcode: u32, + #[prost(uint32, repeated, tag = "1")] + pub trial_avatar_id_list: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "10")] + pub fmihhbhfhoa: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "12")] pub glhflieimjk: u32, } /// Obf: CPDNCFCHAJG #[derive(proto_derive::CmdID)] -#[cmdid(6231)] +#[cmdid(6267)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct StoryLineInfoScNotify { - #[prost(uint32, repeated, tag = "3")] - pub fmihhbhfhoa: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "5")] pub glhflieimjk: u32, - #[prost(uint32, tag = "14")] - pub fimcejgdagf: u32, #[prost(uint32, repeated, tag = "7")] pub trial_avatar_id_list: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "1")] + pub fmihhbhfhoa: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "11")] + pub fimcejgdagf: u32, } /// Obf: MDOGEPCPFJO #[derive(proto_derive::CmdID)] -#[cmdid(6248)] +#[cmdid(6221)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ChangeStoryLineFinishScNotify { - #[prost(uint32, tag = "9")] - pub kidkhjecjlf: u32, - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "2")] pub glhflieimjk: u32, - #[prost(enumeration = "Amjocdiaphf", tag = "15")] - pub nfojnohloac: i32, - #[prost(bool, tag = "10")] + #[prost(uint32, tag = "12")] + pub kidkhjecjlf: u32, + #[prost(enumeration = "Amjocdiaphf", tag = "9")] + pub action: i32, + #[prost(bool, tag = "4")] pub koocceighma: bool, } /// Obf: POOIBGCAMCD #[derive(proto_derive::CmdID)] -#[cmdid(6271)] +#[cmdid(6270)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct StoryLineTrialAvatarChangeScNotify { - #[prost(uint32, repeated, tag = "10")] + #[prost(uint32, repeated, tag = "12")] pub kfmffggjmne: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "9")] + #[prost(uint32, repeated, tag = "1")] pub iblbnianphd: ::prost::alloc::vec::Vec, - #[prost(bool, tag = "3")] + #[prost(bool, tag = "14")] pub cliigmnmhna: bool, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct StrongChallengeAvatar { - #[prost(uint32, tag = "14")] - pub avatar_id: u32, - #[prost(enumeration = "AvatarType", tag = "3")] + #[prost(enumeration = "AvatarType", tag = "6")] pub avatar_type: i32, + #[prost(uint32, tag = "9")] + pub avatar_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Jpfjgfopkhb { - #[prost(uint32, repeated, tag = "11")] - pub buff_list: ::prost::alloc::vec::Vec, #[prost(message, repeated, tag = "6")] pub avatar_list: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "11")] + pub buff_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Caaakpfoeji { - #[prost(uint32, tag = "4")] - pub module_id: u32, - #[prost(message, optional, tag = "9")] - pub ahinpckgkjg: ::core::option::Option, - #[prost(uint32, tag = "10")] - pub jgbainfdban: u32, - #[prost(uint32, tag = "6")] - pub stage_score: u32, - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "1")] pub stage_id: u32, + #[prost(message, optional, tag = "14")] + pub ahinpckgkjg: ::core::option::Option, + #[prost(uint32, tag = "8")] + pub jgbainfdban: u32, + #[prost(uint32, tag = "4")] + pub stage_score: u32, + #[prost(uint32, tag = "13")] + pub module_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Hlkgcnfccia { - #[prost(map = "uint32, message", tag = "8")] + #[prost(map = "uint32, message", tag = "5")] pub alcedmlhflm: ::std::collections::HashMap, } /// Obf: DCIGBDPOOCP #[derive(proto_derive::CmdID)] -#[cmdid(6695)] +#[cmdid(6620)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetStrongChallengeActivityDataCsReq {} /// Obf: OPFOLDIBJPE #[derive(proto_derive::CmdID)] -#[cmdid(6632)] +#[cmdid(6691)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetStrongChallengeActivityDataScRsp { - #[prost(message, optional, tag = "8")] - pub giilgffkhda: ::core::option::Option, - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "14")] pub retcode: u32, + #[prost(message, optional, tag = "3")] + pub giilgffkhda: ::core::option::Option, } /// Obf: AMMBLGICEAI #[derive(proto_derive::CmdID)] -#[cmdid(6631)] +#[cmdid(6667)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct EnterStrongChallengeActivityStageCsReq { - #[prost(uint32, repeated, tag = "6")] + #[prost(uint32, repeated, tag = "13")] pub buff_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "15")] - pub stage_id: u32, - #[prost(message, repeated, tag = "1")] + #[prost(message, repeated, tag = "3")] pub avatar_list: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "10")] + pub stage_id: u32, } /// Obf: PAPOJHEABLF #[derive(proto_derive::CmdID)] -#[cmdid(6640)] +#[cmdid(6639)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct EnterStrongChallengeActivityStageScRsp { - #[prost(message, optional, tag = "7")] + #[prost(uint32, tag = "6")] + pub stage_id: u32, + #[prost(message, optional, tag = "14")] pub battle_info: ::core::option::Option, #[prost(uint32, tag = "15")] - pub stage_id: u32, - #[prost(uint32, tag = "3")] pub retcode: u32, } /// Obf: BHOPHDIKNHE #[derive(proto_derive::CmdID)] -#[cmdid(6676)] +#[cmdid(6627)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct StrongChallengeActivityBattleEndScNotify { - #[prost(uint32, tag = "6")] - pub score: u32, - #[prost(uint32, tag = "10")] - pub total_damage: u32, #[prost(uint32, tag = "4")] + pub ggbecchphcd: u32, + #[prost(uint32, tag = "2")] + pub stage_score: u32, + #[prost(uint32, tag = "9")] + pub score: u32, + #[prost(uint32, tag = "14")] pub ahjfpngdbdo: u32, #[prost(uint32, tag = "11")] - pub stage_id: u32, - #[prost(uint32, tag = "1")] - pub stage_score: u32, - #[prost(uint32, tag = "7")] pub jamlokncakc: u32, - #[prost(uint32, tag = "2")] - pub ggbecchphcd: u32, - #[prost(enumeration = "BattleEndStatus", tag = "5")] + #[prost(uint32, tag = "8")] + pub total_damage: u32, + #[prost(enumeration = "BattleEndStatus", tag = "3")] pub end_status: i32, + #[prost(uint32, tag = "13")] + pub stage_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Pgbhmolfbmm { - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "2")] pub group_id: u32, - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "3")] pub stars: u32, #[prost(uint32, tag = "15")] - pub nedfibonlkb: u32, + pub difficulty: u32, } /// Obf: POPIFPMLMAN #[derive(proto_derive::CmdID)] -#[cmdid(7562)] +#[cmdid(7565)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetSummonActivityDataCsReq {} /// Obf: LCDFPJKEPCN #[derive(proto_derive::CmdID)] -#[cmdid(7565)] +#[cmdid(7569)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetSummonActivityDataScRsp { - #[prost(uint32, tag = "12")] - pub retcode: u32, - #[prost(message, repeated, tag = "1")] + #[prost(message, repeated, tag = "10")] pub jhomkemcdmg: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "7")] + pub retcode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Onoeplfnell { - #[prost(enumeration = "AvatarType", tag = "1")] + #[prost(enumeration = "AvatarType", tag = "14")] pub avatar_type: i32, - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "15")] pub avatar_id: u32, } /// Obf: FCLMMIMNEKI #[derive(proto_derive::CmdID)] -#[cmdid(7564)] +#[cmdid(7568)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct EnterSummonActivityStageCsReq { - #[prost(uint32, tag = "9")] - pub nedfibonlkb: u32, - #[prost(uint32, tag = "7")] - pub group_id: u32, - #[prost(message, repeated, tag = "12")] + #[prost(uint32, tag = "6")] + pub difficulty: u32, + #[prost(message, repeated, tag = "13")] pub avatar_list: ::prost::alloc::vec::Vec, - #[prost(message, optional, tag = "6")] + #[prost(uint32, tag = "5")] + pub group_id: u32, + #[prost(message, optional, tag = "11")] pub mnoedeclhbj: ::core::option::Option, } /// Obf: HBHJHHOBNDN #[derive(proto_derive::CmdID)] -#[cmdid(7567)] +#[cmdid(7563)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct EnterSummonActivityStageScRsp { - #[prost(uint32, tag = "2")] - pub nedfibonlkb: u32, - #[prost(message, optional, tag = "3")] - pub battle_info: ::core::option::Option, - #[prost(uint32, tag = "8")] - pub retcode: u32, - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "7")] pub group_id: u32, + #[prost(message, optional, tag = "14")] + pub battle_info: ::core::option::Option, + #[prost(uint32, tag = "15")] + pub retcode: u32, + #[prost(uint32, tag = "13")] + pub difficulty: u32, } /// Obf: FNGLNJJJJGI #[derive(proto_derive::CmdID)] -#[cmdid(7561)] +#[cmdid(7566)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SummonActivityBattleEndScNotify { - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "14")] pub hmffhgbkogl: u32, - #[prost(uint32, tag = "13")] - pub nedfibonlkb: u32, - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "12")] + pub difficulty: u32, + #[prost(uint32, tag = "3")] pub group_id: u32, - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "4")] pub stars: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Fpppjcpijjf { - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "6")] + pub mcbiohmimgn: u32, + #[prost(uint32, tag = "7")] pub config_id: u32, - #[prost(message, optional, tag = "14")] + #[prost(message, optional, tag = "1")] pub ofolpkmalgi: ::core::option::Option, #[prost(bytes = "vec", tag = "9")] pub mjnnblcdcbj: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "12")] pub gfjiiabanlm: u32, - #[prost(uint32, tag = "4")] - pub mcbiohmimgn: u32, } /// Obf: KOENHFBKMIH #[derive(proto_derive::CmdID)] -#[cmdid(8114)] +#[cmdid(8118)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SwitchHandDataCsReq { - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "2")] pub config_id: u32, } /// Obf: EGGGCFAPAHG #[derive(proto_derive::CmdID)] -#[cmdid(8113)] +#[cmdid(8109)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SwitchHandDataScRsp { - #[prost(uint32, tag = "5")] - pub dlnghhdmjjm: u32, - #[prost(uint32, tag = "2")] - pub retcode: u32, - #[prost(uint32, tag = "6")] - pub abojjandfno: u32, - #[prost(message, repeated, tag = "9")] + #[prost(message, repeated, tag = "6")] pub lbomdfhffcf: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "11")] + pub dlnghhdmjjm: u32, + #[prost(uint32, tag = "4")] + pub abojjandfno: u32, + #[prost(uint32, tag = "3")] + pub retcode: u32, } /// Obf: FFCCFLLHHMC #[derive(proto_derive::CmdID)] -#[cmdid(8108)] +#[cmdid(8110)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SwitchHandStartCsReq { - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "10")] pub config_id: u32, } /// Obf: POGCIOCHLCF #[derive(proto_derive::CmdID)] -#[cmdid(8110)] +#[cmdid(8116)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SwitchHandStartScRsp { - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "1")] pub config_id: u32, - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "6")] pub retcode: u32, } /// Obf: JAMMDOJMEPN #[derive(proto_derive::CmdID)] -#[cmdid(8104)] +#[cmdid(8107)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SwitchHandFinishCsReq {} /// Obf: HOHCGKAGLIP #[derive(proto_derive::CmdID)] -#[cmdid(8102)] +#[cmdid(8111)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SwitchHandFinishScRsp { - #[prost(uint32, tag = "7")] - pub retcode: u32, - #[prost(message, optional, tag = "8")] + #[prost(message, optional, tag = "10")] pub cmfmacmipee: ::core::option::Option, + #[prost(uint32, tag = "3")] + pub retcode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Pmgecpbkjcj { - #[prost(uint32, tag = "15")] - pub kdlpeighjak: u32, - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "4")] pub iefmadjgadb: u32, - #[prost(uint32, tag = "5")] - pub group_id: u32, - #[prost(enumeration = "Leglgdjopkc", tag = "3")] + #[prost(enumeration = "Leglgdjopkc", tag = "7")] pub op_type: i32, + #[prost(uint32, tag = "11")] + pub group_id: u32, + #[prost(uint32, tag = "5")] + pub kdlpeighjak: u32, } /// Obf: MAHJCOPDGDM #[derive(proto_derive::CmdID)] -#[cmdid(8120)] +#[cmdid(8105)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SwitchHandUpdateCsReq { - #[prost(message, optional, tag = "14")] - pub opbhjagoagg: ::core::option::Option, - #[prost(message, optional, tag = "11")] + #[prost(message, optional, tag = "3")] pub clbmgbfanlc: ::core::option::Option, + #[prost(message, optional, tag = "9")] + pub opbhjagoagg: ::core::option::Option, } /// Obf: CGAJJADDPCI #[derive(proto_derive::CmdID)] -#[cmdid(8109)] +#[cmdid(8103)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SwitchHandUpdateScRsp { - #[prost(uint32, tag = "10")] - pub retcode: u32, - #[prost(message, optional, tag = "4")] - pub cmfmacmipee: ::core::option::Option, - #[prost(message, optional, tag = "2")] + #[prost(message, optional, tag = "11")] pub clbmgbfanlc: ::core::option::Option, + #[prost(uint32, tag = "8")] + pub retcode: u32, + #[prost(message, optional, tag = "6")] + pub cmfmacmipee: ::core::option::Option, } /// Obf: MMANBFNCBDO #[derive(proto_derive::CmdID)] -#[cmdid(8107)] +#[cmdid(8114)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SwitchHandCoinUpdateCsReq { - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "3")] pub mcbiohmimgn: u32, } /// Obf: BBKEFFCLBML #[derive(proto_derive::CmdID)] -#[cmdid(8103)] +#[cmdid(8119)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SwitchHandCoinUpdateScRsp { - #[prost(uint32, tag = "9")] - pub mcbiohmimgn: u32, - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "15")] pub retcode: u32, + #[prost(uint32, tag = "5")] + pub mcbiohmimgn: u32, } /// Obf: DKPOABHCEAK #[derive(proto_derive::CmdID)] -#[cmdid(8105)] +#[cmdid(8112)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SwitchHandResetHandPosCsReq { - #[prost(message, optional, tag = "13")] + #[prost(message, optional, tag = "5")] pub ofolpkmalgi: ::core::option::Option, - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "15")] pub config_id: u32, } /// Obf: CNFOMDLCLMB #[derive(proto_derive::CmdID)] -#[cmdid(8101)] +#[cmdid(8106)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SwitchHandResetHandPosScRsp { - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "8")] pub retcode: u32, - #[prost(message, optional, tag = "15")] + #[prost(message, optional, tag = "12")] pub lbomdfhffcf: ::core::option::Option, } /// Obf: DBLBNBLLGLN #[derive(proto_derive::CmdID)] -#[cmdid(8111)] +#[cmdid(8113)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SwitchHandResetGameCsReq { - #[prost(message, optional, tag = "5")] + #[prost(message, optional, tag = "2")] pub dpjncbbohke: ::core::option::Option, } /// Obf: DLHEAHANALL #[derive(proto_derive::CmdID)] -#[cmdid(8119)] +#[cmdid(8115)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SwitchHandResetGameScRsp { - #[prost(message, optional, tag = "10")] - pub lbomdfhffcf: ::core::option::Option, - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "13")] pub retcode: u32, + #[prost(message, optional, tag = "5")] + pub lbomdfhffcf: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Alefdnllklb { - #[prost(message, optional, tag = "11")] - pub kndmeilhkej: ::core::option::Option, - #[prost(message, optional, tag = "13")] + #[prost(message, optional, tag = "3")] pub nncjoeckcka: ::core::option::Option, - #[prost(message, optional, tag = "5")] + #[prost(message, optional, tag = "6")] pub skill_info: ::core::option::Option, - #[prost(uint32, repeated, tag = "4")] - pub fdeigepccbp: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "7")] - pub eenjbpmndol: u32, - #[prost(message, optional, tag = "9")] - pub gbeabimobic: ::core::option::Option, - #[prost(message, optional, tag = "14")] + #[prost(message, optional, tag = "5")] pub afpdjdkneni: ::core::option::Option, - #[prost(message, optional, tag = "2")] + #[prost(message, optional, tag = "10")] pub ljgcpnogifo: ::core::option::Option, + #[prost(uint32, repeated, tag = "13")] + pub fdeigepccbp: ::prost::alloc::vec::Vec, + #[prost(message, optional, tag = "1")] + pub kndmeilhkej: ::core::option::Option, + #[prost(uint32, tag = "4")] + pub eenjbpmndol: u32, + #[prost(message, optional, tag = "8")] + pub gbeabimobic: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Gjbniiinkfb { - #[prost(uint32, repeated, tag = "3")] - pub cckhkbnmapn: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "3")] pub bilegelkmcb: u32, - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "7")] pub mcegaibnmgb: u32, + #[prost(uint32, repeated, tag = "6")] + pub cckhkbnmapn: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Pgggcfbkdpk { - #[prost(uint32, repeated, tag = "1")] + #[prost(uint32, tag = "15")] + pub game_story_line_id: u32, + #[prost(uint32, repeated, tag = "9")] pub cnbckefnfge: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "14")] - pub emdhekkocmd: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Mmoibacbpka { - #[prost(enumeration = "Hdijjmdpile", tag = "1")] - pub pjgbfknjpno: i32, - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "14")] pub value: u32, + #[prost(enumeration = "Hdijjmdpile", tag = "5")] + pub pjgbfknjpno: i32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Bppmeigahgi { - #[prost(message, repeated, tag = "14")] + #[prost(message, repeated, tag = "15")] pub migfmpjbelg: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "3")] pub iomgdikelia: u32, #[prost(uint32, tag = "10")] pub pdmdkapcojm: u32, @@ -30151,9 +31563,9 @@ pub struct Bppmeigahgi { #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Leehjgnbgnk { #[prost(uint32, tag = "15")] - pub level: u32, - #[prost(uint32, tag = "10")] pub hbapccegnme: u32, + #[prost(uint32, tag = "3")] + pub level: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] @@ -30164,70 +31576,70 @@ pub struct Ocbolhfoigi { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Dmjlkifemmn { - #[prost(uint32, tag = "1245")] + #[prost(uint32, tag = "334")] pub ighlabggije: u32, - #[prost(oneof = "dmjlkifemmn::Buff", tags = "10, 11")] - pub buff: ::core::option::Option, + #[prost(oneof = "dmjlkifemmn::Info", tags = "11, 13")] + pub info: ::core::option::Option, } /// Nested message and enum types in `DMJLKIFEMMN`. pub mod dmjlkifemmn { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum Buff { - #[prost(message, tag = "10")] - Gaibhjhdohb(super::Klinpbnkiia), + pub enum Info { #[prost(message, tag = "11")] + Gaibhjhdohb(super::Klinpbnkiia), + #[prost(message, tag = "13")] Kpjafbcpegi(super::Pbmkkicmlda), } } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Piibojcejjn { - #[prost(uint32, tag = "6")] - pub colbgejelgi: u32, - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "8")] pub gimlndloffa: u32, + #[prost(uint32, tag = "11")] + pub colbgejelgi: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Klinpbnkiia { - #[prost(enumeration = "Bjncdefeeji", tag = "3")] - pub ccljmnckecp: i32, - #[prost(uint32, repeated, tag = "9")] + #[prost(uint32, repeated, tag = "15")] pub eijdeopofnb: ::prost::alloc::vec::Vec, #[prost(message, repeated, tag = "14")] pub dncbpcenkif: ::prost::alloc::vec::Vec, + #[prost(enumeration = "Bjncdefeeji", tag = "13")] + pub ccljmnckecp: i32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Pbmkkicmlda { - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "6")] pub fhbomfblgpd: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Jkmfmmpmnam { - #[prost(oneof = "jkmfmmpmnam::Buff", tags = "14, 10, 4, 9, 15, 12, 8, 1")] - pub buff: ::core::option::Option, + #[prost(oneof = "jkmfmmpmnam::Info", tags = "11, 12, 3, 5, 15, 2, 13, 1")] + pub info: ::core::option::Option, } /// Nested message and enum types in `JKMFMMPMNAM`. pub mod jkmfmmpmnam { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Oneof)] - pub enum Buff { - #[prost(message, tag = "14")] + pub enum Info { + #[prost(message, tag = "11")] Kangpcokfne(super::Dpdiegoagbp), - #[prost(message, tag = "10")] + #[prost(message, tag = "12")] Hhcifnfmkla(super::Fpegpjceoei), - #[prost(message, tag = "4")] + #[prost(message, tag = "3")] Ocgplmnkmlk(super::Fkhfonpkdip), - #[prost(message, tag = "9")] + #[prost(message, tag = "5")] Akmnkladolm(super::Aejccmeplgo), #[prost(message, tag = "15")] Kkddandlfbd(super::Nigcopghamj), - #[prost(message, tag = "12")] + #[prost(message, tag = "2")] Affnconkekp(super::Khphaifnjei), - #[prost(message, tag = "8")] + #[prost(message, tag = "13")] Cnibngjdnjp(super::Plodidcjoka), #[prost(message, tag = "1")] Oapmklfjkkg(super::Khcakpomgnk), @@ -30242,7 +31654,7 @@ pub struct Fpegpjceoei {} #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Fkhfonpkdip { - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "7")] pub dgaklnofdpp: u32, } #[derive(proto_derive::CmdID)] @@ -30251,9 +31663,9 @@ pub struct Aejccmeplgo {} #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Nigcopghamj { - #[prost(bool, tag = "6")] + #[prost(bool, tag = "4")] pub hhgapdfindi: bool, - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "12")] pub bglehmkmapg: u32, } #[derive(proto_derive::CmdID)] @@ -30265,608 +31677,608 @@ pub struct Plodidcjoka {} #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Khcakpomgnk { - #[prost(bool, tag = "11")] - pub mmkijaemnbl: bool, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "11")] pub bglehmkmapg: u32, + #[prost(bool, tag = "1")] + pub mmkijaemnbl: bool, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Omojdeifdam { - #[prost(message, optional, tag = "1")] + #[prost(message, optional, tag = "15")] pub pbhmgchkjgo: ::core::option::Option, - #[prost(enumeration = "Pkhjbpmibba", tag = "15")] + #[prost(enumeration = "Pkhjbpmibba", tag = "4")] pub source: i32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Cghkidbjhfh { #[prost( - oneof = "cghkidbjhfh::Buff", - tags = "4, 14, 11, 3, 5, 6, 13, 8, 626, 1218, 1923, 940" + oneof = "cghkidbjhfh::Info", + tags = "8, 12, 2, 4, 3, 1, 7, 5, 678, 392, 1165, 999" )] - pub buff: ::core::option::Option, + pub info: ::core::option::Option, } /// Nested message and enum types in `CGHKIDBJHFH`. pub mod cghkidbjhfh { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum Buff { - #[prost(message, tag = "4")] + pub enum Info { + #[prost(message, tag = "8")] Pjabkifdnnd(super::Nlcalklpgog), - #[prost(message, tag = "14")] + #[prost(message, tag = "12")] Nihifemokam(super::Ojlehppjbbc), - #[prost(message, tag = "11")] + #[prost(message, tag = "2")] Mlcgalihaip(super::Ojlehppjbbc), - #[prost(message, tag = "3")] + #[prost(message, tag = "4")] Bidddnipble(super::Ocjgnpifobm), - #[prost(message, tag = "5")] + #[prost(message, tag = "3")] Dijhpehonok(super::Nmenkignbca), - #[prost(message, tag = "6")] + #[prost(message, tag = "1")] Edhbkecgoli(super::Nigcopghamj), - #[prost(message, tag = "13")] + #[prost(message, tag = "7")] Mfhbhkimdca(super::Hjkdngihmaa), - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "5")] Npfpajlclnn(u32), - #[prost(uint32, tag = "626")] + #[prost(uint32, tag = "678")] Iomgdikelia(u32), - #[prost(message, tag = "1218")] + #[prost(message, tag = "392")] Gkahdhelild(super::Khcakpomgnk), - #[prost(message, tag = "1923")] + #[prost(message, tag = "1165")] Gnpeameljdj(super::Khphaifnjei), - #[prost(uint32, tag = "940")] + #[prost(uint32, tag = "999")] Cbakihcdenp(u32), } } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Hjkdngihmaa { - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "11")] pub dgaklnofdpp: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Nlcalklpgog { - #[prost(enumeration = "Hdijjmdpile", tag = "8")] + #[prost(enumeration = "Hdijjmdpile", tag = "12")] pub pjgbfknjpno: i32, - #[prost(uint32, tag = "1")] - pub bmalpkekbel: u32, - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "2")] pub ogjofmcmfpg: u32, + #[prost(uint32, tag = "15")] + pub bmalpkekbel: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Ojlehppjbbc { - #[prost(uint32, tag = "7")] - pub bmalpkekbel: u32, - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "2")] pub ogjofmcmfpg: u32, + #[prost(uint32, tag = "10")] + pub bmalpkekbel: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Ocjgnpifobm { - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "5")] pub gffbdandhmk: u32, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "14")] pub level: u32, - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "11")] pub hbapccegnme: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Nmenkignbca { - #[prost(message, optional, tag = "4")] + #[prost(message, optional, tag = "5")] pub ifnmbngifph: ::core::option::Option, - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "10")] pub eenjbpmndol: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Fgpbibijcoh { - #[prost(uint32, tag = "15")] - pub bglehmkmapg: u32, - #[prost(bool, tag = "14")] + #[prost(bool, tag = "13")] pub hhgapdfindi: bool, + #[prost(uint32, tag = "10")] + pub bglehmkmapg: u32, } /// Obf: ELFHACGFJLA #[derive(proto_derive::CmdID)] -#[cmdid(7454)] +#[cmdid(7499)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SwordTrainingGameSyncChangeScNotify { - #[prost(message, repeated, tag = "3")] + #[prost(message, repeated, tag = "1")] pub leadmneimdp: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Hdfkpeebgen { - #[prost(uint32, tag = "8")] - pub progress: u32, - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "14")] pub id: u32, + #[prost(uint32, tag = "10")] + pub progress: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Nokodmnohmn { - #[prost(message, repeated, tag = "2")] + #[prost(message, repeated, tag = "6")] pub nckcmgcbehk: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "8")] + #[prost(uint32, repeated, tag = "7")] pub onilffenamo: ::prost::alloc::vec::Vec, } /// Obf: LHJKEPDFKNE #[derive(proto_derive::CmdID)] -#[cmdid(7496)] +#[cmdid(7477)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetSwordTrainingDataCsReq {} /// Obf: KKBLLPIMOFE #[derive(proto_derive::CmdID)] -#[cmdid(7452)] +#[cmdid(7468)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetSwordTrainingDataScRsp { - #[prost(bool, tag = "11")] + #[prost(bool, tag = "3")] pub klbpecanfig: bool, - #[prost(message, optional, tag = "9")] - pub kjkbkegighk: ::core::option::Option, - #[prost(uint32, repeated, tag = "3")] - pub joefnhggago: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "4")] - pub dchgiodeddk: u32, - #[prost(message, optional, tag = "14")] - pub gajbfpcpigm: ::core::option::Option, - #[prost(uint32, repeated, tag = "10")] - pub fabkphmjghl: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "13")] - pub retcode: u32, - #[prost(uint32, repeated, tag = "1")] + #[prost(uint32, repeated, tag = "11")] pub cnbckefnfge: ::prost::alloc::vec::Vec, + #[prost(message, optional, tag = "1")] + pub kjkbkegighk: ::core::option::Option, + #[prost(uint32, repeated, tag = "15")] + pub fabkphmjghl: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "14")] + pub retcode: u32, + #[prost(message, optional, tag = "7")] + pub gajbfpcpigm: ::core::option::Option, + #[prost(uint32, tag = "8")] + pub dchgiodeddk: u32, + #[prost(uint32, repeated, tag = "2")] + pub joefnhggago: ::prost::alloc::vec::Vec, } /// Obf: JJLBIMDBBFO #[derive(proto_derive::CmdID)] -#[cmdid(7487)] +#[cmdid(7486)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SwordTrainingTurnActionCsReq { - #[prost(uint32, repeated, tag = "3")] - pub bhnfgpehomo: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "8")] + #[prost(uint32, repeated, tag = "7")] pub phajehibkfi: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "2")] + pub bhnfgpehomo: ::prost::alloc::vec::Vec, } /// Obf: KCEGAODICJI #[derive(proto_derive::CmdID)] -#[cmdid(7486)] +#[cmdid(7461)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SwordTrainingTurnActionScRsp { - #[prost(uint32, repeated, tag = "1")] + #[prost(uint32, repeated, tag = "2")] pub bhnfgpehomo: ::prost::alloc::vec::Vec, #[prost(uint32, tag = "6")] pub retcode: u32, } /// Obf: FGKECAODGEJ #[derive(proto_derive::CmdID)] -#[cmdid(7467)] +#[cmdid(7487)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SwordTrainingDailyPhaseConfirmCsReq { - #[prost(enumeration = "Bjncdefeeji", tag = "5")] + #[prost(enumeration = "Bjncdefeeji", tag = "15")] pub ifenlnhlbab: i32, } /// Obf: PEGEPJMHJIB #[derive(proto_derive::CmdID)] -#[cmdid(7477)] +#[cmdid(7467)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SwordTrainingDailyPhaseConfirmScRsp { - #[prost(uint32, tag = "5")] - pub retcode: u32, - #[prost(bool, tag = "12")] + #[prost(bool, tag = "6")] pub mllaefjemcf: bool, + #[prost(uint32, tag = "7")] + pub retcode: u32, } /// Obf: LPNMKOBGOGP #[derive(proto_derive::CmdID)] -#[cmdid(7465)] +#[cmdid(7489)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SwordTrainingDialogueSelectOptionCsReq { - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "13")] pub kdmlllghjon: u32, } /// Obf: AOGGAIFEDNB #[derive(proto_derive::CmdID)] -#[cmdid(7493)] +#[cmdid(7462)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SwordTrainingDialogueSelectOptionScRsp { - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "8")] pub retcode: u32, } /// Obf: CPECMGMHIDJ #[derive(proto_derive::CmdID)] -#[cmdid(7464)] +#[cmdid(7459)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SwordTrainingExamResultConfirmCsReq {} /// Obf: BBOJCPFOMIK #[derive(proto_derive::CmdID)] -#[cmdid(7458)] +#[cmdid(7500)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SwordTrainingExamResultConfirmScRsp { - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "15")] pub retcode: u32, } /// Obf: PCMEEBKMAHE #[derive(proto_derive::CmdID)] -#[cmdid(7490)] +#[cmdid(7469)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct EnterSwordTrainingExamCsReq {} /// Obf: DLMIPAJAPDF #[derive(proto_derive::CmdID)] -#[cmdid(7470)] +#[cmdid(7476)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct EnterSwordTrainingExamScRsp { - #[prost(message, optional, tag = "14")] + #[prost(message, optional, tag = "5")] pub battle_info: ::core::option::Option, - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "2")] pub retcode: u32, } /// Obf: EAPONEPJPJP #[derive(proto_derive::CmdID)] -#[cmdid(7494)] +#[cmdid(7484)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SwordTrainingLearnSkillCsReq { - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "3")] pub skill_id: u32, } /// Obf: JEADDDHEHND #[derive(proto_derive::CmdID)] -#[cmdid(7482)] +#[cmdid(7496)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SwordTrainingLearnSkillScRsp { - #[prost(uint32, tag = "5")] - pub skill_id: u32, #[prost(uint32, tag = "12")] pub retcode: u32, + #[prost(uint32, tag = "4")] + pub skill_id: u32, } /// Obf: JIKIHMKJIEO #[derive(proto_derive::CmdID)] -#[cmdid(7473)] +#[cmdid(7472)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SwordTrainingStartGameCsReq { - #[prost(uint32, tag = "10")] - pub emdhekkocmd: u32, + #[prost(uint32, tag = "14")] + pub game_story_line_id: u32, } /// Obf: MFCGPEOMKJE #[derive(proto_derive::CmdID)] -#[cmdid(7476)] +#[cmdid(7475)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SwordTrainingStartGameScRsp { - #[prost(uint32, tag = "5")] - pub retcode: u32, #[prost(message, optional, tag = "3")] pub gajbfpcpigm: ::core::option::Option, -} -/// Obf: LOAPBEMIDAM -#[derive(proto_derive::CmdID)] -#[cmdid(7472)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SwordTrainingStoryConfirmCsReq { - #[prost(uint32, tag = "12")] - pub bglehmkmapg: u32, -} -/// Obf: JENLLNIJOBE -#[derive(proto_derive::CmdID)] -#[cmdid(7466)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SwordTrainingStoryConfirmScRsp { - #[prost(uint32, tag = "5")] - pub retcode: u32, - #[prost(uint32, tag = "9")] - pub bglehmkmapg: u32, -} -/// Obf: JJKIJLKPOKL -#[derive(proto_derive::CmdID)] -#[cmdid(7492)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SwordTrainingGiveUpGameCsReq {} -/// Obf: OEIGKGMBLBG -#[derive(proto_derive::CmdID)] -#[cmdid(7479)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SwordTrainingGiveUpGameScRsp { - #[prost(uint32, tag = "15")] - pub retcode: u32, -} -/// Obf: DGNDIFJABGO -#[derive(proto_derive::CmdID)] -#[cmdid(7468)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct SwordTrainingGameSettleScNotify { - #[prost(uint32, tag = "7")] - pub pigeebckcoo: u32, - #[prost(uint32, repeated, tag = "15")] - pub ppimfpoookb: ::prost::alloc::vec::Vec, - #[prost(message, optional, tag = "12")] - pub reward: ::core::option::Option, - #[prost(uint32, tag = "11")] - pub emdhekkocmd: u32, - #[prost(enumeration = "Hdmkphalalg", tag = "10")] - pub reason: i32, - #[prost(uint32, tag = "8")] - pub fpbnipmhanh: u32, - #[prost(uint32, tag = "3")] - pub ifnmbngifph: u32, - #[prost(uint32, repeated, tag = "1")] - pub ccdchkkmgjf: ::prost::alloc::vec::Vec, -} -/// Obf: ENFADGFGDBJ -#[derive(proto_derive::CmdID)] -#[cmdid(7451)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct SwordTrainingUnlockSyncScNotify { - #[prost(message, repeated, tag = "6")] - pub nckcmgcbehk: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "14")] - pub onilffenamo: ::prost::alloc::vec::Vec, -} -/// Obf: MKHLGDKELHO -#[derive(proto_derive::CmdID)] -#[cmdid(7489)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SwordTrainingSelectEndingCsReq { - #[prost(uint32, tag = "12")] - pub decjmbhnnhd: u32, -} -/// Obf: KFLBGENLBFF -#[derive(proto_derive::CmdID)] -#[cmdid(7461)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SwordTrainingSelectEndingScRsp { - #[prost(uint32, tag = "5")] - pub retcode: u32, - #[prost(uint32, tag = "10")] - pub decjmbhnnhd: u32, -} -/// Obf: CJHKGENFDCH -#[derive(proto_derive::CmdID)] -#[cmdid(7456)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SwordTrainingRestoreGameCsReq {} -/// Obf: FHBBIAGBEJI -#[derive(proto_derive::CmdID)] -#[cmdid(7471)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct SwordTrainingRestoreGameScRsp { - #[prost(uint32, tag = "13")] - pub retcode: u32, - #[prost(message, optional, tag = "15")] - pub gajbfpcpigm: ::core::option::Option, -} -/// Obf: CCMJFLHNGGI -#[derive(proto_derive::CmdID)] -#[cmdid(7460)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SwordTrainingStoryBattleCsReq {} -/// Obf: HIOHBJOANDD -#[derive(proto_derive::CmdID)] -#[cmdid(7469)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct SwordTrainingStoryBattleScRsp { - #[prost(uint32, tag = "15")] - pub retcode: u32, - #[prost(message, optional, tag = "14")] - pub battle_info: ::core::option::Option, -} -/// Obf: OAPHHNLJCHK -#[derive(proto_derive::CmdID)] -#[cmdid(7499)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct SwordTrainingActionTurnSettleScNotify { - #[prost(uint32, tag = "6")] - pub cgfcmknccdc: u32, - #[prost(message, repeated, tag = "13")] - pub mcccnliiibc: ::prost::alloc::vec::Vec, -} -/// Obf: NNDFDPAEKJJ -#[derive(proto_derive::CmdID)] -#[cmdid(7453)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SwordTrainingResumeGameCsReq { - #[prost(uint32, tag = "12")] - pub emdhekkocmd: u32, -} -/// Obf: EAFLOMBBLJK -#[derive(proto_derive::CmdID)] -#[cmdid(7497)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct SwordTrainingResumeGameScRsp { - #[prost(message, optional, tag = "15")] - pub gajbfpcpigm: ::core::option::Option, #[prost(uint32, tag = "14")] pub retcode: u32, } -/// Obf: OODJIEAHFBF +/// Obf: LOAPBEMIDAM +#[derive(proto_derive::CmdID)] +#[cmdid(7493)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct SwordTrainingStoryConfirmCsReq { + #[prost(uint32, tag = "3")] + pub bglehmkmapg: u32, +} +/// Obf: JENLLNIJOBE +#[derive(proto_derive::CmdID)] +#[cmdid(7480)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct SwordTrainingStoryConfirmScRsp { + #[prost(uint32, tag = "4")] + pub bglehmkmapg: u32, + #[prost(uint32, tag = "12")] + pub retcode: u32, +} +/// Obf: JJKIJLKPOKL +#[derive(proto_derive::CmdID)] +#[cmdid(7453)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct SwordTrainingGiveUpGameCsReq {} +/// Obf: OEIGKGMBLBG +#[derive(proto_derive::CmdID)] +#[cmdid(7463)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct SwordTrainingGiveUpGameScRsp { + #[prost(uint32, tag = "4")] + pub retcode: u32, +} +/// Obf: DGNDIFJABGO +#[derive(proto_derive::CmdID)] +#[cmdid(7474)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct SwordTrainingGameSettleScNotify { + #[prost(message, optional, tag = "12")] + pub reward: ::core::option::Option, + #[prost(uint32, tag = "7")] + pub pigeebckcoo: u32, + #[prost(uint32, repeated, tag = "14")] + pub ccdchkkmgjf: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "11")] + pub ppimfpoookb: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "2")] + pub fpbnipmhanh: u32, + #[prost(enumeration = "Hdmkphalalg", tag = "9")] + pub reason: i32, + #[prost(uint32, tag = "3")] + pub game_story_line_id: u32, + #[prost(uint32, tag = "10")] + pub ifnmbngifph: u32, +} +/// Obf: ENFADGFGDBJ +#[derive(proto_derive::CmdID)] +#[cmdid(7464)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct SwordTrainingUnlockSyncScNotify { + #[prost(uint32, repeated, tag = "10")] + pub onilffenamo: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "8")] + pub nckcmgcbehk: ::prost::alloc::vec::Vec, +} +/// Obf: MKHLGDKELHO +#[derive(proto_derive::CmdID)] +#[cmdid(7466)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct SwordTrainingSelectEndingCsReq { + #[prost(uint32, tag = "11")] + pub decjmbhnnhd: u32, +} +/// Obf: KFLBGENLBFF #[derive(proto_derive::CmdID)] #[cmdid(7498)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct SwordTrainingSelectEndingScRsp { + #[prost(uint32, tag = "8")] + pub decjmbhnnhd: u32, + #[prost(uint32, tag = "14")] + pub retcode: u32, +} +/// Obf: CJHKGENFDCH +#[derive(proto_derive::CmdID)] +#[cmdid(7454)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct SwordTrainingRestoreGameCsReq {} +/// Obf: FHBBIAGBEJI +#[derive(proto_derive::CmdID)] +#[cmdid(7485)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct SwordTrainingRestoreGameScRsp { + #[prost(message, optional, tag = "5")] + pub gajbfpcpigm: ::core::option::Option, + #[prost(uint32, tag = "10")] + pub retcode: u32, +} +/// Obf: CCMJFLHNGGI +#[derive(proto_derive::CmdID)] +#[cmdid(7471)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct SwordTrainingStoryBattleCsReq {} +/// Obf: HIOHBJOANDD +#[derive(proto_derive::CmdID)] +#[cmdid(7492)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct SwordTrainingStoryBattleScRsp { + #[prost(uint32, tag = "13")] + pub retcode: u32, + #[prost(message, optional, tag = "1")] + pub battle_info: ::core::option::Option, +} +/// Obf: OAPHHNLJCHK +#[derive(proto_derive::CmdID)] +#[cmdid(7497)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct SwordTrainingActionTurnSettleScNotify { + #[prost(message, repeated, tag = "11")] + pub mcccnliiibc: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "5")] + pub cgfcmknccdc: u32, +} +/// Obf: NNDFDPAEKJJ +#[derive(proto_derive::CmdID)] +#[cmdid(7455)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct SwordTrainingResumeGameCsReq { + #[prost(uint32, tag = "10")] + pub game_story_line_id: u32, +} +/// Obf: EAFLOMBBLJK +#[derive(proto_derive::CmdID)] +#[cmdid(7452)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct SwordTrainingResumeGameScRsp { + #[prost(message, optional, tag = "6")] + pub gajbfpcpigm: ::core::option::Option, + #[prost(uint32, tag = "9")] + pub retcode: u32, +} +/// Obf: OODJIEAHFBF +#[derive(proto_derive::CmdID)] +#[cmdid(7491)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SwordTrainingSetSkillTraceCsReq { - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "8")] pub skill_id: u32, } /// Obf: EFPCOKHFFLP #[derive(proto_derive::CmdID)] -#[cmdid(7491)] +#[cmdid(7483)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SwordTrainingSetSkillTraceScRsp { - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "9")] pub retcode: u32, - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "4")] pub skill_id: u32, } /// Obf: KPMHLMPAFHH #[derive(proto_derive::CmdID)] -#[cmdid(7483)] +#[cmdid(7494)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SwordTrainingMarkEndingViewedCsReq {} /// Obf: FDMEPFLFBKM #[derive(proto_derive::CmdID)] -#[cmdid(7481)] +#[cmdid(7465)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SwordTrainingMarkEndingViewedScRsp { - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "15")] pub retcode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Blpmhfgioac { #[prost(uint32, tag = "7")] - pub stamina: u32, - #[prost(uint32, tag = "13")] pub keneknbjgmg: u32, + #[prost(uint32, tag = "15")] + pub stamina: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct BoardDataSync { - #[prost(string, tag = "8")] - pub signature: ::prost::alloc::string::String, - #[prost(bool, tag = "2")] - pub pagjkdjigpi: bool, - #[prost(message, repeated, tag = "10")] + #[prost(message, repeated, tag = "6")] pub unlocked_head_icon_list: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "12")] + #[prost(bool, tag = "11")] + pub pagjkdjigpi: bool, + #[prost(uint32, repeated, tag = "14")] pub almmhkfkhlk: ::prost::alloc::vec::Vec, + #[prost(string, tag = "9")] + pub signature: ::prost::alloc::string::String, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct AvatarSync { - #[prost(message, repeated, tag = "1")] + #[prost(message, repeated, tag = "2")] pub avatar_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MissionSync { - #[prost(uint32, repeated, tag = "9")] - pub hnepoedcidk: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "15")] - pub mcfonopkokd: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "3")] + pub ejbggjonbol: ::prost::alloc::vec::Vec, #[prost(message, repeated, tag = "11")] pub gaegmbiogoh: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "7")] + #[prost(message, repeated, tag = "13")] pub mission_list: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "10")] - pub finished_mission_id: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "2")] + #[prost(uint32, repeated, tag = "5")] pub anihpckngbm: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "6")] - pub ejbggjonbol: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "7")] + pub hnepoedcidk: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "6")] + pub finished_mission_id: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "12")] + pub mcfonopkokd: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Dmbmpahkhla { - #[prost(uint32, repeated, tag = "4")] - pub dingkfdbcjj: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "6")] + #[prost(uint32, repeated, tag = "13")] pub lkkidnjcfja: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "10")] + pub dingkfdbcjj: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Lpfmhajhdmm { - #[prost(uint32, repeated, tag = "14")] - pub cngldjnpopi: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "7")] + #[prost(uint32, repeated, tag = "5")] pub lnejlgefple: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "15")] - pub kmmbeandijh: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "3")] + #[prost(uint32, repeated, tag = "15")] + pub cngldjnpopi: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "11")] pub omaalpkjiih: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "9")] + pub kmmbeandijh: ::prost::alloc::vec::Vec, } /// Obf: DBGAEOOJOJA #[derive(proto_derive::CmdID)] -#[cmdid(695)] +#[cmdid(620)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct PlayerSyncScNotify { - #[prost(uint32, repeated, tag = "1")] + #[prost(message, optional, tag = "5")] + pub iggogfjfpdj: ::core::option::Option, + #[prost(message, repeated, tag = "1855")] + pub igipeimgeaa: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "14")] + pub hlinmkbdknc: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "9")] pub del_relic_list: ::prost::alloc::vec::Vec, - #[prost(message, optional, tag = "3")] - pub avatar_sync: ::core::option::Option, - #[prost(uint32, repeated, tag = "526")] - pub olflkcbbjoh: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "161")] + #[prost(message, repeated, tag = "1")] + pub quest_list: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "7")] + pub equipment_list: ::prost::alloc::vec::Vec, + #[prost(message, optional, tag = "854")] + pub board_data_sync: ::core::option::Option, + #[prost(uint32, repeated, tag = "15")] + pub del_equipment_list: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "648")] + pub total_achievement_exp: u32, + #[prost(message, repeated, tag = "1169")] pub multi_path_avatar_type_info_list: ::prost::alloc::vec::Vec< MultiPathAvatarTypeInfo, >, - #[prost(message, repeated, tag = "10")] - pub material_list: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "5")] - pub del_equipment_list: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "6")] - pub quest_list: ::prost::alloc::vec::Vec, - #[prost(message, optional, tag = "14")] - pub iggogfjfpdj: ::core::option::Option, - #[prost(message, repeated, tag = "1611")] - pub fcokffeapmi: ::prost::alloc::vec::Vec, - #[prost(message, optional, tag = "8")] - pub basic_info: ::core::option::Option, - #[prost(message, optional, tag = "1698")] + #[prost(uint32, repeated, tag = "1930")] + pub olflkcbbjoh: ::prost::alloc::vec::Vec, + #[prost(message, optional, tag = "1887")] pub omjopkgjplg: ::core::option::Option, - #[prost(uint32, tag = "920")] - pub total_achievement_exp: u32, - #[prost(message, repeated, tag = "9")] - pub equipment_list: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "11")] - pub relic_list: ::prost::alloc::vec::Vec, - #[prost(message, optional, tag = "1333")] - pub bkebjfipjeh: ::core::option::Option, - #[prost(message, repeated, tag = "177")] - pub igipeimgeaa: ::prost::alloc::vec::Vec, - #[prost(message, optional, tag = "740")] - pub board_data_sync: ::core::option::Option, - #[prost(message, optional, tag = "510")] - pub mjoklhfpgad: ::core::option::Option, - #[prost(message, repeated, tag = "7")] - pub hlinmkbdknc: ::prost::alloc::vec::Vec, - #[prost(message, optional, tag = "2")] + #[prost(message, optional, tag = "4")] pub gejlekbbfnc: ::core::option::Option, + #[prost(message, repeated, tag = "2009")] + pub fcokffeapmi: ::prost::alloc::vec::Vec, + #[prost(message, optional, tag = "3")] + pub basic_info: ::core::option::Option, + #[prost(message, optional, tag = "10")] + pub avatar_sync: ::core::option::Option, + #[prost(message, optional, tag = "1687")] + pub bkebjfipjeh: ::core::option::Option, + #[prost(message, repeated, tag = "6")] + pub material_list: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "13")] + pub relic_list: ::prost::alloc::vec::Vec, + #[prost(message, optional, tag = "142")] + pub mjoklhfpgad: ::core::option::Option, } /// Obf: NCIPMMDBMFO #[derive(proto_derive::CmdID)] -#[cmdid(2195)] +#[cmdid(2120)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetNpcTakenRewardCsReq { - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "7")] pub npc_id: u32, } /// Obf: CGLKMNBLCJE #[derive(proto_derive::CmdID)] -#[cmdid(2132)] +#[cmdid(2191)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetNpcTakenRewardScRsp { - #[prost(uint32, tag = "4")] - pub npc_id: u32, - #[prost(uint32, repeated, tag = "10")] - pub iifaoneejck: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "11")] pub retcode: u32, + #[prost(uint32, repeated, tag = "8")] + pub iifaoneejck: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "2")] + pub npc_id: u32, } /// Obf: KBCCBPPBMAJ #[derive(proto_derive::CmdID)] -#[cmdid(2131)] +#[cmdid(2167)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TakeTalkRewardCsReq { - #[prost(message, optional, tag = "9")] + #[prost(message, optional, tag = "7")] pub olconcnjmmp: ::core::option::Option, - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "13")] pub iemoeoimhma: u32, } /// Obf: KDPLIJBIDGG #[derive(proto_derive::CmdID)] -#[cmdid(2140)] +#[cmdid(2139)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TakeTalkRewardScRsp { - #[prost(message, optional, tag = "9")] + #[prost(message, optional, tag = "15")] pub reward: ::core::option::Option, - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "13")] pub retcode: u32, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "1")] pub iemoeoimhma: u32, } /// Obf: ICIAIKMGAHC #[derive(proto_derive::CmdID)] -#[cmdid(2176)] +#[cmdid(2127)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetFirstTalkNpcCsReq { - #[prost(uint32, repeated, tag = "9")] + #[prost(uint32, repeated, tag = "11")] pub npc_id_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] @@ -30874,402 +32286,444 @@ pub struct GetFirstTalkNpcCsReq { pub struct FirstNpcTalkInfo { #[prost(uint32, tag = "5")] pub npc_id: u32, - #[prost(bool, tag = "4")] + #[prost(bool, tag = "1")] pub iagodfdjaik: bool, } /// Obf: ALHBIKAJFLD #[derive(proto_derive::CmdID)] -#[cmdid(2148)] +#[cmdid(2121)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetFirstTalkNpcScRsp { - #[prost(message, repeated, tag = "9")] + #[prost(message, repeated, tag = "5")] pub npc_talk_info_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "9")] pub retcode: u32, } /// Obf: ILNJIODJHKG #[derive(proto_derive::CmdID)] -#[cmdid(2171)] +#[cmdid(2170)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct FinishFirstTalkNpcCsReq { - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "14")] pub npc_id: u32, } /// Obf: PPEGBECCDPK #[derive(proto_derive::CmdID)] -#[cmdid(2152)] +#[cmdid(2159)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct FinishFirstTalkNpcScRsp { - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "4")] pub npc_id: u32, - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "11")] pub retcode: u32, } /// Obf: OJJHHHGOMNH #[derive(proto_derive::CmdID)] -#[cmdid(2122)] +#[cmdid(2154)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SelectInclinationTextCsReq { - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "13")] pub pkdcpmnagbc: u32, } /// Obf: KIHHNLOOGAG #[derive(proto_derive::CmdID)] -#[cmdid(2156)] +#[cmdid(2177)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SelectInclinationTextScRsp { - #[prost(uint32, tag = "11")] - pub retcode: u32, #[prost(uint32, tag = "10")] + pub retcode: u32, + #[prost(uint32, tag = "2")] pub pkdcpmnagbc: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct NpcTalkInfo { - #[prost(uint32, tag = "15")] - pub npc_talk_id: u32, - #[prost(bool, tag = "4")] + #[prost(bool, tag = "6")] pub iagodfdjaik: bool, + #[prost(uint32, tag = "8")] + pub npc_talk_id: u32, } /// Obf: JBMHEKHJDPP #[derive(proto_derive::CmdID)] -#[cmdid(2172)] +#[cmdid(2180)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetFirstTalkByPerformanceNpcCsReq { - #[prost(uint32, repeated, tag = "6")] + #[prost(uint32, repeated, tag = "13")] pub npc_talk_list: ::prost::alloc::vec::Vec, } /// Obf: LHKKJHDMOEK #[derive(proto_derive::CmdID)] -#[cmdid(2185)] +#[cmdid(2102)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetFirstTalkByPerformanceNpcScRsp { - #[prost(message, repeated, tag = "14")] - pub npc_talk_info_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "5")] pub retcode: u32, + #[prost(message, repeated, tag = "13")] + pub npc_talk_info_list: ::prost::alloc::vec::Vec, } /// Obf: BCOFMAKPDMJ #[derive(proto_derive::CmdID)] -#[cmdid(2116)] +#[cmdid(2105)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct FinishFirstTalkByPerformanceNpcCsReq { - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "12")] pub npc_talk_id: u32, } /// Obf: PCBEHBGJJHO #[derive(proto_derive::CmdID)] -#[cmdid(2146)] +#[cmdid(2174)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct FinishFirstTalkByPerformanceNpcScRsp { - #[prost(message, optional, tag = "6")] - pub reward: ::core::option::Option, - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "15")] pub retcode: u32, - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "8")] pub npc_talk_id: u32, + #[prost(message, optional, tag = "2")] + pub reward: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Ejdgknkhkhh { - #[prost(uint32, tag = "14")] - pub id: u32, - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "10")] pub level: u32, + #[prost(uint32, tag = "2")] + pub id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Bkmgdphacke { - #[prost(uint32, tag = "3")] - pub id: u32, - #[prost(bool, tag = "15")] + #[prost(bool, tag = "5")] pub biinncndpcg: bool, + #[prost(uint32, tag = "1")] + pub id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Floickmnmll { - #[prost(message, repeated, tag = "4")] + #[prost(message, repeated, tag = "7")] pub dgpejfljnoj: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "11")] + #[prost(message, repeated, tag = "13")] pub cnijnmdgedd: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Ofdgogdbhac { - #[prost(uint32, repeated, tag = "6")] + #[prost(uint32, repeated, tag = "11")] + pub omicajeoljf: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "4")] pub libllkbldch: ::prost::alloc::vec::Vec, } /// Obf: AGOOPHCEBGA #[derive(proto_derive::CmdID)] -#[cmdid(8154)] +#[cmdid(8158)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TarotBookGetDataCsReq {} /// Obf: FEAOPDEBLKH #[derive(proto_derive::CmdID)] -#[cmdid(8153)] +#[cmdid(8149)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TarotBookGetDataScRsp { - #[prost(map = "uint32, uint32", tag = "1")] - pub jkemdjiamhi: ::std::collections::HashMap, #[prost(uint32, tag = "3")] - pub retcode: u32, - #[prost(message, optional, tag = "12")] + pub lenpidmpecp: u32, + #[prost(message, optional, tag = "9")] pub hefjejhojea: ::core::option::Option, - #[prost(map = "uint32, uint32", tag = "5")] + #[prost(uint32, tag = "14")] + pub retcode: u32, + #[prost(map = "uint32, uint32", tag = "6")] pub ndcjjpgnfln: ::std::collections::HashMap, - #[prost(message, optional, tag = "15")] - pub ipninopekbp: ::core::option::Option, - #[prost(uint32, tag = "4")] - pub fdckfkfkhlo: u32, - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "10")] pub energy_info: u32, + #[prost(message, optional, tag = "5")] + pub ipninopekbp: ::core::option::Option, + #[prost(map = "uint32, uint32", tag = "11")] + pub jkemdjiamhi: ::std::collections::HashMap, + #[prost(uint32, tag = "13")] + pub fdckfkfkhlo: u32, } /// Obf: JKKNJEBJOAE #[derive(proto_derive::CmdID)] -#[cmdid(8148)] +#[cmdid(8150)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TarotBookOpenPackCsReq {} /// Obf: CEJEJDMNDMC #[derive(proto_derive::CmdID)] -#[cmdid(8150)] +#[cmdid(8156)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TarotBookOpenPackScRsp { - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "2")] pub fdckfkfkhlo: u32, - #[prost(map = "uint32, uint32", tag = "11")] + #[prost(map = "uint32, uint32", tag = "9")] pub cjencdiflcf: ::std::collections::HashMap, - #[prost(map = "uint32, uint32", tag = "13")] - pub iikbcnbjkki: ::std::collections::HashMap, - #[prost(uint32, tag = "12")] - pub retcode: u32, - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "5")] pub energy_info: u32, + #[prost(uint32, tag = "13")] + pub lenpidmpecp: u32, + #[prost(map = "uint32, uint32", tag = "6")] + pub iikbcnbjkki: ::std::collections::HashMap, + #[prost(uint32, tag = "1")] + pub retcode: u32, } /// Obf: IANILBPCLKD #[derive(proto_derive::CmdID)] -#[cmdid(8144)] +#[cmdid(8147)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TarotBookUnlockStoryCsReq { - #[prost(uint32, repeated, tag = "4")] + #[prost(uint32, repeated, tag = "9")] pub ppimfpoookb: ::prost::alloc::vec::Vec, } /// Obf: OPPAPMHJMPI #[derive(proto_derive::CmdID)] -#[cmdid(8142)] +#[cmdid(8151)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TarotBookUnlockStoryScRsp { - #[prost(map = "uint32, uint32", tag = "15")] - pub ndcjjpgnfln: ::std::collections::HashMap, - #[prost(map = "uint32, uint32", tag = "10")] + #[prost(map = "uint32, uint32", tag = "14")] pub jkemdjiamhi: ::std::collections::HashMap, - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "10")] pub retcode: u32, - #[prost(message, optional, tag = "14")] + #[prost(message, optional, tag = "13")] pub ppdggociede: ::core::option::Option, - #[prost(uint32, repeated, tag = "1")] + #[prost(map = "uint32, uint32", tag = "1")] + pub ndcjjpgnfln: ::std::collections::HashMap, + #[prost(uint32, repeated, tag = "12")] pub ppimfpoookb: ::prost::alloc::vec::Vec, } /// Obf: KPDNPGFDOBI #[derive(proto_derive::CmdID)] -#[cmdid(8160)] +#[cmdid(8145)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TarotBookFinishStoryCsReq { - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "15")] pub bglehmkmapg: u32, } /// Obf: PMGLNLDDNJE #[derive(proto_derive::CmdID)] -#[cmdid(8149)] +#[cmdid(8143)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TarotBookFinishStoryScRsp { - #[prost(uint32, tag = "15")] - pub retcode: u32, - #[prost(message, optional, tag = "13")] - pub hefjejhojea: ::core::option::Option, - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "6")] pub bglehmkmapg: u32, + #[prost(uint32, tag = "1")] + pub retcode: u32, + #[prost(message, optional, tag = "4")] + pub hefjejhojea: ::core::option::Option, } /// Obf: HDMJLGMDIFG #[derive(proto_derive::CmdID)] -#[cmdid(8147)] +#[cmdid(8154)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TarotBookModifyEnergyScNotify { - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "2")] pub lplhiabdbbg: u32, - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "7")] pub energy_info: u32, } /// Obf: LDDNFMIHEEH #[derive(proto_derive::CmdID)] -#[cmdid(8143)] +#[cmdid(8159)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TarotBookFinishInteractionCsReq { - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "15")] pub nblhjjjegno: u32, } /// Obf: EKPJDGCKGMN #[derive(proto_derive::CmdID)] -#[cmdid(8145)] +#[cmdid(8152)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TarotBookFinishInteractionScRsp { - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "15")] pub retcode: u32, - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "7")] pub nblhjjjegno: u32, } +/// Obf: HDMNIODNJOL +#[derive(proto_derive::CmdID)] +#[cmdid(8146)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct TarotBookUnlockInteractionCsReq { + #[prost(uint32, repeated, tag = "12")] + pub ohkhpolfibp: ::prost::alloc::vec::Vec, +} +/// Obf: IIHIHBAIIAF +#[derive(proto_derive::CmdID)] +#[cmdid(8153)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct TarotBookUnlockInteractionScRsp { + #[prost(uint32, repeated, tag = "1")] + pub ohkhpolfibp: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "5")] + pub retcode: u32, +} +/// Obf: EFNDOPHMABP +#[derive(proto_derive::CmdID)] +#[cmdid(8155)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct TarotBookSyncDataScNotify { + #[prost(uint32, tag = "14")] + pub lenpidmpecp: u32, + #[prost(map = "uint32, uint32", tag = "7")] + pub jkemdjiamhi: ::std::collections::HashMap, + #[prost(uint32, tag = "11")] + pub energy_info: u32, + #[prost(message, optional, tag = "6")] + pub hefjejhojea: ::core::option::Option, + #[prost(map = "uint32, uint32", tag = "2")] + pub ndcjjpgnfln: ::std::collections::HashMap, + #[prost(uint32, tag = "10")] + pub fdckfkfkhlo: u32, +} #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Ogjdnlijkfb { #[prost(uint32, tag = "13")] - pub kegcjppokbk: u32, - #[prost(uint32, tag = "6")] pub ninlfbglbll: u32, #[prost(uint32, tag = "8")] + pub kegcjppokbk: u32, + #[prost(uint32, tag = "7")] pub stage_score: u32, } /// Obf: KPKGBOGHIJN #[derive(proto_derive::CmdID)] -#[cmdid(6974)] +#[cmdid(6978)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetTelevisionActivityDataCsReq {} /// Obf: PHNAEIKGJHB #[derive(proto_derive::CmdID)] -#[cmdid(6973)] +#[cmdid(6969)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetTelevisionActivityDataScRsp { - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "8")] pub retcode: u32, - #[prost(message, repeated, tag = "15")] + #[prost(message, repeated, tag = "13")] pub kadgmhhgkmp: ::prost::alloc::vec::Vec, } /// Obf: LFJAAEAPBJE #[derive(proto_derive::CmdID)] -#[cmdid(6968)] +#[cmdid(6970)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TelevisionActivityDataChangeScNotify { - #[prost(message, repeated, tag = "11")] + #[prost(message, repeated, tag = "6")] pub kadgmhhgkmp: ::prost::alloc::vec::Vec, } /// Obf: JPADDPIGGCK #[derive(proto_derive::CmdID)] -#[cmdid(6962)] +#[cmdid(6971)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TelevisionActivityBattleEndScNotify { - #[prost(uint32, tag = "1")] - pub fcepipccomn: u32, - #[prost(uint32, tag = "14")] - pub hoehiobiiej: u32, - #[prost(message, optional, tag = "6")] - pub dfccbdpnlea: ::core::option::Option, - #[prost(uint32, tag = "12")] - pub fidioihllga: u32, #[prost(uint32, tag = "11")] pub npjeecedpok: u32, + #[prost(message, optional, tag = "12")] + pub dfccbdpnlea: ::core::option::Option, + #[prost(uint32, tag = "9")] + pub fidioihllga: u32, + #[prost(uint32, tag = "1")] + pub hoehiobiiej: u32, + #[prost(uint32, tag = "10")] + pub fcepipccomn: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Depeahjnkgj { - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "9")] pub avatar_id: u32, - #[prost(enumeration = "AvatarType", tag = "10")] + #[prost(enumeration = "AvatarType", tag = "7")] pub avatar_type: i32, } /// Obf: NDNCAPJMPEG #[derive(proto_derive::CmdID)] -#[cmdid(6970)] +#[cmdid(6976)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct EnterTelevisionActivityStageCsReq { - #[prost(uint32, tag = "1")] - pub ninlfbglbll: u32, - #[prost(message, repeated, tag = "8")] - pub avatar_list: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "3")] + #[prost(uint32, repeated, tag = "15")] pub buff_list: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "4")] + pub ninlfbglbll: u32, + #[prost(message, repeated, tag = "5")] + pub avatar_list: ::prost::alloc::vec::Vec, } /// Obf: AHGENONAOFK #[derive(proto_derive::CmdID)] -#[cmdid(6964)] +#[cmdid(6967)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct EnterTelevisionActivityStageScRsp { - #[prost(message, optional, tag = "4")] + #[prost(message, optional, tag = "6")] pub battle_info: ::core::option::Option, - #[prost(uint32, tag = "3")] - pub retcode: u32, - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "14")] pub ninlfbglbll: u32, + #[prost(uint32, tag = "4")] + pub retcode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TextJoinInfo { + #[prost(uint32, tag = "8")] + pub fanokembmpb: u32, + #[prost(uint32, tag = "5")] + pub adinnbpinak: u32, + #[prost(string, tag = "4")] + pub hbjkeebdjml: ::prost::alloc::string::String, #[prost(uint32, tag = "14")] pub nlfnjpmacpm: u32, - #[prost(uint32, tag = "10")] - pub adinnbpinak: u32, - #[prost(string, tag = "13")] - pub nkioiioiaog: ::prost::alloc::string::String, #[prost(string, tag = "6")] - pub hbjkeebdjml: ::prost::alloc::string::String, - #[prost(uint32, tag = "2")] - pub fanokembmpb: u32, + pub nkioiioiaog: ::prost::alloc::string::String, } /// Obf: AKOIBDEGONH #[derive(proto_derive::CmdID)] -#[cmdid(3895)] +#[cmdid(3820)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TextJoinSaveCsReq { - #[prost(string, tag = "7")] + #[prost(string, tag = "8")] pub hbjkeebdjml: ::prost::alloc::string::String, - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "12")] pub adinnbpinak: u32, - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "14")] pub fanokembmpb: u32, } /// Obf: ILLGPCDIGCM #[derive(proto_derive::CmdID)] -#[cmdid(3832)] +#[cmdid(3891)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TextJoinSaveScRsp { - #[prost(uint32, tag = "2")] - pub retcode: u32, - #[prost(string, tag = "13")] - pub hbjkeebdjml: ::prost::alloc::string::String, - #[prost(uint32, tag = "3")] - pub adinnbpinak: u32, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "4")] pub fanokembmpb: u32, + #[prost(uint32, tag = "13")] + pub retcode: u32, + #[prost(string, tag = "8")] + pub hbjkeebdjml: ::prost::alloc::string::String, + #[prost(uint32, tag = "11")] + pub adinnbpinak: u32, } /// Obf: CIMBHJDHAFO #[derive(proto_derive::CmdID)] -#[cmdid(3831)] +#[cmdid(3867)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TextJoinQueryCsReq { - #[prost(uint32, repeated, tag = "13")] + #[prost(uint32, repeated, tag = "7")] pub text_join_id_list: ::prost::alloc::vec::Vec, } /// Obf: EEELMIPKGIJ #[derive(proto_derive::CmdID)] -#[cmdid(3840)] +#[cmdid(3839)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TextJoinQueryScRsp { - #[prost(uint32, tag = "1")] - pub retcode: u32, - #[prost(message, repeated, tag = "3")] + #[prost(message, repeated, tag = "6")] pub text_join_list: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "15")] + pub retcode: u32, } /// Obf: EIGPGMEMLAJ #[derive(proto_derive::CmdID)] -#[cmdid(3876)] +#[cmdid(3827)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TextJoinBatchSaveCsReq { - #[prost(message, repeated, tag = "1")] + #[prost(message, repeated, tag = "10")] pub text_join_list: ::prost::alloc::vec::Vec, } /// Obf: MCCFKFOMIBA #[derive(proto_derive::CmdID)] -#[cmdid(3848)] +#[cmdid(3821)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TextJoinBatchSaveScRsp { - #[prost(message, repeated, tag = "12")] + #[prost(message, repeated, tag = "1")] pub text_join_list: ::prost::alloc::vec::Vec, #[prost(uint32, tag = "5")] pub retcode: u32, @@ -31277,401 +32731,401 @@ pub struct TextJoinBatchSaveScRsp { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Cgligecgakn { - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "2")] pub stage_id: u32, - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "15")] pub stage_score: u32, } /// Obf: EMFNMIFOFMH #[derive(proto_derive::CmdID)] -#[cmdid(7552)] +#[cmdid(7555)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetTrackPhotoActivityDataCsReq {} /// Obf: OINMKCHEDBO #[derive(proto_derive::CmdID)] -#[cmdid(7555)] +#[cmdid(7559)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetTrackPhotoActivityDataScRsp { - #[prost(message, repeated, tag = "1")] - pub emgfldopkgl: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "13")] pub retcode: u32, + #[prost(message, repeated, tag = "11")] + pub emgfldopkgl: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Geoaeofjogc { - #[prost(bool, tag = "5")] - pub kfboaonldem: bool, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "4")] pub entity_id: u32, + #[prost(bool, tag = "10")] + pub kfboaonldem: bool, } /// Obf: GBHMOCOJBGB #[derive(proto_derive::CmdID)] -#[cmdid(7554)] +#[cmdid(7558)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SettleTrackPhotoStageCsReq { + #[prost(uint32, tag = "13")] + pub stage_id: u32, #[prost(uint32, tag = "4")] pub bclnmidffoh: u32, - #[prost(uint32, tag = "12")] - pub stage_id: u32, - #[prost(message, repeated, tag = "2")] + #[prost(message, repeated, tag = "12")] pub lpihaniojfi: ::prost::alloc::vec::Vec, } /// Obf: FPHPGHHMODG #[derive(proto_derive::CmdID)] -#[cmdid(7557)] +#[cmdid(7553)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SettleTrackPhotoStageScRsp { - #[prost(uint32, tag = "6")] - pub score: u32, - #[prost(message, repeated, tag = "12")] - pub lpihaniojfi: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "15")] - pub retcode: u32, #[prost(uint32, tag = "10")] + pub retcode: u32, + #[prost(uint32, tag = "3")] pub stage_id: u32, + #[prost(message, repeated, tag = "2")] + pub lpihaniojfi: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "13")] + pub score: u32, } /// Obf: DLGOPBGKGGL #[derive(proto_derive::CmdID)] -#[cmdid(7551)] +#[cmdid(7556)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct StartTrackPhotoStageCsReq { - #[prost(bool, tag = "2")] + #[prost(bool, tag = "7")] pub djfcmlipdab: bool, - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "3")] pub stage_id: u32, } /// Obf: LDKCMMDKEGJ #[derive(proto_derive::CmdID)] -#[cmdid(7559)] +#[cmdid(7557)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct StartTrackPhotoStageScRsp { - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "6")] pub mdlndgijnml: u32, - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "5")] pub retcode: u32, } /// Obf: LGKCKIKGNEN #[derive(proto_derive::CmdID)] -#[cmdid(7556)] +#[cmdid(7551)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct QuitTrackPhotoStageCsReq { - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "10")] pub stage_id: u32, } /// Obf: IHLJCHKAJPG #[derive(proto_derive::CmdID)] -#[cmdid(7553)] +#[cmdid(7560)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct QuitTrackPhotoStageScRsp { - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "6")] pub retcode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TrainPartyCardData { - #[prost(uint32, tag = "1")] - pub upgrade_level: u32, - #[prost(uint32, tag = "4")] - pub card_id: u32, - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "7")] pub unique_id: u32, - #[prost(uint32, repeated, tag = "6")] + #[prost(uint32, tag = "6")] + pub card_id: u32, + #[prost(uint32, tag = "13")] + pub upgrade_level: u32, + #[prost(uint32, repeated, tag = "15")] pub hcpgealodme: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TrainPartyCards { - #[prost(message, repeated, tag = "11")] + #[prost(message, repeated, tag = "9")] pub card_data_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TrainPartyCard { - #[prost(message, optional, tag = "14")] - pub card_data_list: ::core::option::Option, - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "15")] pub extra_ratio: u32, - #[prost(bool, tag = "6")] + #[prost(bool, tag = "8")] pub has_modify_all_passenger_stat_effect: bool, + #[prost(message, optional, tag = "11")] + pub card_data_list: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TrainPartyGridData { - #[prost(uint32, tag = "13")] - pub unique_id: u32, - #[prost(uint32, tag = "11")] - pub hfnhlcfnhkd: u32, - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "6")] pub ghfaihlceln: u32, - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "10")] + pub unique_id: u32, + #[prost(uint32, tag = "12")] + pub hfnhlcfnhkd: u32, + #[prost(uint32, tag = "11")] pub display_value: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TrainPartyMeetingCountInfo { - #[prost(uint32, tag = "2")] - pub ncdcgfkoloe: u32, #[prost(uint32, tag = "10")] - pub papkgjojpii: u32, - #[prost(uint32, tag = "7")] - pub hcfocpkfobg: u32, - #[prost(uint32, tag = "1")] - pub jodnmdoamkc: u32, - #[prost(uint32, tag = "13")] pub blhpiciofai: u32, - #[prost(uint32, repeated, tag = "5")] + #[prost(uint32, repeated, tag = "1")] pub kddppgocomb: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "4")] + pub jodnmdoamkc: u32, + #[prost(uint32, tag = "14")] + pub papkgjojpii: u32, + #[prost(uint32, tag = "6")] + pub ncdcgfkoloe: u32, + #[prost(uint32, tag = "2")] + pub hcfocpkfobg: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TrainPartyGrids { - #[prost(uint32, tag = "8")] - pub bihmelmjhpo: u32, - #[prost(message, repeated, tag = "7")] - pub mkoambmkdid: ::prost::alloc::vec::Vec, - #[prost(message, optional, tag = "11")] + #[prost(message, optional, tag = "7")] pub gdghcbghlnd: ::core::option::Option, - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "12")] + pub bihmelmjhpo: u32, + #[prost(uint32, tag = "10")] pub lljefmpdjkh: u32, + #[prost(message, repeated, tag = "13")] + pub mkoambmkdid: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TrainPartyPassengerStatusInfo { - #[prost(uint32, tag = "14")] - pub khhlnggecpb: u32, - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "9")] pub kpakapnhnnd: u32, + #[prost(uint32, tag = "4")] + pub khhlnggecpb: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TrainPartyPassengerSkillInfo { - #[prost(uint32, tag = "13")] - pub jgmipmdppij: u32, #[prost(uint32, tag = "9")] pub skill_id: u32, - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "2")] + pub jgmipmdppij: u32, + #[prost(uint32, tag = "8")] pub skill_level: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TrainPartyPassengerData { - #[prost(message, optional, tag = "9")] - pub status_info: ::core::option::Option, - #[prost(uint32, tag = "13")] - pub passenger_id: u32, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "10")] pub mihlfgcgkno: u32, + #[prost(message, optional, tag = "14")] + pub status_info: ::core::option::Option, + #[prost(uint32, tag = "3")] + pub passenger_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TrainPartyPassengerPersistentData { - #[prost(uint32, repeated, tag = "11")] - pub diary_data_list: ::prost::alloc::vec::Vec, - #[prost(bool, tag = "8")] + #[prost(bool, tag = "12")] pub cinmlckbhim: bool, - #[prost(uint32, tag = "4")] - pub passenger_id: u32, - #[prost(uint32, tag = "6")] + #[prost(uint32, repeated, tag = "6")] + pub diary_data_list: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "10")] pub attempts: u32, + #[prost(uint32, tag = "11")] + pub passenger_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TrainPartyPassenger { - #[prost(uint32, repeated, tag = "11")] - pub cfkpaicdjpj: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "1")] - pub skill_info_list: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "15")] - pub kbgdcehiffj: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "5")] + pub oafaaeemnfb: u32, + #[prost(uint32, tag = "15")] + pub pkidbdgpilo: u32, #[prost(uint32, tag = "12")] pub upgrade_level: u32, - #[prost(uint32, tag = "14")] - pub pkidbdgpilo: u32, - #[prost(uint32, tag = "10")] - pub oafaaeemnfb: u32, + #[prost(message, repeated, tag = "7")] + pub kbgdcehiffj: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "4")] + pub cfkpaicdjpj: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "13")] + pub skill_info_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Oibmnpclnjj { - #[prost(uint32, repeated, tag = "6")] + #[prost(uint32, repeated, tag = "12")] pub diary_data_list: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "14")] + #[prost(message, repeated, tag = "5")] pub mebofhokepi: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TrainPartyAreaInfo { - #[prost(uint32, tag = "12")] - pub progress: u32, - #[prost(uint32, repeated, tag = "15")] - pub elfphfpkbfi: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "8")] - pub opdipfbcfdp: ::prost::alloc::vec::Vec, - #[prost(message, optional, tag = "9")] + #[prost(message, optional, tag = "3")] pub mlhdkjmfdai: ::core::option::Option, - #[prost(uint32, tag = "14")] + #[prost(message, repeated, tag = "13")] + pub opdipfbcfdp: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "8")] + pub progress: u32, + #[prost(uint32, tag = "15")] pub area_id: u32, - #[prost(uint32, repeated, tag = "11")] + #[prost(uint32, repeated, tag = "9")] + pub elfphfpkbfi: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "14")] pub knojnbjiokb: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "3")] + #[prost(uint32, repeated, tag = "11")] pub hbccbgbfplo: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Indffnnhohc { - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "9")] pub area_id: u32, - #[prost(uint32, repeated, tag = "11")] + #[prost(uint32, repeated, tag = "12")] pub elfphfpkbfi: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Ppkdpajpagf { - #[prost(uint32, tag = "10")] - pub jlhdkolmeda: u32, - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "14")] pub gjfhpcieboj: u32, - #[prost(enumeration = "TrainPartyBuildStatus", tag = "7")] + #[prost(enumeration = "TrainPartyBuildStatus", tag = "2")] pub status: i32, + #[prost(uint32, tag = "11")] + pub jlhdkolmeda: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Daipphmlpcb { - #[prost(message, repeated, tag = "13")] - pub imekhgciedn: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "8")] pub heidcikedpd: u32, + #[prost(message, repeated, tag = "11")] + pub imekhgciedn: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Mcnckbnoejg { - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "4")] pub cigajenpmkh: u32, - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "10")] pub slot_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Hhallekojia { - #[prost(uint32, tag = "8")] - pub eebnaapbkcn: u32, - #[prost(uint32, tag = "7")] - pub ppffkfgollj: u32, - #[prost(uint32, repeated, tag = "12")] - pub mcfmaepokbk: ::prost::alloc::vec::Vec, #[prost(uint32, tag = "5")] - pub flbnekgidbo: u32, + pub dbjhemippim: u32, + #[prost(uint32, tag = "4")] + pub obokglcmkke: u32, + #[prost(uint32, repeated, tag = "7")] + pub cigacghpdgk: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "12")] + pub eohbbeakodf: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "10")] + pub eebnaapbkcn: u32, + #[prost(uint32, tag = "15")] + pub cnajoignmlj: u32, #[prost(message, repeated, tag = "3")] pub llephoelgda: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "10")] - pub eohbbeakodf: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "4")] - pub cnajoignmlj: u32, - #[prost(uint32, tag = "6")] - pub dbjhemippim: u32, - #[prost(uint32, repeated, tag = "9")] - pub cigacghpdgk: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "1")] - pub obokglcmkke: u32, + #[prost(uint32, tag = "8")] + pub ppffkfgollj: u32, + #[prost(uint32, tag = "2")] + pub flbnekgidbo: u32, + #[prost(uint32, repeated, tag = "13")] + pub mcfmaepokbk: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Lpkdpmlbejo { - #[prost(message, optional, tag = "6")] + #[prost(message, optional, tag = "12")] pub cefmbafcnpk: ::core::option::Option, + #[prost(uint32, tag = "13")] + pub klgbflnjkbl: u32, + #[prost(message, optional, tag = "1")] + pub ijmekpadhjj: ::core::option::Option, #[prost(uint32, tag = "5")] - pub attempts: u32, - #[prost(message, optional, tag = "11")] + pub aianofknlhg: u32, + #[prost(message, optional, tag = "14")] pub nhjjbkokldb: ::core::option::Option, #[prost(uint32, tag = "9")] - pub klgbflnjkbl: u32, - #[prost(uint32, tag = "15")] - pub aianofknlhg: u32, - #[prost(message, optional, tag = "3")] - pub ijmekpadhjj: ::core::option::Option, + pub attempts: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Cdngndnlnaj { #[prost(message, optional, tag = "7")] - pub gbfclmlimhc: ::core::option::Option, - #[prost(message, optional, tag = "2")] pub eeihdcpolef: ::core::option::Option, - #[prost(message, optional, tag = "6")] + #[prost(message, optional, tag = "13")] pub aakhcnedbcd: ::core::option::Option, - #[prost(message, optional, tag = "9")] - pub hbheajijegf: ::core::option::Option, #[prost(uint32, tag = "4")] pub goneakbdgek: u32, + #[prost(message, optional, tag = "12")] + pub gbfclmlimhc: ::core::option::Option, + #[prost(message, optional, tag = "15")] + pub hbheajijegf: ::core::option::Option, } /// Obf: DBOEHMHGICC #[derive(proto_derive::CmdID)] -#[cmdid(8095)] +#[cmdid(8020)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TrainPartyGetDataCsReq {} /// Obf: CFNECNJGENN #[derive(proto_derive::CmdID)] -#[cmdid(8032)] +#[cmdid(8091)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TrainPartyGetDataScRsp { - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "3")] pub retcode: u32, - #[prost(message, optional, tag = "10")] + #[prost(message, optional, tag = "12")] pub behnkmghghd: ::core::option::Option, } /// Obf: IAGDGOEBLAL #[derive(proto_derive::CmdID)] -#[cmdid(8031)] +#[cmdid(8067)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TrainPartyUseCardCsReq { - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "11")] pub eeghhhkcghb: u32, } /// Obf: KNBKOEDFCBE #[derive(proto_derive::CmdID)] -#[cmdid(8040)] +#[cmdid(8039)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TrainPartyUseCardScRsp { - #[prost(uint32, tag = "11")] - pub retcode: u32, - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "6")] pub eeghhhkcghb: u32, + #[prost(uint32, tag = "1")] + pub retcode: u32, } /// Obf: OOGNJJIPCNK #[derive(proto_derive::CmdID)] -#[cmdid(8076)] +#[cmdid(8027)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TrainPartyMoveScNotify { - #[prost(uint32, tag = "11")] - pub gheeoeohmfi: u32, - #[prost(message, repeated, tag = "14")] + #[prost(message, repeated, tag = "11")] pub peadiocnimf: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "4")] + pub gheeoeohmfi: u32, } /// Obf: JGPGPFCLEAI #[derive(proto_derive::CmdID)] -#[cmdid(8071)] +#[cmdid(8070)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TrainPartySettleNotify { - #[prost(message, optional, tag = "10")] + #[prost(message, optional, tag = "8")] pub hilomekafbp: ::core::option::Option, - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "2")] pub eeghhhkcghb: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Fkmbflmegeb { #[prost(message, repeated, tag = "10")] - pub foaplialhdi: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "7")] - pub heijcnlnhhi: u32, - #[prost(message, repeated, tag = "14")] pub kbgdcehiffj: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "4")] + pub foaplialhdi: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "6")] + pub heijcnlnhhi: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Baepnhdciem { - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "15")] pub ijfihgcknhg: u32, #[prost(uint32, repeated, tag = "9")] pub param_list: ::prost::alloc::vec::Vec, @@ -31679,27 +33133,27 @@ pub struct Baepnhdciem { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Nclcbopcejg { - #[prost(message, optional, tag = "3")] + #[prost(message, optional, tag = "7")] pub hmffhbhalge: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Idbeommckik { - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "6")] pub passenger_id: u32, - #[prost(message, optional, tag = "1")] + #[prost(message, optional, tag = "11")] pub status_info: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Ibomhkhbaao { - #[prost(message, repeated, tag = "9")] + #[prost(message, repeated, tag = "14")] pub nfeolnaogdk: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Enjhdlhkino { - #[prost(message, optional, tag = "3")] + #[prost(message, optional, tag = "7")] pub kndmeilhkej: ::core::option::Option, } #[derive(proto_derive::CmdID)] @@ -31711,53 +33165,53 @@ pub struct Fnoghghpjpd { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Jldhcfggeao { - #[prost(message, optional, tag = "12")] + #[prost(message, optional, tag = "10")] pub mhmeddehbhi: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Pfgiahaidlm { - #[prost(message, repeated, tag = "12")] + #[prost(message, repeated, tag = "4")] pub skill_info_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Jhmnlcobjcj { - #[prost(message, optional, tag = "12")] + #[prost(message, optional, tag = "9")] pub abbnhmggpil: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Fkjlbfniggm { - #[prost(uint32, repeated, tag = "13")] + #[prost(uint32, repeated, tag = "2")] pub diary_data_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Hakmebiajcf { - #[prost(message, repeated, tag = "10")] + #[prost(message, repeated, tag = "2")] pub mkoambmkdid: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Hmopiblfcln { - #[prost(message, optional, tag = "12")] - pub gdghcbghlnd: ::core::option::Option, - #[prost(message, optional, tag = "14")] - pub lnmmkfmeajm: ::core::option::Option, - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "13")] pub extra_ratio: u32, - #[prost(bool, tag = "8")] + #[prost(bool, tag = "4")] pub has_modify_all_passenger_stat_effect: bool, + #[prost(message, optional, tag = "12")] + pub lnmmkfmeajm: ::core::option::Option, + #[prost(message, optional, tag = "3")] + pub gdghcbghlnd: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Plkcmgdedck { - #[prost(enumeration = "TrainPartyUpdateSrc", tag = "9")] + #[prost(enumeration = "TrainPartyUpdateSrc", tag = "4")] pub src: i32, #[prost( oneof = "plkcmgdedck::Lgnaklfmhff", - tags = "1121, 1638, 900, 542, 379, 250, 1085, 1394, 865, 1321" + tags = "1340, 1639, 331, 1478, 1319, 1327, 1328, 1525, 1230, 973" )] pub lgnaklfmhff: ::core::option::Option, } @@ -31766,42 +33220,42 @@ pub mod plkcmgdedck { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] pub enum Lgnaklfmhff { - #[prost(message, tag = "1121")] + #[prost(message, tag = "1340")] Lnmmkfmeajm(super::TrainPartyCards), - #[prost(message, tag = "1638")] + #[prost(message, tag = "1639")] Fpfdjndnpim(super::Ibomhkhbaao), - #[prost(message, tag = "900")] + #[prost(message, tag = "331")] Njkjnbdboca(super::Enjhdlhkino), - #[prost(message, tag = "542")] + #[prost(message, tag = "1478")] Lgjgbighonp(super::Fnoghghpjpd), - #[prost(message, tag = "379")] + #[prost(message, tag = "1319")] Dgnkbngipki(super::Hakmebiajcf), - #[prost(message, tag = "250")] + #[prost(message, tag = "1327")] Mkkpchhnhcj(super::Jldhcfggeao), - #[prost(message, tag = "1085")] + #[prost(message, tag = "1328")] Pkpjefggboo(super::Hmopiblfcln), - #[prost(message, tag = "1394")] + #[prost(message, tag = "1525")] Nhacnnjpalp(super::Pfgiahaidlm), - #[prost(message, tag = "865")] + #[prost(message, tag = "1230")] Ahpdpooljle(super::Jhmnlcobjcj), - #[prost(message, tag = "1321")] + #[prost(message, tag = "973")] Afmieicdnea(super::Fkjlbfniggm), } } /// Obf: JFJKLHGFDKP #[derive(proto_derive::CmdID)] -#[cmdid(8022)] +#[cmdid(8054)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TrainPartySyncUpdateScNotify { - #[prost(message, repeated, tag = "4")] + #[prost(message, repeated, tag = "12")] pub fflpklldhlm: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Gcfehmenonm { - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "2")] pub hbapccegnme: u32, - #[prost(oneof = "gcfehmenonm::Ajobhbklmji", tags = "1184, 343, 238, 700")] + #[prost(oneof = "gcfehmenonm::Ajobhbklmji", tags = "388, 406, 881, 1396")] pub ajobhbklmji: ::core::option::Option, } /// Nested message and enum types in `GCFEHMENONM`. @@ -31809,212 +33263,212 @@ pub mod gcfehmenonm { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] pub enum Ajobhbklmji { - #[prost(message, tag = "1184")] + #[prost(message, tag = "388")] Iamkdjcfmib(super::Njkenncjlcf), - #[prost(message, tag = "343")] + #[prost(message, tag = "406")] Leehaeobeba(super::Miiaiodleoa), - #[prost(message, tag = "238")] + #[prost(message, tag = "881")] Oaoofnjgidh(super::Emmdenjbfpf), - #[prost(message, tag = "700")] + #[prost(message, tag = "1396")] Pmmgocjfeej(super::Epbgfbedanm), } } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Hhpiafbhjcf { - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "11")] pub kdmlllghjon: u32, - #[prost(bool, tag = "12")] + #[prost(bool, tag = "4")] pub pipmgacmjnn: bool, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Njkenncjlcf { - #[prost(uint32, tag = "7")] - pub event_id: u32, - #[prost(enumeration = "Ijdnojemian", tag = "10")] + #[prost(enumeration = "Ijdnojemian", tag = "6")] pub hoiokbkgfdn: i32, - #[prost(message, repeated, tag = "9")] + #[prost(message, repeated, tag = "5")] pub lekpkocnjal: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "8")] + pub event_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Hpfkgddifhg { - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "2")] pub kdmlllghjon: u32, - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "15")] pub event_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Bfifanaocpc { - #[prost(message, optional, tag = "5")] + #[prost(message, optional, tag = "6")] pub hilomekafbp: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Ocmhofemnhi { - #[prost(uint32, tag = "7")] - pub level: u32, - #[prost(uint32, tag = "14")] - pub skill_id: u32, #[prost(uint32, tag = "4")] + pub skill_id: u32, + #[prost(uint32, tag = "15")] pub jgmipmdppij: u32, + #[prost(uint32, tag = "5")] + pub level: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Miiaiodleoa { - #[prost(message, repeated, tag = "10")] + #[prost(message, repeated, tag = "4")] pub ganakfaibfc: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "1")] pub passenger_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Epbgfbedanm { - #[prost(message, repeated, tag = "8")] - pub llijagdkjco: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "13")] pub idaihkmmdek: u32, + #[prost(message, repeated, tag = "9")] + pub llijagdkjco: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Glbfbnhfcno { - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "13")] pub iehhdalhgpi: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Mbinmaonbcd { - #[prost(message, repeated, tag = "14")] + #[prost(message, repeated, tag = "7")] pub skill_info_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Pjjdmmbkkcn { - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "13")] pub khhlnggecpb: u32, #[prost(uint32, tag = "11")] pub passenger_id: u32, - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "3")] pub unique_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Heojldbkkge { - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "9")] pub passenger_id: u32, - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "12")] pub num: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Emmdenjbfpf { - #[prost(uint32, tag = "9")] - pub cfokigihcfp: u32, - #[prost(uint32, tag = "2")] - pub kmlppmnmpke: u32, - #[prost(message, repeated, tag = "7")] - pub mmeiphbnked: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "14")] - pub mlipplkiifd: u32, - #[prost(uint32, tag = "8")] - pub mliijgoaeck: u32, - #[prost(message, repeated, tag = "4")] - pub ccgbhhfbafj: ::prost::alloc::vec::Vec, #[prost(message, repeated, tag = "3")] pub kjmliamgdle: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "13")] + pub kmlppmnmpke: u32, + #[prost(uint32, tag = "4")] pub npjeecedpok: u32, + #[prost(message, repeated, tag = "9")] + pub ccgbhhfbafj: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "2")] + pub mliijgoaeck: u32, + #[prost(uint32, tag = "10")] + pub mlipplkiifd: u32, + #[prost(message, repeated, tag = "8")] + pub mmeiphbnked: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "15")] + pub cfokigihcfp: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct PlaySkillBrief { - #[prost(uint32, tag = "11")] - pub skill_id: u32, - #[prost(uint32, tag = "12")] - pub skill_param: u32, - #[prost(enumeration = "Lcdemgacekd", tag = "10")] + #[prost(enumeration = "Lcdemgacekd", tag = "11")] pub skill_type: i32, + #[prost(uint32, tag = "15")] + pub skill_id: u32, + #[prost(uint32, tag = "6")] + pub skill_param: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct PlayCardBrief { - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "3")] pub base_value: u32, - #[prost(message, repeated, tag = "15")] - pub skill_brief_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "12")] pub unique_id: u32, + #[prost(message, repeated, tag = "7")] + pub skill_brief_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Phoefkfbikd { - #[prost(uint32, repeated, tag = "1")] + #[prost(uint32, repeated, tag = "8")] pub npojmhhibki: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "12")] - pub mkegodinhnc: u32, - #[prost(message, optional, tag = "4")] + #[prost(message, optional, tag = "13")] pub ojcjnbgnicf: ::core::option::Option, + #[prost(uint32, tag = "7")] + pub mkegodinhnc: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Pecglkcicgo { - #[prost(uint32, repeated, tag = "13")] + #[prost(uint32, repeated, tag = "12")] pub canngfdafoe: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Jbocjhndamc { - #[prost(message, repeated, tag = "14")] + #[prost(message, repeated, tag = "6")] + pub bihfecjhpgh: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "10")] pub mmeiphbnked: ::prost::alloc::vec::Vec, - #[prost(message, optional, tag = "12")] - pub gdghcbghlnd: ::core::option::Option, - #[prost(message, optional, tag = "10")] + #[prost(message, repeated, tag = "14")] + pub ccgbhhfbafj: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "12")] + pub npjeecedpok: u32, + #[prost(message, optional, tag = "8")] pub mfakjhfmaib: ::core::option::Option, + #[prost(message, repeated, tag = "4")] + pub omggnaeahif: ::prost::alloc::vec::Vec, #[prost(uint32, tag = "5")] pub score: u32, - #[prost(message, repeated, tag = "7")] - pub omggnaeahif: ::prost::alloc::vec::Vec, - #[prost(enumeration = "TrainPartyMtSkillType", tag = "3")] + #[prost(message, optional, tag = "3")] + pub gdghcbghlnd: ::core::option::Option, + #[prost(enumeration = "TrainPartyMtSkillType", tag = "2")] pub ijppknknlnl: i32, - #[prost(message, repeated, tag = "9")] - pub ccgbhhfbafj: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "1")] - pub bihfecjhpgh: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "8")] - pub npjeecedpok: u32, - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "15")] pub cfokigihcfp: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Encjkpgoial { - #[prost(uint32, repeated, tag = "13")] + #[prost(uint32, repeated, tag = "5")] pub canngfdafoe: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Fbglldnlgpe { - #[prost(message, repeated, tag = "12")] - pub mmeiphbnked: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "8")] - pub nicgnemched: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "5")] pub kmlppmnmpke: u32, - #[prost(message, repeated, tag = "4")] + #[prost(message, repeated, tag = "15")] + pub nicgnemched: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "11")] + pub mmeiphbnked: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "14")] pub ccgbhhfbafj: ::prost::alloc::vec::Vec, } /// Obf: BHEIBFHJFID #[derive(proto_derive::CmdID)] -#[cmdid(8072)] +#[cmdid(8080)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TrainPartyHandlePendingActionCsReq { - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "4")] pub hbapccegnme: u32, #[prost( oneof = "train_party_handle_pending_action_cs_req::Phkgcbnejco", - tags = "147, 1939, 1515, 1133" + tags = "1076, 704, 1277, 1444" )] pub phkgcbnejco: ::core::option::Option< train_party_handle_pending_action_cs_req::Phkgcbnejco, @@ -32025,32 +33479,32 @@ pub mod train_party_handle_pending_action_cs_req { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] pub enum Phkgcbnejco { - #[prost(message, tag = "147")] + #[prost(message, tag = "1076")] Iamkdjcfmib(super::Hpfkgddifhg), - #[prost(message, tag = "1939")] + #[prost(message, tag = "704")] Pmmgocjfeej(super::Glbfbnhfcno), - #[prost(message, tag = "1515")] + #[prost(message, tag = "1277")] Lgbjaeldpnb(super::Pecglkcicgo), - #[prost(message, tag = "1133")] + #[prost(message, tag = "1444")] Bgjmfbhcmkl(super::Encjkpgoial), } } /// Obf: FKNAGADELDE #[derive(proto_derive::CmdID)] -#[cmdid(8085)] +#[cmdid(8002)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TrainPartyHandlePendingActionScRsp { - #[prost(message, optional, tag = "2")] + #[prost(message, optional, tag = "1")] pub hilomekafbp: ::core::option::Option, - #[prost(uint32, tag = "1")] - pub retcode: u32, - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "15")] pub hbapccegnme: u32, + #[prost(uint32, tag = "14")] + pub retcode: u32, #[prost(bool, tag = "9")] pub dlncbjfgkaa: bool, #[prost( oneof = "train_party_handle_pending_action_sc_rsp::Phkgcbnejco", - tags = "1786, 1293, 1590, 1088" + tags = "1785, 1094, 1328, 1892" )] pub phkgcbnejco: ::core::option::Option< train_party_handle_pending_action_sc_rsp::Phkgcbnejco, @@ -32061,122 +33515,122 @@ pub mod train_party_handle_pending_action_sc_rsp { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] pub enum Phkgcbnejco { - #[prost(message, tag = "1786")] + #[prost(message, tag = "1785")] Laelpnhhjik(super::Bfifanaocpc), - #[prost(message, tag = "1293")] + #[prost(message, tag = "1094")] Pmojbjmkfan(super::Mbinmaonbcd), - #[prost(message, tag = "1590")] + #[prost(message, tag = "1328")] Afdndbaddkp(super::Jbocjhndamc), - #[prost(message, tag = "1088")] + #[prost(message, tag = "1892")] Ledfncdfamk(super::Fbglldnlgpe), } } /// Obf: LHHGJPGIAFE #[derive(proto_derive::CmdID)] -#[cmdid(8016)] +#[cmdid(8005)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TrainPartyBuildStartStepCsReq { - #[prost(uint32, tag = "6")] - pub area_id: u32, - #[prost(uint32, tag = "13")] - pub heidcikedpd: u32, - #[prost(message, optional, tag = "9")] + #[prost(message, optional, tag = "11")] pub alaoddbghpl: ::core::option::Option, - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "7")] pub gjfhpcieboj: u32, + #[prost(uint32, tag = "3")] + pub heidcikedpd: u32, + #[prost(uint32, tag = "13")] + pub area_id: u32, } /// Obf: FLPDEABALAB #[derive(proto_derive::CmdID)] -#[cmdid(8046)] +#[cmdid(8074)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TrainPartyBuildStartStepScRsp { - #[prost(uint32, tag = "5")] - pub retcode: u32, - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "10")] pub dbjhemippim: u32, + #[prost(uint32, tag = "3")] + pub retcode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Cikohjnagon { - #[prost(message, optional, tag = "1")] - pub kcjbmkjlfba: ::core::option::Option, - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "7")] pub area_id: u32, + #[prost(message, optional, tag = "6")] + pub kcjbmkjlfba: ::core::option::Option, } /// Obf: IGIOFLAJOLK #[derive(proto_derive::CmdID)] -#[cmdid(8083)] +#[cmdid(8073)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TrainPartyBuildDiyCsReq { - #[prost(uint32, tag = "13")] - pub cigajenpmkh: u32, - #[prost(uint32, tag = "3")] + #[prost(bool, tag = "15")] + pub ganhklnpapi: bool, + #[prost(uint32, tag = "7")] pub slot_id: u32, #[prost(uint32, tag = "8")] pub area_id: u32, - #[prost(bool, tag = "10")] - pub ganhklnpapi: bool, + #[prost(uint32, tag = "12")] + pub cigajenpmkh: u32, } /// Obf: IGOGLPAJAND #[derive(proto_derive::CmdID)] -#[cmdid(8060)] +#[cmdid(8098)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TrainPartyBuildDiyScRsp { - #[prost(message, repeated, tag = "9")] - pub fflpklldhlm: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "5")] pub retcode: u32, - #[prost(bool, tag = "5")] + #[prost(bool, tag = "13")] pub ganhklnpapi: bool, - #[prost(message, repeated, tag = "10")] - pub opdipfbcfdp: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "6")] pub area_id: u32, + #[prost(message, repeated, tag = "8")] + pub opdipfbcfdp: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "2")] + pub fflpklldhlm: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Kmbdkdlnhmc { - #[prost(message, repeated, tag = "11")] + #[prost(message, repeated, tag = "14")] pub cgfihjccgcd: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "9")] pub okhcjkljghf: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Jnahojlcnja { - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "5")] pub heidcikedpd: u32, #[prost(uint32, tag = "7")] pub progress: u32, - #[prost(uint32, tag = "9")] - pub area_id: u32, - #[prost(message, repeated, tag = "5")] + #[prost(message, repeated, tag = "12")] pub cgfihjccgcd: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "10")] + pub area_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Iefkfkfmepl { - #[prost(uint32, tag = "11")] - pub obokglcmkke: u32, #[prost(uint32, tag = "8")] pub ppffkfgollj: u32, + #[prost(uint32, tag = "12")] + pub obokglcmkke: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Fnpmcdnkdfj { - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "15")] pub bdccopiehin: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Gegjhbmloem { - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "15")] pub flbnekgidbo: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Bfddpplmkpg { - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "12")] pub mnleikiehhp: u32, #[prost(uint32, tag = "15")] pub area_id: u32, @@ -32184,33 +33638,33 @@ pub struct Bfddpplmkpg { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Kmlehllogjg { - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "2")] pub cigajenpmkh: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Okfgjeihljm { - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "12")] pub fbfihjiiabo: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Kakjcjomfgh { - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "8")] pub cnajoignmlj: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Mclncbcpaff { - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "3")] pub area_id: u32, - #[prost(uint32, repeated, tag = "13")] + #[prost(uint32, repeated, tag = "9")] pub cgfihjccgcd: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Lndgcgobdjl { - #[prost(message, repeated, tag = "9")] + #[prost(message, repeated, tag = "13")] pub llephoelgda: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] @@ -32218,7 +33672,7 @@ pub struct Lndgcgobdjl { pub struct Ppkgjkifelk { #[prost( oneof = "ppkgjkifelk::Lgnaklfmhff", - tags = "917, 1834, 645, 497, 265, 204, 1686, 803, 1940, 152" + tags = "1493, 1638, 1200, 577, 71, 1779, 1205, 341, 1545, 1451" )] pub lgnaklfmhff: ::core::option::Option, } @@ -32227,57 +33681,57 @@ pub mod ppkgjkifelk { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] pub enum Lgnaklfmhff { - #[prost(message, tag = "917")] + #[prost(message, tag = "1493")] Maplogdnbgb(super::Okfgjeihljm), - #[prost(message, tag = "1834")] + #[prost(message, tag = "1638")] Ekflejankme(super::Kmbdkdlnhmc), - #[prost(message, tag = "645")] + #[prost(message, tag = "1200")] Jobejafkecd(super::Jnahojlcnja), - #[prost(message, tag = "497")] + #[prost(message, tag = "577")] Dblbhnphhkb(super::Iefkfkfmepl), - #[prost(message, tag = "265")] + #[prost(message, tag = "71")] Ckbnojapnnb(super::Fnpmcdnkdfj), - #[prost(message, tag = "204")] + #[prost(message, tag = "1779")] Nepconhofkj(super::Bfddpplmkpg), - #[prost(message, tag = "1686")] + #[prost(message, tag = "1205")] Egdgpikbnlk(super::Kmlehllogjg), - #[prost(message, tag = "803")] + #[prost(message, tag = "341")] Bhofhhemlog(super::Gegjhbmloem), - #[prost(message, tag = "1940")] + #[prost(message, tag = "1545")] Haeadfoolnd(super::Kakjcjomfgh), - #[prost(message, tag = "152")] + #[prost(message, tag = "1451")] Gaibcbghhgl(super::Lndgcgobdjl), } } /// Obf: BMOPHHIBHCP #[derive(proto_derive::CmdID)] -#[cmdid(8002)] +#[cmdid(8085)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TrainPartyBuildingUpdateNotify { - #[prost(message, repeated, tag = "15")] + #[prost(message, repeated, tag = "7")] pub bjdfkemkaol: ::prost::alloc::vec::Vec, } /// Obf: DGHAJAOFFAE #[derive(proto_derive::CmdID)] -#[cmdid(8043)] +#[cmdid(8052)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TrainPartyEnterCsReq {} /// Obf: LCOFPKJDPJI #[derive(proto_derive::CmdID)] -#[cmdid(8033)] +#[cmdid(8068)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TrainPartyEnterScRsp { - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "8")] pub retcode: u32, } /// Obf: NPBHFJLHLNL #[derive(proto_derive::CmdID)] -#[cmdid(8042)] +#[cmdid(8094)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TrainPartyLeaveCsReq {} /// Obf: JJLKBFPGBIG #[derive(proto_derive::CmdID)] -#[cmdid(8077)] +#[cmdid(8036)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TrainPartyLeaveScRsp { #[prost(uint32, tag = "8")] @@ -32286,475 +33740,475 @@ pub struct TrainPartyLeaveScRsp { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Bjgldljkidh { - #[prost(enumeration = "TrainPartyMtSkillType", tag = "3")] - pub jllnmgbenaf: i32, - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "5")] pub level: u32, + #[prost(enumeration = "TrainPartyMtSkillType", tag = "8")] + pub jllnmgbenaf: i32, } /// Obf: FPKBMIHOLMG #[derive(proto_derive::CmdID)] -#[cmdid(8025)] +#[cmdid(8041)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TrainPartyGamePlaySettleNotify { - #[prost(uint32, repeated, tag = "8")] - pub olbagkmfdaj: ::prost::alloc::vec::Vec, - #[prost(message, optional, tag = "6")] - pub hanfphgemgf: ::core::option::Option, - #[prost(uint32, tag = "13")] - pub attempts: u32, - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "7")] pub aianofknlhg: u32, + #[prost(uint32, tag = "1")] + pub attempts: u32, + #[prost(uint32, repeated, tag = "4")] + pub olbagkmfdaj: ::prost::alloc::vec::Vec, + #[prost(message, optional, tag = "12")] + pub hanfphgemgf: ::core::option::Option, } /// Obf: DKGFBNFIOBL #[derive(proto_derive::CmdID)] -#[cmdid(8011)] +#[cmdid(8044)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TrainPartyGamePlayStartCsReq { + #[prost(uint32, repeated, tag = "3")] + pub kbgdcehiffj: ::prost::alloc::vec::Vec, #[prost(uint32, tag = "4")] pub goneakbdgek: u32, - #[prost(uint32, repeated, tag = "13")] - pub kbgdcehiffj: ::prost::alloc::vec::Vec, } /// Obf: IPCPHCIPFBG #[derive(proto_derive::CmdID)] -#[cmdid(8093)] +#[cmdid(8049)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TrainPartyGamePlayStartScRsp { - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "7")] pub retcode: u32, - #[prost(message, optional, tag = "8")] + #[prost(message, optional, tag = "15")] pub kmdphcmbjgb: ::core::option::Option, } /// Obf: CCGLODLDCCG #[derive(proto_derive::CmdID)] -#[cmdid(8051)] +#[cmdid(8003)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TrainPartyAddBuildDynamicBuffCsReq {} /// Obf: PAKLHDBGCLE #[derive(proto_derive::CmdID)] -#[cmdid(8091)] +#[cmdid(8024)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TrainPartyAddBuildDynamicBuffScRsp { + #[prost(uint32, tag = "4")] + pub buff_id: u32, #[prost(uint32, tag = "11")] pub retcode: u32, - #[prost(uint32, tag = "12")] - pub buff_id: u32, } /// Obf: FLACIGJGGCJ #[derive(proto_derive::CmdID)] -#[cmdid(8030)] +#[cmdid(8045)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TrainPartyTakeBuildLevelAwardCsReq { - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "10")] pub ecclpifmmpp: u32, } /// Obf: EMLBHKHIBGI #[derive(proto_derive::CmdID)] -#[cmdid(8075)] +#[cmdid(8069)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TrainPartyTakeBuildLevelAwardScRsp { + #[prost(message, optional, tag = "14")] + pub item_list: ::core::option::Option, + #[prost(uint32, tag = "12")] + pub retcode: u32, #[prost(uint32, tag = "7")] pub ecclpifmmpp: u32, - #[prost(uint32, tag = "10")] - pub retcode: u32, - #[prost(message, optional, tag = "4")] - pub item_list: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Gbcdkgekcpp { - #[prost(uint32, tag = "2")] - pub visitor_id: u32, - #[prost(bool, tag = "9")] + #[prost(bool, tag = "4")] pub iagodfdjaik: bool, + #[prost(uint32, tag = "13")] + pub visitor_id: u32, } /// Obf: OACBEIPOBJI #[derive(proto_derive::CmdID)] -#[cmdid(3795)] +#[cmdid(3720)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TrainVisitorBehaviorFinishCsReq { - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "13")] pub visitor_id: u32, } /// Obf: FKIFBIGHAAP #[derive(proto_derive::CmdID)] -#[cmdid(3732)] +#[cmdid(3791)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TrainVisitorBehaviorFinishScRsp { #[prost(uint32, tag = "3")] - pub visitor_id: u32, - #[prost(uint32, tag = "15")] pub retcode: u32, - #[prost(message, optional, tag = "8")] + #[prost(message, optional, tag = "11")] pub reward: ::core::option::Option, + #[prost(uint32, tag = "14")] + pub visitor_id: u32, } /// Obf: LMINIONBHAM #[derive(proto_derive::CmdID)] -#[cmdid(3731)] +#[cmdid(3767)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetTrainVisitorBehaviorCsReq { - #[prost(uint32, repeated, tag = "4")] + #[prost(uint32, repeated, tag = "9")] pub oifnlnbkdma: ::prost::alloc::vec::Vec, } /// Obf: ALNDKEMKEBB #[derive(proto_derive::CmdID)] -#[cmdid(3740)] +#[cmdid(3739)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetTrainVisitorBehaviorScRsp { - #[prost(message, repeated, tag = "5")] - pub ecfopdhgkfb: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "15")] pub retcode: u32, + #[prost(message, repeated, tag = "9")] + pub ecfopdhgkfb: ::prost::alloc::vec::Vec, } /// Obf: BELCDBIGMEO #[derive(proto_derive::CmdID)] -#[cmdid(3776)] +#[cmdid(3727)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TrainRefreshTimeNotify { - #[prost(uint64, tag = "4")] + #[prost(uint64, tag = "2")] pub train_refresh_time: u64, } /// Obf: OCGDCMPOEDA #[derive(proto_derive::CmdID)] -#[cmdid(3748)] +#[cmdid(3721)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TrainVisitorRewardSendNotify { #[prost(enumeration = "Iippjkhmpch", tag = "9")] pub slot: i32, - #[prost(message, optional, tag = "8")] + #[prost(message, optional, tag = "13")] pub reward: ::core::option::Option, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "5")] pub visitor_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Hglkmjfehmb { - #[prost(bool, tag = "15")] + #[prost(bool, tag = "7")] pub ijabkdepgma: bool, - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "11")] pub visitor_id: u32, - #[prost(uint32, repeated, tag = "10")] + #[prost(uint32, repeated, tag = "15")] pub edhhgcpdkik: ::prost::alloc::vec::Vec, - #[prost(enumeration = "Llmibdpfjnd", tag = "6")] - pub status: i32, #[prost(uint32, tag = "13")] pub opaokgjbooe: u32, + #[prost(enumeration = "Llmibdpfjnd", tag = "5")] + pub status: i32, } /// Obf: JDJCNCPPAMF #[derive(proto_derive::CmdID)] -#[cmdid(3771)] +#[cmdid(3770)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetTrainVisitorRegisterCsReq { - #[prost(enumeration = "Jfjjfgaeoab", tag = "1")] + #[prost(enumeration = "Jfjjfgaeoab", tag = "12")] pub slot: i32, } /// Obf: HNGKFNOAJFH #[derive(proto_derive::CmdID)] -#[cmdid(3752)] +#[cmdid(3759)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetTrainVisitorRegisterScRsp { - #[prost(uint32, tag = "11")] - pub retcode: u32, - #[prost(message, repeated, tag = "5")] + #[prost(message, repeated, tag = "3")] pub fdmfkaljbaj: ::prost::alloc::vec::Vec, - #[prost(uint32, repeated, tag = "15")] + #[prost(uint32, repeated, tag = "10")] pub famhpmfoijh: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "9")] + pub retcode: u32, } /// Obf: FNLKMOEFPDA #[derive(proto_derive::CmdID)] -#[cmdid(3722)] +#[cmdid(3754)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TakeTrainVisitorUntakenBehaviorRewardCsReq { - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "10")] pub visitor_id: u32, } /// Obf: ODJGBFIMGCK #[derive(proto_derive::CmdID)] -#[cmdid(3756)] +#[cmdid(3777)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TakeTrainVisitorUntakenBehaviorRewardScRsp { - #[prost(uint32, repeated, tag = "6")] - pub edhhgcpdkik: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "9")] - pub retcode: u32, - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "3")] pub visitor_id: u32, + #[prost(uint32, repeated, tag = "13")] + pub edhhgcpdkik: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "12")] + pub retcode: u32, } /// Obf: ONLDPCLJMLP #[derive(proto_derive::CmdID)] -#[cmdid(3772)] +#[cmdid(3780)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ShowNewSupplementVisitorCsReq { - #[prost(uint32, repeated, tag = "6")] + #[prost(uint32, repeated, tag = "5")] pub famhpmfoijh: ::prost::alloc::vec::Vec, } /// Obf: GMJIFOALLOJ #[derive(proto_derive::CmdID)] -#[cmdid(3785)] +#[cmdid(3702)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ShowNewSupplementVisitorScRsp { - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "5")] pub retcode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Nhbddinfkoh { - #[prost(uint32, tag = "3")] - pub iimoplcfhah: u32, - #[prost(int32, tag = "10")] - pub lljaegobhmp: i32, - #[prost(uint32, tag = "11")] - pub item_id: u32, - #[prost(uint64, tag = "12")] - pub unique_id: u64, - #[prost(int32, tag = "2")] + #[prost(int32, tag = "9")] pub ieagbpemflg: i32, - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "10")] pub kbcdecdnefm: u32, + #[prost(uint32, tag = "11")] + pub iimoplcfhah: u32, + #[prost(int32, tag = "13")] + pub lljaegobhmp: i32, + #[prost(uint64, tag = "4")] + pub unique_id: u64, + #[prost(uint32, tag = "5")] + pub item_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Kchjhcljock { - #[prost(uint32, tag = "1")] - pub diphgghfmcp: u32, - #[prost(uint32, tag = "10")] - pub cpodejofpdd: u32, - #[prost(enumeration = "Dcjaopdinoi", tag = "7")] - pub embkicmefco: i32, - #[prost(message, repeated, tag = "8")] + #[prost(message, repeated, tag = "1")] pub hjbpkcfkhli: ::prost::alloc::vec::Vec, - #[prost(enumeration = "Hgkkppljboi", tag = "4")] + #[prost(enumeration = "Dcjaopdinoi", tag = "2")] + pub embkicmefco: i32, + #[prost(enumeration = "Hgkkppljboi", tag = "3")] pub clfgfaboiop: i32, + #[prost(uint32, tag = "7")] + pub diphgghfmcp: u32, + #[prost(uint32, tag = "9")] + pub cpodejofpdd: u32, } /// Obf: NKPEMNOPMNO #[derive(proto_derive::CmdID)] -#[cmdid(6495)] +#[cmdid(6420)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TravelBrochureGetDataCsReq {} /// Obf: OEPEPLALCOB #[derive(proto_derive::CmdID)] -#[cmdid(6432)] +#[cmdid(6491)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TravelBrochureGetDataScRsp { - #[prost(uint32, tag = "1")] - pub kmhdfladepi: u32, - #[prost(uint32, tag = "15")] - pub retcode: u32, - #[prost(map = "uint32, uint32", tag = "8")] + #[prost(map = "uint32, uint32", tag = "9")] pub fkbbomhekpe: ::std::collections::HashMap, + #[prost(uint32, tag = "13")] + pub retcode: u32, + #[prost(uint32, tag = "3")] + pub kmhdfladepi: u32, #[prost(map = "uint32, message", tag = "14")] pub mibclbgmdla: ::std::collections::HashMap, } /// Obf: ICIFONJONFA #[derive(proto_derive::CmdID)] -#[cmdid(6431)] +#[cmdid(6467)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TravelBrochurePageUnlockScNotify { - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "14")] pub cpodejofpdd: u32, } /// Obf: ELLAHNNAPLN #[derive(proto_derive::CmdID)] -#[cmdid(6476)] +#[cmdid(6427)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TravelBrochureSelectMessageCsReq { - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "5")] pub diphgghfmcp: u32, - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "14")] pub cpodejofpdd: u32, } /// Obf: IOHEBKBCGNE #[derive(proto_derive::CmdID)] -#[cmdid(6448)] +#[cmdid(6421)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TravelBrochureSelectMessageScRsp { - #[prost(message, optional, tag = "9")] - pub reward: ::core::option::Option, - #[prost(message, optional, tag = "13")] + #[prost(message, optional, tag = "11")] pub cagglkliimf: ::core::option::Option, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "13")] pub retcode: u32, + #[prost(message, optional, tag = "5")] + pub reward: ::core::option::Option, } /// Obf: FBLEAEPJAMC #[derive(proto_derive::CmdID)] -#[cmdid(6471)] +#[cmdid(6470)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TravelBrochureApplyPasterCsReq { - #[prost(uint32, tag = "11")] - pub item_id: u32, - #[prost(uint32, tag = "12")] - pub kbcdecdnefm: u32, - #[prost(uint32, tag = "9")] - pub iimoplcfhah: u32, #[prost(uint32, tag = "3")] pub cpodejofpdd: u32, - #[prost(int32, tag = "5")] + #[prost(uint32, tag = "6")] + pub iimoplcfhah: u32, + #[prost(int32, tag = "1")] pub lljaegobhmp: i32, #[prost(int32, tag = "2")] pub ieagbpemflg: i32, + #[prost(uint32, tag = "5")] + pub kbcdecdnefm: u32, + #[prost(uint32, tag = "8")] + pub item_id: u32, } /// Obf: CHEPGAMCBIH #[derive(proto_derive::CmdID)] -#[cmdid(6452)] +#[cmdid(6459)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TravelBrochureApplyPasterScRsp { - #[prost(message, optional, tag = "4")] + #[prost(message, optional, tag = "12")] pub cagglkliimf: ::core::option::Option, - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "7")] pub retcode: u32, } /// Obf: CHGGONIIOHA #[derive(proto_derive::CmdID)] -#[cmdid(6422)] +#[cmdid(6454)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TravelBrochureRemovePasterCsReq { - #[prost(uint64, tag = "11")] - pub unique_id: u64, - #[prost(uint32, tag = "4")] - pub cpodejofpdd: u32, - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "8")] pub item_id: u32, + #[prost(uint64, tag = "12")] + pub unique_id: u64, + #[prost(uint32, tag = "7")] + pub cpodejofpdd: u32, } /// Obf: ECBKPCALDFD #[derive(proto_derive::CmdID)] -#[cmdid(6456)] +#[cmdid(6477)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TravelBrochureRemovePasterScRsp { - #[prost(uint32, tag = "3")] - pub retcode: u32, - #[prost(message, optional, tag = "1")] + #[prost(message, optional, tag = "10")] pub cagglkliimf: ::core::option::Option, + #[prost(uint32, tag = "1")] + pub retcode: u32, } /// Obf: BNIFAHOFPCL #[derive(proto_derive::CmdID)] -#[cmdid(6472)] +#[cmdid(6480)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TravelBrochureUpdatePasterPosCsReq { - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "10")] + pub iimoplcfhah: u32, + #[prost(uint32, tag = "11")] + pub item_id: u32, + #[prost(uint32, tag = "4")] + pub kbcdecdnefm: u32, + #[prost(uint32, tag = "2")] pub cpodejofpdd: u32, #[prost(int32, tag = "9")] pub lljaegobhmp: i32, - #[prost(uint32, tag = "14")] - pub kbcdecdnefm: u32, - #[prost(uint32, tag = "5")] - pub iimoplcfhah: u32, - #[prost(uint32, tag = "12")] - pub item_id: u32, - #[prost(uint64, tag = "1")] - pub unique_id: u64, - #[prost(int32, tag = "7")] + #[prost(int32, tag = "13")] pub ieagbpemflg: i32, + #[prost(uint64, tag = "6")] + pub unique_id: u64, } /// Obf: BLKKMEBCFNC #[derive(proto_derive::CmdID)] -#[cmdid(6485)] +#[cmdid(6402)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TravelBrochureUpdatePasterPosScRsp { - #[prost(uint32, tag = "3")] - pub retcode: u32, - #[prost(message, optional, tag = "6")] + #[prost(message, optional, tag = "2")] pub cagglkliimf: ::core::option::Option, + #[prost(uint32, tag = "8")] + pub retcode: u32, } /// Obf: CCCDIFAFKDA #[derive(proto_derive::CmdID)] -#[cmdid(6416)] +#[cmdid(6405)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TravelBrochureGetPasterScNotify { - #[prost(uint32, tag = "8")] - pub num: u32, #[prost(uint32, tag = "1")] pub fkkobdmfhil: u32, + #[prost(uint32, tag = "5")] + pub num: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Gkdihiffhfd { - #[prost(uint32, tag = "13")] - pub num: u32, - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "9")] pub fkkobdmfhil: u32, + #[prost(uint32, tag = "15")] + pub num: u32, } /// Obf: EFDCMPEMNDE #[derive(proto_derive::CmdID)] -#[cmdid(6483)] +#[cmdid(6473)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TravelBrochureSetCustomValueCsReq { - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "14")] pub value: u32, } /// Obf: NHHPGHKFOKA #[derive(proto_derive::CmdID)] -#[cmdid(6460)] +#[cmdid(6498)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TravelBrochureSetCustomValueScRsp { - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "14")] pub retcode: u32, } /// Obf: FPNIALGEAGM #[derive(proto_derive::CmdID)] -#[cmdid(6402)] +#[cmdid(6485)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TravelBrochureSetPageDescStatusCsReq { - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "6")] pub cpodejofpdd: u32, - #[prost(enumeration = "Dcjaopdinoi", tag = "9")] + #[prost(enumeration = "Dcjaopdinoi", tag = "15")] pub geibgfdenja: i32, } /// Obf: BIDKIKBGMPF #[derive(proto_derive::CmdID)] -#[cmdid(6439)] +#[cmdid(6438)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TravelBrochureSetPageDescStatusScRsp { - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "12")] pub retcode: u32, } /// Obf: HBDADEIJEMO #[derive(proto_derive::CmdID)] -#[cmdid(6443)] +#[cmdid(6452)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TravelBrochurePageResetCsReq { - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "14")] pub cpodejofpdd: u32, } /// Obf: DFLIIEMHJBI #[derive(proto_derive::CmdID)] -#[cmdid(6433)] +#[cmdid(6468)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TravelBrochurePageResetScRsp { - #[prost(message, optional, tag = "9")] - pub cagglkliimf: ::core::option::Option, - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "15")] pub retcode: u32, + #[prost(message, optional, tag = "14")] + pub cagglkliimf: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Kbjphlnapgi { - #[prost(uint32, tag = "1")] - pub iimoplcfhah: u32, - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "9")] pub item_id: u32, + #[prost(uint32, tag = "8")] + pub iimoplcfhah: u32, + #[prost(int32, tag = "6")] + pub ieagbpemflg: i32, #[prost(uint32, tag = "12")] pub kbcdecdnefm: u32, - #[prost(int32, tag = "2")] - pub ieagbpemflg: i32, - #[prost(int32, tag = "10")] + #[prost(int32, tag = "13")] pub lljaegobhmp: i32, } /// Obf: NLJPMPBFPAF #[derive(proto_derive::CmdID)] -#[cmdid(6442)] +#[cmdid(6494)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TravelBrochureApplyPasterListCsReq { + #[prost(message, repeated, tag = "8")] + pub gedglncpggn: ::prost::alloc::vec::Vec, #[prost(uint32, tag = "9")] pub cpodejofpdd: u32, - #[prost(message, repeated, tag = "7")] - pub gedglncpggn: ::prost::alloc::vec::Vec, } /// Obf: HOOFPBMCIBH #[derive(proto_derive::CmdID)] -#[cmdid(6477)] +#[cmdid(6436)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TravelBrochureApplyPasterListScRsp { - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "8")] pub retcode: u32, #[prost(message, optional, tag = "13")] pub cagglkliimf: ::core::option::Option, @@ -32762,326 +34216,326 @@ pub struct TravelBrochureApplyPasterListScRsp { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TreasureDungeonRecordData { - #[prost(uint32, tag = "7")] - pub source_grid_id: u32, - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "5")] pub target_grid_id: u32, - #[prost(uint32, tag = "8")] - pub param1: u32, - #[prost(uint32, tag = "12")] - pub param2: u32, - #[prost(enumeration = "Imknbjcoiop", tag = "4")] + #[prost(enumeration = "Imknbjcoiop", tag = "6")] pub r#type: i32, + #[prost(uint32, tag = "2")] + pub source_grid_id: u32, + #[prost(uint32, tag = "8")] + pub param2: u32, + #[prost(uint32, tag = "9")] + pub param1: u32, } /// Obf: OEKOJKFLFMM #[derive(proto_derive::CmdID)] -#[cmdid(4495)] +#[cmdid(4420)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TreasureDungeonDataScNotify { - #[prost(message, optional, tag = "5")] + #[prost(message, optional, tag = "11")] pub dlejpjjcelj: ::core::option::Option, } /// Obf: KIIHPDMPPAK #[derive(proto_derive::CmdID)] -#[cmdid(4432)] +#[cmdid(4491)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TreasureDungeonFinishScNotify { - #[prost(uint32, tag = "7")] - pub pikapdjhgnd: u32, - #[prost(map = "uint32, uint32", tag = "3")] - pub kgmmpgfgodj: ::std::collections::HashMap, - #[prost(map = "uint32, uint32", tag = "8")] - pub jbcgkldmhnl: ::std::collections::HashMap, - #[prost(bool, tag = "12")] - pub is_win: bool, - #[prost(uint32, tag = "13")] - pub aecncdpjpdg: u32, - #[prost(uint32, tag = "5")] - pub hohhbihfjeh: u32, - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "10")] pub nlmdemohboo: u32, + #[prost(uint32, tag = "2")] + pub hohhbihfjeh: u32, + #[prost(uint32, tag = "3")] + pub aecncdpjpdg: u32, + #[prost(uint32, tag = "8")] + pub pikapdjhgnd: u32, + #[prost(map = "uint32, uint32", tag = "7")] + pub jbcgkldmhnl: ::std::collections::HashMap, + #[prost(map = "uint32, uint32", tag = "14")] + pub kgmmpgfgodj: ::std::collections::HashMap, + #[prost(bool, tag = "15")] + pub is_win: bool, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Klcknklponm { - #[prost(uint32, tag = "12")] - pub fcjeckcickb: u32, - #[prost(message, repeated, tag = "56")] - pub avatar_list: ::prost::alloc::vec::Vec, - #[prost(message, repeated, tag = "11")] - pub mkoambmkdid: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "14")] - pub phhkbaenbmm: u32, - #[prost(uint32, tag = "13")] - pub pikapdjhgnd: u32, - #[prost(uint32, tag = "9")] - pub map_id: u32, - #[prost(message, repeated, tag = "1002")] - pub item_list: ::prost::alloc::vec::Vec, - #[prost(bool, tag = "885")] - pub nodbpkhojec: bool, - #[prost(message, repeated, tag = "3")] - pub bbckfjihidm: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "8")] - pub ncbhadloaga: u32, - #[prost(bool, tag = "121")] - pub cfdpdenppdh: bool, - #[prost(uint32, tag = "363")] - pub iialglddnad: u32, - #[prost(message, repeated, tag = "268")] - pub gffojccklfm: ::prost::alloc::vec::Vec, - #[prost(bool, tag = "1435")] + #[prost(bool, tag = "432")] pub nmfapgolodj: bool, - #[prost(message, repeated, tag = "36")] - pub buff_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "6")] + #[prost(message, repeated, tag = "1")] + pub mkoambmkdid: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "2")] + pub ncbhadloaga: u32, + #[prost(message, repeated, tag = "11")] + pub bbckfjihidm: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "5")] pub jafnpnmohcm: u32, - #[prost(message, repeated, tag = "1232")] + #[prost(message, repeated, tag = "1927")] + pub buff_list: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "3")] + pub phhkbaenbmm: u32, + #[prost(message, repeated, tag = "196")] + pub item_list: ::prost::alloc::vec::Vec, + #[prost(bool, tag = "608")] + pub nodbpkhojec: bool, + #[prost(message, repeated, tag = "601")] pub kjjomephjee: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "1919")] + pub gffojccklfm: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "13")] + pub map_id: u32, + #[prost(uint32, tag = "15")] + pub pikapdjhgnd: u32, + #[prost(uint32, tag = "1831")] + pub iialglddnad: u32, #[prost(uint32, tag = "4")] pub nlmdemohboo: u32, + #[prost(bool, tag = "1391")] + pub cfdpdenppdh: bool, + #[prost(message, repeated, tag = "1641")] + pub avatar_list: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "7")] + pub fcjeckcickb: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Lhanbgnjcif { - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "9")] pub mbejblfhcbh: u32, - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "2")] pub item_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Pcaignjkafa { - #[prost(uint32, tag = "4")] - pub hp: u32, #[prost(uint32, tag = "7")] - pub avatar_type: u32, - #[prost(message, optional, tag = "10")] - pub sp_bar: ::core::option::Option, - #[prost(uint32, tag = "14")] - pub eajljnbnpnp: u32, - #[prost(uint32, tag = "1")] pub avatar_id: u32, + #[prost(uint32, tag = "2")] + pub hp: u32, + #[prost(uint32, tag = "8")] + pub avatar_type: u32, + #[prost(uint32, tag = "10")] + pub eajljnbnpnp: u32, + #[prost(message, optional, tag = "9")] + pub sp_bar: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Lkhhgjppmpp { - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "9")] pub avatar_id: u32, - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "15")] pub avatar_type: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Enbnfolcdie { - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "15")] pub akahnmlnefn: u32, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "1")] pub buff_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Lkcmfeaahhm { - #[prost(bool, tag = "3")] - pub locked: bool, - #[prost(bool, tag = "7")] - pub demncglljcp: bool, - #[prost(message, repeated, tag = "1329")] - pub buff_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "5")] pub monhibbpkee: u32, - #[prost(bool, tag = "12")] - pub knlfeldecal: bool, - #[prost(uint32, tag = "4")] - pub ollhobhdden: u32, - #[prost(bool, tag = "13")] - pub limmileapjm: bool, - #[prost(uint32, tag = "1")] + #[prost(bool, tag = "14")] + pub locked: bool, + #[prost(uint32, tag = "9")] pub hfnhlcfnhkd: u32, + #[prost(bool, tag = "7")] + pub limmileapjm: bool, + #[prost(bool, tag = "6")] + pub demncglljcp: bool, + #[prost(message, repeated, tag = "1151")] + pub buff_list: ::prost::alloc::vec::Vec, + #[prost(bool, tag = "15")] + pub knlfeldecal: bool, + #[prost(uint32, tag = "11")] + pub ollhobhdden: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Gggcocpgbbh { - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "7")] pub leaaebafchp: u32, - #[prost(uint32, tag = "12")] - pub ecghnfccbjj: u32, - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "8")] pub hfnhlcfnhkd: u32, - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "5")] pub buff_id: u32, - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "10")] pub egkdinmmena: u32, + #[prost(uint32, tag = "3")] + pub ecghnfccbjj: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Abhfabfgpof { - #[prost(uint32, tag = "7")] - pub fcjeckcickb: u32, - #[prost(uint32, tag = "9")] - pub nlmdemohboo: u32, - #[prost(bool, tag = "5")] + #[prost(bool, tag = "2")] pub cloonoifefo: bool, - #[prost(uint32, tag = "3")] - pub jafnpnmohcm: u32, - #[prost(uint32, tag = "12")] - pub pikapdjhgnd: u32, - #[prost(bool, tag = "4")] - pub biinncndpcg: bool, - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "8")] + pub fcjeckcickb: u32, + #[prost(uint32, tag = "5")] + pub nlmdemohboo: u32, + #[prost(uint32, tag = "10")] pub nkhkdjkegdh: u32, + #[prost(uint32, tag = "14")] + pub pikapdjhgnd: u32, + #[prost(uint32, tag = "13")] + pub jafnpnmohcm: u32, + #[prost(bool, tag = "3")] + pub biinncndpcg: bool, } /// Obf: NKFCKCACHEC #[derive(proto_derive::CmdID)] -#[cmdid(4472)] +#[cmdid(4480)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetTreasureDungeonActivityDataCsReq {} /// Obf: HPFFPDGLGKL #[derive(proto_derive::CmdID)] -#[cmdid(4485)] +#[cmdid(4402)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetTreasureDungeonActivityDataScRsp { - #[prost(message, repeated, tag = "9")] + #[prost(message, repeated, tag = "1")] pub hiookmoandn: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "8")] pub retcode: u32, } /// Obf: AKOOMBKLAMP #[derive(proto_derive::CmdID)] -#[cmdid(4416)] +#[cmdid(4405)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct EnterTreasureDungeonCsReq { - #[prost(message, repeated, tag = "8")] - pub avatar_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "2")] pub nlmdemohboo: u32, + #[prost(message, repeated, tag = "14")] + pub avatar_list: ::prost::alloc::vec::Vec, } /// Obf: GMLFLPNFDOH #[derive(proto_derive::CmdID)] -#[cmdid(4446)] +#[cmdid(4474)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct EnterTreasureDungeonScRsp { #[prost(uint32, tag = "2")] pub retcode: u32, - #[prost(message, optional, tag = "6")] + #[prost(message, optional, tag = "7")] pub dlejpjjcelj: ::core::option::Option, } /// Obf: GFDIOLJOMAJ #[derive(proto_derive::CmdID)] -#[cmdid(4483)] +#[cmdid(4473)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct OpenTreasureDungeonGridCsReq { - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "13")] pub hfnhlcfnhkd: u32, - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "11")] pub nlmdemohboo: u32, } /// Obf: IAABENEAADF #[derive(proto_derive::CmdID)] -#[cmdid(4460)] +#[cmdid(4498)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct OpenTreasureDungeonGridScRsp { - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "5")] pub retcode: u32, - #[prost(message, optional, tag = "6")] + #[prost(message, optional, tag = "11")] pub dlejpjjcelj: ::core::option::Option, } /// Obf: JFMCKKGFKFI #[derive(proto_derive::CmdID)] -#[cmdid(4443)] +#[cmdid(4452)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct InteractTreasureDungeonGridCsReq { - #[prost(uint32, tag = "4")] - pub hfnhlcfnhkd: u32, - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "7")] pub display_value: u32, - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "5")] + pub hfnhlcfnhkd: u32, + #[prost(uint32, tag = "2")] pub nlmdemohboo: u32, } /// Obf: MMEEDEJFBAC #[derive(proto_derive::CmdID)] -#[cmdid(4433)] +#[cmdid(4468)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct InteractTreasureDungeonGridScRsp { - #[prost(message, optional, tag = "9")] - pub dlejpjjcelj: ::core::option::Option, - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "1")] pub retcode: u32, + #[prost(message, optional, tag = "2")] + pub dlejpjjcelj: ::core::option::Option, } /// Obf: GEHCEAFOCHN #[derive(proto_derive::CmdID)] -#[cmdid(4442)] +#[cmdid(4494)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct UseTreasureDungeonItemCsReq { - #[prost(uint32, tag = "7")] - pub item_id: u32, #[prost(uint32, tag = "3")] - pub hfnhlcfnhkd: u32, - #[prost(uint32, tag = "14")] pub nlmdemohboo: u32, + #[prost(uint32, tag = "5")] + pub hfnhlcfnhkd: u32, + #[prost(uint32, tag = "8")] + pub item_id: u32, } /// Obf: OLHDFPOJCNN #[derive(proto_derive::CmdID)] -#[cmdid(4477)] +#[cmdid(4436)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct UseTreasureDungeonItemScRsp { - #[prost(uint32, tag = "11")] - pub retcode: u32, - #[prost(message, optional, tag = "15")] + #[prost(message, optional, tag = "11")] pub dlejpjjcelj: ::core::option::Option, + #[prost(uint32, tag = "13")] + pub retcode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Jackejlkjna { - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "1")] pub avatar_id: u32, - #[prost(enumeration = "AvatarType", tag = "14")] + #[prost(enumeration = "AvatarType", tag = "3")] pub avatar_type: i32, } /// Obf: LBMFNALBLOK #[derive(proto_derive::CmdID)] -#[cmdid(4402)] +#[cmdid(4485)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct FightTreasureDungeonMonsterCsReq { - #[prost(uint32, tag = "13")] - pub hfnhlcfnhkd: u32, - #[prost(message, repeated, tag = "11")] - pub avatar_list: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "4")] pub nlmdemohboo: u32, + #[prost(message, repeated, tag = "12")] + pub avatar_list: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "5")] + pub hfnhlcfnhkd: u32, } /// Obf: KAFEBFDKNIE #[derive(proto_derive::CmdID)] -#[cmdid(4439)] +#[cmdid(4438)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct FightTreasureDungeonMonsterScRsp { - #[prost(message, optional, tag = "8")] - pub battle_info: ::core::option::Option, - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "5")] pub retcode: u32, + #[prost(message, optional, tag = "12")] + pub battle_info: ::core::option::Option, } /// Obf: FPKJPABNAPF #[derive(proto_derive::CmdID)] -#[cmdid(4458)] +#[cmdid(4487)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct QuitTreasureDungeonCsReq { + #[prost(bool, tag = "8")] + pub pcpdfjhdjcc: bool, #[prost(uint32, tag = "6")] pub nlmdemohboo: u32, - #[prost(bool, tag = "1")] - pub pcpdfjhdjcc: bool, } /// Obf: IAMOBNBMCIF #[derive(proto_derive::CmdID)] -#[cmdid(4421)] +#[cmdid(4409)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct QuitTreasureDungeonScRsp { - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "15")] pub retcode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Tutorial { - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "11")] pub id: u32, #[prost(enumeration = "TutorialStatus", tag = "3")] pub status: i32, @@ -33089,356 +34543,356 @@ pub struct Tutorial { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TutorialGuide { - #[prost(enumeration = "TutorialStatus", tag = "6")] + #[prost(enumeration = "TutorialStatus", tag = "12")] pub status: i32, #[prost(uint32, tag = "7")] pub id: u32, } /// Obf: FKJBDHDHNNH #[derive(proto_derive::CmdID)] -#[cmdid(1695)] +#[cmdid(1620)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetTutorialCsReq {} /// Obf: GetTutorialScRsp #[derive(proto_derive::CmdID)] -#[cmdid(1632)] +#[cmdid(1691)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetTutorialScRsp { - #[prost(uint32, tag = "11")] - pub retcode: u32, - #[prost(message, repeated, tag = "9")] + #[prost(message, repeated, tag = "11")] pub tutorial_list: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "3")] + pub retcode: u32, } /// Obf: LCNDJLKGLNN #[derive(proto_derive::CmdID)] -#[cmdid(1631)] +#[cmdid(1667)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetTutorialGuideCsReq {} /// Obf: GetTutorialGuideScRsp #[derive(proto_derive::CmdID)] -#[cmdid(1640)] +#[cmdid(1639)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetTutorialGuideScRsp { - #[prost(uint32, tag = "7")] - pub retcode: u32, - #[prost(message, repeated, tag = "5")] + #[prost(message, repeated, tag = "6")] pub tutorial_guide_list: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "9")] + pub retcode: u32, } /// Obf: HBLPNJNGONJ #[derive(proto_derive::CmdID)] -#[cmdid(1676)] +#[cmdid(1627)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct UnlockTutorialCsReq { - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "13")] pub tutorial_id: u32, } /// Obf: UnlockTutorialScRsp #[derive(proto_derive::CmdID)] -#[cmdid(1648)] +#[cmdid(1621)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct UnlockTutorialScRsp { - #[prost(message, optional, tag = "10")] - pub tutorial: ::core::option::Option, - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "3")] pub retcode: u32, + #[prost(message, optional, tag = "14")] + pub tutorial: ::core::option::Option, } /// Obf: ACGNLIALGGG #[derive(proto_derive::CmdID)] -#[cmdid(1671)] +#[cmdid(1670)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct UnlockTutorialGuideCsReq { - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "15")] pub group_id: u32, } /// Obf: UnlockTutorialGuideScRsp #[derive(proto_derive::CmdID)] -#[cmdid(1652)] +#[cmdid(1659)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct UnlockTutorialGuideScRsp { - #[prost(uint32, tag = "3")] - pub retcode: u32, - #[prost(message, optional, tag = "15")] + #[prost(message, optional, tag = "8")] pub tutorial_guide: ::core::option::Option, + #[prost(uint32, tag = "13")] + pub retcode: u32, } /// Obf: AJEMPHNPADK #[derive(proto_derive::CmdID)] -#[cmdid(1622)] +#[cmdid(1654)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct FinishTutorialCsReq { - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "14")] pub tutorial_id: u32, } /// Obf: FinishTutorialScRsp #[derive(proto_derive::CmdID)] -#[cmdid(1656)] +#[cmdid(1677)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct FinishTutorialScRsp { #[prost(uint32, tag = "12")] pub retcode: u32, - #[prost(message, optional, tag = "3")] + #[prost(message, optional, tag = "14")] pub tutorial: ::core::option::Option, } /// Obf: FLHGCMBLLFH #[derive(proto_derive::CmdID)] -#[cmdid(1672)] +#[cmdid(1680)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct FinishTutorialGuideCsReq { - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "13")] pub group_id: u32, } /// Obf: FinishTutorialGuideScRsp #[derive(proto_derive::CmdID)] -#[cmdid(1685)] +#[cmdid(1602)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct FinishTutorialGuideScRsp { - #[prost(message, optional, tag = "3")] - pub reward: ::core::option::Option, - #[prost(message, optional, tag = "6")] + #[prost(message, optional, tag = "9")] pub tutorial_guide: ::core::option::Option, - #[prost(uint32, tag = "12")] + #[prost(message, optional, tag = "10")] + pub reward: ::core::option::Option, + #[prost(uint32, tag = "11")] pub retcode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Oiphnjefjlp { - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "1")] pub khfgdkngfdp: u32, - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "4")] pub id: u32, - #[prost(bool, tag = "6")] + #[prost(bool, tag = "8")] pub is_new: bool, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Eikmjejlmgc { - #[prost(bool, tag = "14")] - pub is_new: bool, - #[prost(uint32, repeated, tag = "15")] + #[prost(uint32, repeated, tag = "5")] pub ioodmakjdif: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "12")] pub nckelkegbgl: u32, - #[prost(uint32, tag = "11")] + #[prost(bool, tag = "1")] + pub is_new: bool, + #[prost(uint32, tag = "10")] pub id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Ljjokghfidf { - #[prost(message, repeated, tag = "5")] - pub konbfjpinhn: ::prost::alloc::vec::Vec, - #[prost(message, optional, tag = "11")] + #[prost(message, optional, tag = "9")] pub gokhjlmpnff: ::core::option::Option, + #[prost(message, repeated, tag = "7")] + pub konbfjpinhn: ::prost::alloc::vec::Vec, } /// Obf: PLHMKHOFDHI #[derive(proto_derive::CmdID)] -#[cmdid(495)] +#[cmdid(420)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetWaypointCsReq { - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "4")] pub kiekjeffphk: u32, } /// Obf: BEBAEGDMBEL #[derive(proto_derive::CmdID)] -#[cmdid(432)] +#[cmdid(491)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetWaypointScRsp { - #[prost(message, optional, tag = "9")] - pub fjjflkcmidj: ::core::option::Option, - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "11")] pub retcode: u32, - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "10")] pub hoeahbifkci: u32, + #[prost(message, optional, tag = "4")] + pub fjjflkcmidj: ::core::option::Option, } /// Obf: FPGAEHAKKAF #[derive(proto_derive::CmdID)] -#[cmdid(431)] +#[cmdid(467)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SetCurWaypointCsReq { - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "11")] pub nkcmnafaioi: u32, } /// Obf: HMBALMGNPCK #[derive(proto_derive::CmdID)] -#[cmdid(440)] +#[cmdid(439)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SetCurWaypointScRsp { - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "7")] pub retcode: u32, - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "15")] pub hoeahbifkci: u32, } /// Obf: IHIHLPFGCGN #[derive(proto_derive::CmdID)] -#[cmdid(476)] +#[cmdid(427)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetChapterCsReq {} /// Obf: LEGFMFINLNL #[derive(proto_derive::CmdID)] -#[cmdid(448)] +#[cmdid(421)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetChapterScRsp { - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "6")] pub hoeahbifkci: u32, - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "3")] pub retcode: u32, - #[prost(message, repeated, tag = "11")] + #[prost(message, repeated, tag = "9")] pub ielpiclbbji: ::prost::alloc::vec::Vec, } /// Obf: MIBOLEPDJAB #[derive(proto_derive::CmdID)] -#[cmdid(471)] +#[cmdid(470)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct WaypointShowNewCsNotify { - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "10")] pub kiekjeffphk: u32, - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "4")] pub nkcmnafaioi: u32, } /// Obf: INMIPNINICF #[derive(proto_derive::CmdID)] -#[cmdid(452)] +#[cmdid(459)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TakeChapterRewardCsReq { - #[prost(uint32, tag = "14")] - pub akdghhnklej: u32, - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "11")] pub kiekjeffphk: u32, + #[prost(uint32, tag = "4")] + pub akdghhnklej: u32, } /// Obf: FMEOOOHLMEJ #[derive(proto_derive::CmdID)] -#[cmdid(422)] +#[cmdid(454)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TakeChapterRewardScRsp { - #[prost(uint32, tag = "1")] - pub retcode: u32, - #[prost(uint32, tag = "4")] - pub kiekjeffphk: u32, - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "5")] pub akdghhnklej: u32, + #[prost(uint32, tag = "3")] + pub kiekjeffphk: u32, + #[prost(uint32, tag = "9")] + pub retcode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Hfpffjimckm { - #[prost(bool, tag = "3")] - pub bdnflicnfhn: bool, - #[prost(message, repeated, tag = "2")] + #[prost(message, repeated, tag = "8")] pub opcldnllnfh: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "7")] + #[prost(bool, tag = "1")] + pub bdnflicnfhn: bool, + #[prost(uint32, tag = "14")] pub lkjmlidaodm: u32, - #[prost(message, optional, tag = "14")] + #[prost(message, optional, tag = "11")] pub motion: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Hehpioggieg { - #[prost(string, tag = "9")] + #[prost(string, tag = "11")] pub miilnlhddjm: ::prost::alloc::string::String, - #[prost(uint32, tag = "7")] - pub lkjmlidaodm: u32, - #[prost(message, repeated, tag = "2")] - pub opcldnllnfh: ::prost::alloc::vec::Vec, - #[prost(uint32, tag = "6")] - pub id: u32, - #[prost(bool, tag = "5")] + #[prost(bool, tag = "14")] pub bdnflicnfhn: bool, - #[prost(message, optional, tag = "12")] + #[prost(message, optional, tag = "7")] pub hefjejhojea: ::core::option::Option, + #[prost(message, repeated, tag = "9")] + pub opcldnllnfh: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "12")] + pub id: u32, + #[prost(uint32, tag = "5")] + pub lkjmlidaodm: u32, } /// Obf: PPNCELOONKK #[derive(proto_derive::CmdID)] -#[cmdid(6504)] +#[cmdid(6549)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct StartWolfBroGameCsReq { - #[prost(bool, tag = "3")] - pub djfcmlipdab: bool, #[prost(uint32, tag = "12")] pub id: u32, - #[prost(message, optional, tag = "5")] + #[prost(message, optional, tag = "3")] pub motion: ::core::option::Option, - #[prost(message, optional, tag = "11")] + #[prost(bool, tag = "8")] + pub djfcmlipdab: bool, + #[prost(message, optional, tag = "9")] pub group_state_info: ::core::option::Option, } /// Obf: CLLNMGKEFAM #[derive(proto_derive::CmdID)] -#[cmdid(6546)] +#[cmdid(6527)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct StartWolfBroGameScRsp { - #[prost(uint32, tag = "13")] - pub retcode: u32, - #[prost(message, optional, tag = "6")] + #[prost(message, optional, tag = "5")] pub dnplihjgjih: ::core::option::Option, + #[prost(uint32, tag = "14")] + pub retcode: u32, } /// Obf: GMMCJKMEGNO #[derive(proto_derive::CmdID)] -#[cmdid(6502)] +#[cmdid(6518)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ArchiveWolfBroGameCsReq { - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "14")] pub id: u32, #[prost(message, optional, tag = "4")] pub motion: ::core::option::Option, } /// Obf: LBHKNCBDGCO #[derive(proto_derive::CmdID)] -#[cmdid(6537)] +#[cmdid(6536)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ArchiveWolfBroGameScRsp { - #[prost(message, optional, tag = "6")] - pub dnplihjgjih: ::core::option::Option, - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "14")] pub retcode: u32, + #[prost(message, optional, tag = "7")] + pub dnplihjgjih: ::core::option::Option, } /// Obf: GIGAEOCILFF #[derive(proto_derive::CmdID)] -#[cmdid(6536)] +#[cmdid(6511)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RestoreWolfBroGameArchiveCsReq { - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "6")] pub id: u32, } /// Obf: GAGANNMHEPA #[derive(proto_derive::CmdID)] -#[cmdid(6517)] +#[cmdid(6537)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RestoreWolfBroGameArchiveScRsp { - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "1")] pub retcode: u32, - #[prost(message, optional, tag = "15")] + #[prost(message, optional, tag = "8")] pub dnplihjgjih: ::core::option::Option, } /// Obf: FEFMJKKEMKP #[derive(proto_derive::CmdID)] -#[cmdid(6527)] +#[cmdid(6517)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct QuitWolfBroGameCsReq { - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "3")] pub id: u32, } /// Obf: CKLCOEHEMKE #[derive(proto_derive::CmdID)] -#[cmdid(6515)] +#[cmdid(6539)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct QuitWolfBroGameScRsp { - #[prost(message, optional, tag = "10")] + #[prost(message, optional, tag = "3")] pub dnplihjgjih: ::core::option::Option, - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "10")] pub retcode: u32, } /// Obf: KNPEDHPKKHC #[derive(proto_derive::CmdID)] -#[cmdid(6543)] +#[cmdid(6512)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetWolfBroGameDataCsReq { - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "4")] pub id: u32, } /// Obf: LJEMHMMIAGF #[derive(proto_derive::CmdID)] -#[cmdid(6509)] +#[cmdid(6510)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetWolfBroGameDataScRsp { - #[prost(message, optional, tag = "12")] + #[prost(message, optional, tag = "15")] pub dnplihjgjih: ::core::option::Option, - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "3")] pub retcode: u32, } /// Obf: LPFGHGCJBIL @@ -33446,76 +34900,76 @@ pub struct GetWolfBroGameDataScRsp { #[cmdid(6545)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct WolfBroGameDataChangeScNotify { - #[prost(message, optional, tag = "4")] + #[prost(message, optional, tag = "9")] pub dnplihjgjih: ::core::option::Option, } /// Obf: DPAPCGKGEKC #[derive(proto_derive::CmdID)] -#[cmdid(6507)] +#[cmdid(6506)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct WolfBroGameUseBulletCsReq { - #[prost(message, optional, tag = "12")] - pub mibcfimmikg: ::core::option::Option, - #[prost(uint32, repeated, tag = "4")] + #[prost(uint32, repeated, tag = "12")] pub assist_monster_entity_id_list: ::prost::alloc::vec::Vec, + #[prost(message, optional, tag = "11")] + pub mibcfimmikg: ::core::option::Option, } /// Obf: JNDKCCLFKIF #[derive(proto_derive::CmdID)] -#[cmdid(6550)] +#[cmdid(6528)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct WolfBroGameUseBulletScRsp { - #[prost(message, optional, tag = "11")] - pub dnplihjgjih: ::core::option::Option, - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "1")] pub retcode: u32, + #[prost(message, optional, tag = "10")] + pub dnplihjgjih: ::core::option::Option, } /// Obf: FDKODKFMHLK #[derive(proto_derive::CmdID)] -#[cmdid(6540)] +#[cmdid(6519)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct WolfBroGamePickupBulletCsReq { - #[prost(message, optional, tag = "11")] + #[prost(message, optional, tag = "1")] pub mibcfimmikg: ::core::option::Option, } /// Obf: JABEPKAINFO #[derive(proto_derive::CmdID)] -#[cmdid(6520)] +#[cmdid(6526)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct WolfBroGamePickupBulletScRsp { + #[prost(uint32, tag = "3")] + pub retcode: u32, #[prost(message, optional, tag = "15")] pub dnplihjgjih: ::core::option::Option, - #[prost(uint32, tag = "14")] - pub retcode: u32, } /// Obf: FKOLLCMEFIJ #[derive(proto_derive::CmdID)] -#[cmdid(6544)] +#[cmdid(6534)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct WolfBroGameActivateBulletCsReq { - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "11")] pub config_id: u32, - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "5")] pub group_id: u32, } /// Obf: FKHKJGFHAHE #[derive(proto_derive::CmdID)] -#[cmdid(6532)] +#[cmdid(6546)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct WolfBroGameActivateBulletScRsp { - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "3")] pub retcode: u32, } /// Obf: PHHDAGNAABO #[derive(proto_derive::CmdID)] -#[cmdid(6523)] +#[cmdid(6522)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct WolfBroGameExplodeMonsterCsReq { - #[prost(uint32, repeated, tag = "14")] + #[prost(uint32, repeated, tag = "10")] pub assist_monster_entity_id_list: ::prost::alloc::vec::Vec, } /// Obf: IHPNAMPDBGJ #[derive(proto_derive::CmdID)] -#[cmdid(6526)] +#[cmdid(6525)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct WolfBroGameExplodeMonsterScRsp { #[prost(uint32, tag = "8")] @@ -33523,20 +34977,20 @@ pub struct WolfBroGameExplodeMonsterScRsp { } /// Obf: CCIFHOLFGNG #[derive(proto_derive::CmdID)] -#[cmdid(7626)] +#[cmdid(7627)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct WorldUnlockCsReq { - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "1")] pub npebnekdlen: u32, } /// Obf: LEMIOKMIODL #[derive(proto_derive::CmdID)] -#[cmdid(7627)] +#[cmdid(7626)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct WorldUnlockScRsp { - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "4")] pub npebnekdlen: u32, - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "6")] pub retcode: u32, } #[derive(proto_derive::CmdID)] @@ -33608,6 +35062,7 @@ pub enum PlayerActionType { PlayerActionMainMissionRecover = 211, PlayerActionMainMissionDisable = 212, PlayerActionConsumeItemSubMissionFinish = 213, + PlayerActionItemMonitorAllSources = 999, PlayerActionGm = 1001, PlayerActionCustomOp = 1002, PlayerActionCheckSum = 1003, @@ -33642,6 +35097,7 @@ pub enum PlayerActionType { PlayerActionAvatarSkinChange = 1122, PlayerActionSetGrowthTargetFunctionConfig = 1123, PlayerActionAvatarSkinActivityReissue = 1124, + PlayerActionSetAvatarEnhancedId = 1125, PlayerActionStageBegin = 1202, PlayerActionStageEnd = 1203, PlayerActionCocoonStageBegin = 1205, @@ -33701,6 +35157,7 @@ pub enum PlayerActionType { PlayerActionQuestReset = 1616, PlayerActionQuestOptionalReward = 1617, PlayerActionMcvChange = 1618, + PlayerActionQuestReissue = 1619, PlayerActionPropInteract = 1704, PlayerActionAvatarMazeSkill = 1705, PlayerActionEnterMaze = 1706, @@ -33772,6 +35229,7 @@ pub enum PlayerActionType { PlayerActionRelicCocoonSetting = 1949, PlayerActionPersonalCardChange = 1950, PlayerActionPhoneCaseChange = 1951, + PlayerActionDeliveryItemReward = 1952, PlayerActionTutorialGuideFinish = 2001, PlayerActionTutorial = 2002, PlayerActionTutorialGuide = 2003, @@ -34316,6 +35774,7 @@ pub enum PlayerActionType { PlayerActionRogueTournTitanSelectTitanBless = 6245, PlayerActionRogueTournDivisionChange = 6246, PlayerActionRogueTournSelectReRollMiracle = 6247, + PlayerActionRogueTournTriggerBattleByShop = 6248, PlayerActionRogueWorkbenchReforgeFormula = 6281, PlayerActionRogueWorkbenchReforgeMiracle = 6282, PlayerActionRogueWorkbenchComposeMiracle = 6283, @@ -34334,6 +35793,13 @@ pub enum PlayerActionType { PlayerActionMultiplePlayLobbyKick = 6311, PlayerActionMultiplePlayLobbyMatch = 6312, PlayerActionMarbleSettle = 6313, + PlayerActionMatchThreeSoloSettle = 6314, + PlayerActionMatchThreeV2BattleitemLevelup = 6315, + PlayerActionMatchThreeV2PveSettle = 6316, + PlayerActionMatchThreeV2PvpSettle = 6317, + PlayerActionMatch3SoloGameStart = 6318, + PlayerActionMatch3SoloGameEnd = 6319, + PlayerActionMatch3SoloRoundEnd = 6320, PlayerActionSwordTrainingLearnSkill = 6351, PlayerActionSwordTrainingNormalAction = 6352, PlayerActionSwordTrainingStoryEffect = 6353, @@ -34454,6 +35920,7 @@ pub enum PlayerActionType { PlayerActionTarotBookFinishStory = 6955, PlayerActionTarotBookFinishInteraction = 6956, PlayerActionTarotBookChangeEnergy = 6957, + PlayerActionTarotBookUnlockInteraction = 6958, PlayerActionChimeraRoundStart = 6971, PlayerActionChimeraRoundWorkStart = 6972, PlayerActionChimeraRoundWorkEnd = 6973, @@ -34467,6 +35934,23 @@ pub enum PlayerActionType { PlayerActionReissueAvatarTokenItem = 6992, PlayerActionAvatarDeliverRewardActivityTakeReward = 7001, PlayerActionLocalLegendReward = 7031, + PlayerActionFateLevelStart = 7041, + PlayerActionFateLevelSettle = 7042, + PlayerActionFateBattleStart = 7043, + PlayerActionFateBattleEnd = 7044, + PlayerActionFateAddHougu = 7045, + PlayerActionFateSelectHougu = 7046, + PlayerActionFateSelectReiju = 7047, + PlayerActionFateRefreshReiju = 7048, + PlayerActionFateAddCoin = 7049, + PlayerActionFateBuyBuff = 7050, + PlayerActionFateSellBuff = 7051, + PlayerActionFateRefreshShop = 7052, + PlayerActionFateLockGoods = 7053, + PlayerActionFateUnlockGoods = 7054, + PlayerActionFateTakeExpReward = 7055, + PlayerActionFateAddExp = 7056, + PlayerActionFateMasterHpChange = 7057, PlayerActionParkourStartLevel = 7061, PlayerActionParkourEndLevel = 7062, PlayerActionBasinChestInteractResult = 7091, @@ -34526,6 +36010,9 @@ impl PlayerActionType { Self::PlayerActionConsumeItemSubMissionFinish => { "PLAYER_ACTION_CONSUME_ITEM_SUB_MISSION_FINISH" } + Self::PlayerActionItemMonitorAllSources => { + "PLAYER_ACTION_ITEM_MONITOR_ALL_SOURCES" + } Self::PlayerActionGm => "PLAYER_ACTION_GM", Self::PlayerActionCustomOp => "PLAYER_ACTION_CUSTOM_OP", Self::PlayerActionCheckSum => "PLAYER_ACTION_CHECK_SUM", @@ -34574,6 +36061,9 @@ impl PlayerActionType { Self::PlayerActionAvatarSkinActivityReissue => { "PLAYER_ACTION_AVATAR_SKIN_ACTIVITY_REISSUE" } + Self::PlayerActionSetAvatarEnhancedId => { + "PLAYER_ACTION_SET_AVATAR_ENHANCED_ID" + } Self::PlayerActionStageBegin => "PLAYER_ACTION_STAGE_BEGIN", Self::PlayerActionStageEnd => "PLAYER_ACTION_STAGE_END", Self::PlayerActionCocoonStageBegin => "PLAYER_ACTION_COCOON_STAGE_BEGIN", @@ -34649,6 +36139,7 @@ impl PlayerActionType { "PLAYER_ACTION_QUEST_OPTIONAL_REWARD" } Self::PlayerActionMcvChange => "PLAYER_ACTION_MCV_CHANGE", + Self::PlayerActionQuestReissue => "PLAYER_ACTION_QUEST_REISSUE", Self::PlayerActionPropInteract => "PLAYER_ACTION_PROP_INTERACT", Self::PlayerActionAvatarMazeSkill => "PLAYER_ACTION_AVATAR_MAZE_SKILL", Self::PlayerActionEnterMaze => "PLAYER_ACTION_ENTER_MAZE", @@ -34748,6 +36239,7 @@ impl PlayerActionType { Self::PlayerActionRelicCocoonSetting => "PLAYER_ACTION_RELIC_COCOON_SETTING", Self::PlayerActionPersonalCardChange => "PLAYER_ACTION_PERSONAL_CARD_CHANGE", Self::PlayerActionPhoneCaseChange => "PLAYER_ACTION_PHONE_CASE_CHANGE", + Self::PlayerActionDeliveryItemReward => "PLAYER_ACTION_DELIVERY_ITEM_REWARD", Self::PlayerActionTutorialGuideFinish => { "PLAYER_ACTION_TUTORIAL_GUIDE_FINISH" } @@ -35990,6 +37482,9 @@ impl PlayerActionType { Self::PlayerActionRogueTournSelectReRollMiracle => { "PLAYER_ACTION_ROGUE_TOURN_SELECT_RE_ROLL_MIRACLE" } + Self::PlayerActionRogueTournTriggerBattleByShop => { + "PLAYER_ACTION_ROGUE_TOURN_TRIGGER_BATTLE_BY_SHOP" + } Self::PlayerActionRogueWorkbenchReforgeFormula => { "PLAYER_ACTION_ROGUE_WORKBENCH_REFORGE_FORMULA" } @@ -36032,6 +37527,23 @@ impl PlayerActionType { "PLAYER_ACTION_MULTIPLE_PLAY_LOBBY_MATCH" } Self::PlayerActionMarbleSettle => "PLAYER_ACTION_MARBLE_SETTLE", + Self::PlayerActionMatchThreeSoloSettle => { + "PLAYER_ACTION_MATCH_THREE_SOLO_SETTLE" + } + Self::PlayerActionMatchThreeV2BattleitemLevelup => { + "PLAYER_ACTION_MATCH_THREE_V2_BATTLEITEM_LEVELUP" + } + Self::PlayerActionMatchThreeV2PveSettle => { + "PLAYER_ACTION_MATCH_THREE_V2_PVE_SETTLE" + } + Self::PlayerActionMatchThreeV2PvpSettle => { + "PLAYER_ACTION_MATCH_THREE_V2_PVP_SETTLE" + } + Self::PlayerActionMatch3SoloGameStart => { + "PLAYER_ACTION_MATCH3_SOLO_GAME_START" + } + Self::PlayerActionMatch3SoloGameEnd => "PLAYER_ACTION_MATCH3_SOLO_GAME_END", + Self::PlayerActionMatch3SoloRoundEnd => "PLAYER_ACTION_MATCH3_SOLO_ROUND_END", Self::PlayerActionSwordTrainingLearnSkill => { "PLAYER_ACTION_SWORD_TRAINING_LEARN_SKILL" } @@ -36346,6 +37858,9 @@ impl PlayerActionType { Self::PlayerActionTarotBookChangeEnergy => { "PLAYER_ACTION_TAROT_BOOK_CHANGE_ENERGY" } + Self::PlayerActionTarotBookUnlockInteraction => { + "PLAYER_ACTION_TAROT_BOOK_UNLOCK_INTERACTION" + } Self::PlayerActionChimeraRoundStart => "PLAYER_ACTION_CHIMERA_ROUND_START", Self::PlayerActionChimeraRoundWorkStart => { "PLAYER_ACTION_CHIMERA_ROUND_WORK_START" @@ -36375,6 +37890,23 @@ impl PlayerActionType { "PLAYER_ACTION_AVATAR_DELIVER_REWARD_ACTIVITY_TAKE_REWARD" } Self::PlayerActionLocalLegendReward => "PLAYER_ACTION_LOCAL_LEGEND_REWARD", + Self::PlayerActionFateLevelStart => "PLAYER_ACTION_FATE_LEVEL_START", + Self::PlayerActionFateLevelSettle => "PLAYER_ACTION_FATE_LEVEL_SETTLE", + Self::PlayerActionFateBattleStart => "PLAYER_ACTION_FATE_BATTLE_START", + Self::PlayerActionFateBattleEnd => "PLAYER_ACTION_FATE_BATTLE_END", + Self::PlayerActionFateAddHougu => "PLAYER_ACTION_FATE_ADD_HOUGU", + Self::PlayerActionFateSelectHougu => "PLAYER_ACTION_FATE_SELECT_HOUGU", + Self::PlayerActionFateSelectReiju => "PLAYER_ACTION_FATE_SELECT_REIJU", + Self::PlayerActionFateRefreshReiju => "PLAYER_ACTION_FATE_REFRESH_REIJU", + Self::PlayerActionFateAddCoin => "PLAYER_ACTION_FATE_ADD_COIN", + Self::PlayerActionFateBuyBuff => "PLAYER_ACTION_FATE_BUY_BUFF", + Self::PlayerActionFateSellBuff => "PLAYER_ACTION_FATE_SELL_BUFF", + Self::PlayerActionFateRefreshShop => "PLAYER_ACTION_FATE_REFRESH_SHOP", + Self::PlayerActionFateLockGoods => "PLAYER_ACTION_FATE_LOCK_GOODS", + Self::PlayerActionFateUnlockGoods => "PLAYER_ACTION_FATE_UNLOCK_GOODS", + Self::PlayerActionFateTakeExpReward => "PLAYER_ACTION_FATE_TAKE_EXP_REWARD", + Self::PlayerActionFateAddExp => "PLAYER_ACTION_FATE_ADD_EXP", + Self::PlayerActionFateMasterHpChange => "PLAYER_ACTION_FATE_MASTER_HP_CHANGE", Self::PlayerActionParkourStartLevel => "PLAYER_ACTION_PARKOUR_START_LEVEL", Self::PlayerActionParkourEndLevel => "PLAYER_ACTION_PARKOUR_END_LEVEL", Self::PlayerActionBasinChestInteractResult => { @@ -36453,6 +37985,9 @@ impl PlayerActionType { "PLAYER_ACTION_CONSUME_ITEM_SUB_MISSION_FINISH" => { Some(Self::PlayerActionConsumeItemSubMissionFinish) } + "PLAYER_ACTION_ITEM_MONITOR_ALL_SOURCES" => { + Some(Self::PlayerActionItemMonitorAllSources) + } "PLAYER_ACTION_GM" => Some(Self::PlayerActionGm), "PLAYER_ACTION_CUSTOM_OP" => Some(Self::PlayerActionCustomOp), "PLAYER_ACTION_CHECK_SUM" => Some(Self::PlayerActionCheckSum), @@ -36509,6 +38044,9 @@ impl PlayerActionType { "PLAYER_ACTION_AVATAR_SKIN_ACTIVITY_REISSUE" => { Some(Self::PlayerActionAvatarSkinActivityReissue) } + "PLAYER_ACTION_SET_AVATAR_ENHANCED_ID" => { + Some(Self::PlayerActionSetAvatarEnhancedId) + } "PLAYER_ACTION_STAGE_BEGIN" => Some(Self::PlayerActionStageBegin), "PLAYER_ACTION_STAGE_END" => Some(Self::PlayerActionStageEnd), "PLAYER_ACTION_COCOON_STAGE_BEGIN" => { @@ -36602,6 +38140,7 @@ impl PlayerActionType { Some(Self::PlayerActionQuestOptionalReward) } "PLAYER_ACTION_MCV_CHANGE" => Some(Self::PlayerActionMcvChange), + "PLAYER_ACTION_QUEST_REISSUE" => Some(Self::PlayerActionQuestReissue), "PLAYER_ACTION_PROP_INTERACT" => Some(Self::PlayerActionPropInteract), "PLAYER_ACTION_AVATAR_MAZE_SKILL" => Some(Self::PlayerActionAvatarMazeSkill), "PLAYER_ACTION_ENTER_MAZE" => Some(Self::PlayerActionEnterMaze), @@ -36737,6 +38276,9 @@ impl PlayerActionType { Some(Self::PlayerActionPersonalCardChange) } "PLAYER_ACTION_PHONE_CASE_CHANGE" => Some(Self::PlayerActionPhoneCaseChange), + "PLAYER_ACTION_DELIVERY_ITEM_REWARD" => { + Some(Self::PlayerActionDeliveryItemReward) + } "PLAYER_ACTION_TUTORIAL_GUIDE_FINISH" => { Some(Self::PlayerActionTutorialGuideFinish) } @@ -38175,6 +39717,9 @@ impl PlayerActionType { "PLAYER_ACTION_ROGUE_TOURN_SELECT_RE_ROLL_MIRACLE" => { Some(Self::PlayerActionRogueTournSelectReRollMiracle) } + "PLAYER_ACTION_ROGUE_TOURN_TRIGGER_BATTLE_BY_SHOP" => { + Some(Self::PlayerActionRogueTournTriggerBattleByShop) + } "PLAYER_ACTION_ROGUE_WORKBENCH_REFORGE_FORMULA" => { Some(Self::PlayerActionRogueWorkbenchReforgeFormula) } @@ -38227,6 +39772,27 @@ impl PlayerActionType { Some(Self::PlayerActionMultiplePlayLobbyMatch) } "PLAYER_ACTION_MARBLE_SETTLE" => Some(Self::PlayerActionMarbleSettle), + "PLAYER_ACTION_MATCH_THREE_SOLO_SETTLE" => { + Some(Self::PlayerActionMatchThreeSoloSettle) + } + "PLAYER_ACTION_MATCH_THREE_V2_BATTLEITEM_LEVELUP" => { + Some(Self::PlayerActionMatchThreeV2BattleitemLevelup) + } + "PLAYER_ACTION_MATCH_THREE_V2_PVE_SETTLE" => { + Some(Self::PlayerActionMatchThreeV2PveSettle) + } + "PLAYER_ACTION_MATCH_THREE_V2_PVP_SETTLE" => { + Some(Self::PlayerActionMatchThreeV2PvpSettle) + } + "PLAYER_ACTION_MATCH3_SOLO_GAME_START" => { + Some(Self::PlayerActionMatch3SoloGameStart) + } + "PLAYER_ACTION_MATCH3_SOLO_GAME_END" => { + Some(Self::PlayerActionMatch3SoloGameEnd) + } + "PLAYER_ACTION_MATCH3_SOLO_ROUND_END" => { + Some(Self::PlayerActionMatch3SoloRoundEnd) + } "PLAYER_ACTION_SWORD_TRAINING_LEARN_SKILL" => { Some(Self::PlayerActionSwordTrainingLearnSkill) } @@ -38571,6 +40137,9 @@ impl PlayerActionType { "PLAYER_ACTION_TAROT_BOOK_CHANGE_ENERGY" => { Some(Self::PlayerActionTarotBookChangeEnergy) } + "PLAYER_ACTION_TAROT_BOOK_UNLOCK_INTERACTION" => { + Some(Self::PlayerActionTarotBookUnlockInteraction) + } "PLAYER_ACTION_CHIMERA_ROUND_START" => { Some(Self::PlayerActionChimeraRoundStart) } @@ -38608,6 +40177,29 @@ impl PlayerActionType { "PLAYER_ACTION_LOCAL_LEGEND_REWARD" => { Some(Self::PlayerActionLocalLegendReward) } + "PLAYER_ACTION_FATE_LEVEL_START" => Some(Self::PlayerActionFateLevelStart), + "PLAYER_ACTION_FATE_LEVEL_SETTLE" => Some(Self::PlayerActionFateLevelSettle), + "PLAYER_ACTION_FATE_BATTLE_START" => Some(Self::PlayerActionFateBattleStart), + "PLAYER_ACTION_FATE_BATTLE_END" => Some(Self::PlayerActionFateBattleEnd), + "PLAYER_ACTION_FATE_ADD_HOUGU" => Some(Self::PlayerActionFateAddHougu), + "PLAYER_ACTION_FATE_SELECT_HOUGU" => Some(Self::PlayerActionFateSelectHougu), + "PLAYER_ACTION_FATE_SELECT_REIJU" => Some(Self::PlayerActionFateSelectReiju), + "PLAYER_ACTION_FATE_REFRESH_REIJU" => { + Some(Self::PlayerActionFateRefreshReiju) + } + "PLAYER_ACTION_FATE_ADD_COIN" => Some(Self::PlayerActionFateAddCoin), + "PLAYER_ACTION_FATE_BUY_BUFF" => Some(Self::PlayerActionFateBuyBuff), + "PLAYER_ACTION_FATE_SELL_BUFF" => Some(Self::PlayerActionFateSellBuff), + "PLAYER_ACTION_FATE_REFRESH_SHOP" => Some(Self::PlayerActionFateRefreshShop), + "PLAYER_ACTION_FATE_LOCK_GOODS" => Some(Self::PlayerActionFateLockGoods), + "PLAYER_ACTION_FATE_UNLOCK_GOODS" => Some(Self::PlayerActionFateUnlockGoods), + "PLAYER_ACTION_FATE_TAKE_EXP_REWARD" => { + Some(Self::PlayerActionFateTakeExpReward) + } + "PLAYER_ACTION_FATE_ADD_EXP" => Some(Self::PlayerActionFateAddExp), + "PLAYER_ACTION_FATE_MASTER_HP_CHANGE" => { + Some(Self::PlayerActionFateMasterHpChange) + } "PLAYER_ACTION_PARKOUR_START_LEVEL" => { Some(Self::PlayerActionParkourStartLevel) } @@ -38752,6 +40344,7 @@ pub enum VirtualItemType { VirtualItemRogueMagicTalentCoin = 281026, VirtualItemEvolveBuildScCoin = 281027, VirtualItemEvolveBuildRewardExp = 281028, + VirtualItemMatchthreeV2Coin = 281029, } impl VirtualItemType { /// String value of the enum field names used in the ProtoBuf definition. @@ -38833,6 +40426,7 @@ impl VirtualItemType { Self::VirtualItemEvolveBuildRewardExp => { "VIRTUAL_ITEM_EVOLVE_BUILD_REWARD_EXP" } + Self::VirtualItemMatchthreeV2Coin => "VIRTUAL_ITEM_MATCHTHREE_V2_COIN", } } /// Creates an enum from field names used in the ProtoBuf definition. @@ -38923,6 +40517,7 @@ impl VirtualItemType { "VIRTUAL_ITEM_EVOLVE_BUILD_REWARD_EXP" => { Some(Self::VirtualItemEvolveBuildRewardExp) } + "VIRTUAL_ITEM_MATCHTHREE_V2_COIN" => Some(Self::VirtualItemMatchthreeV2Coin), _ => None, } } @@ -39351,6 +40946,40 @@ impl MultiPathAvatarType { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] +pub enum Jnicoeppdfn { + AvatarTagNone = 0, + AvatarTagPlayerHasSetEnhancedId = 1, + AvatarTagMax = 32, +} +impl Jnicoeppdfn { + /// String value of the enum field names used in the ProtoBuf definition. + /// + /// The values are not transformed in any way and thus are considered stable + /// (if the ProtoBuf definition does not change) and safe for programmatic use. + pub fn as_str_name(&self) -> &'static str { + match self { + Self::AvatarTagNone => "AVATAR_TAG_NONE", + Self::AvatarTagPlayerHasSetEnhancedId => { + "AVATAR_TAG_PLAYER_HAS_SET_ENHANCED_ID" + } + Self::AvatarTagMax => "AVATAR_TAG_MAX", + } + } + /// Creates an enum from field names used in the ProtoBuf definition. + pub fn from_str_name(value: &str) -> ::core::option::Option { + match value { + "AVATAR_TAG_NONE" => Some(Self::AvatarTagNone), + "AVATAR_TAG_PLAYER_HAS_SET_ENHANCED_ID" => { + Some(Self::AvatarTagPlayerHasSetEnhancedId) + } + "AVATAR_TAG_MAX" => Some(Self::AvatarTagMax), + _ => None, + } + } +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] +#[repr(i32)] pub enum Gender { None = 0, Man = 1, @@ -39440,6 +41069,7 @@ pub enum ProductGiftType { ProductGiftFtcUpGachaTicket10 = 19, ProductGiftFtcNormalGachaTicket1 = 20, ProductGiftFtcNormalGachaTicket10 = 21, + ProductGiftTicket10 = 22, } impl ProductGiftType { /// String value of the enum field names used in the ProtoBuf definition. @@ -39474,6 +41104,7 @@ impl ProductGiftType { Self::ProductGiftFtcNormalGachaTicket10 => { "PRODUCT_GIFT_FTC_NORMAL_GACHA_TICKET_10" } + Self::ProductGiftTicket10 => "PRODUCT_GIFT_TICKET_10", } } /// Creates an enum from field names used in the ProtoBuf definition. @@ -39509,6 +41140,7 @@ impl ProductGiftType { "PRODUCT_GIFT_FTC_NORMAL_GACHA_TICKET_10" => { Some(Self::ProductGiftFtcNormalGachaTicket10) } + "PRODUCT_GIFT_TICKET_10" => Some(Self::ProductGiftTicket10), _ => None, } } @@ -39583,6 +41215,13 @@ pub enum FeatureSwitchType { FeatureSwitchRogueTournBuildRefShareCodeRename = 65, FeatureSwitchRelicSmartDiscard = 66, FeatureSwitchPlanetfesSocial = 67, + FeatureSwitchRelicReforge = 68, + FeatureSwitchRelicCompose = 69, + FeatureSwitchRelicDecompose = 70, + FeatureSwitchRogueTournCocoon = 71, + FeatureSwitchItemCompose = 72, + FeatureSwitchGrowMaterialAutoComplete = 73, + FeatureSwitchSkipPerformance = 74, } impl FeatureSwitchType { /// String value of the enum field names used in the ProtoBuf definition. @@ -39683,6 +41322,15 @@ impl FeatureSwitchType { } Self::FeatureSwitchRelicSmartDiscard => "FEATURE_SWITCH_RELIC_SMART_DISCARD", Self::FeatureSwitchPlanetfesSocial => "FEATURE_SWITCH_PLANETFES_SOCIAL", + Self::FeatureSwitchRelicReforge => "FEATURE_SWITCH_RELIC_REFORGE", + Self::FeatureSwitchRelicCompose => "FEATURE_SWITCH_RELIC_COMPOSE", + Self::FeatureSwitchRelicDecompose => "FEATURE_SWITCH_RELIC_DECOMPOSE", + Self::FeatureSwitchRogueTournCocoon => "FEATURE_SWITCH_ROGUE_TOURN_COCOON", + Self::FeatureSwitchItemCompose => "FEATURE_SWITCH_ITEM_COMPOSE", + Self::FeatureSwitchGrowMaterialAutoComplete => { + "FEATURE_SWITCH_GROW_MATERIAL_AUTO_COMPLETE" + } + Self::FeatureSwitchSkipPerformance => "FEATURE_SWITCH_SKIP_PERFORMANCE", } } /// Creates an enum from field names used in the ProtoBuf definition. @@ -39806,6 +41454,17 @@ impl FeatureSwitchType { Some(Self::FeatureSwitchRelicSmartDiscard) } "FEATURE_SWITCH_PLANETFES_SOCIAL" => Some(Self::FeatureSwitchPlanetfesSocial), + "FEATURE_SWITCH_RELIC_REFORGE" => Some(Self::FeatureSwitchRelicReforge), + "FEATURE_SWITCH_RELIC_COMPOSE" => Some(Self::FeatureSwitchRelicCompose), + "FEATURE_SWITCH_RELIC_DECOMPOSE" => Some(Self::FeatureSwitchRelicDecompose), + "FEATURE_SWITCH_ROGUE_TOURN_COCOON" => { + Some(Self::FeatureSwitchRogueTournCocoon) + } + "FEATURE_SWITCH_ITEM_COMPOSE" => Some(Self::FeatureSwitchItemCompose), + "FEATURE_SWITCH_GROW_MATERIAL_AUTO_COMPLETE" => { + Some(Self::FeatureSwitchGrowMaterialAutoComplete) + } + "FEATURE_SWITCH_SKIP_PERFORMANCE" => Some(Self::FeatureSwitchSkipPerformance), _ => None, } } @@ -40504,6 +42163,87 @@ impl Ijhbcbeopfe { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] +pub enum Dlbfahoagph { + FateSourceTypeNone = 0, + FateSourceTypeFateBuff = 1, + FateSourceTypeTraitBuff = 2, + FateSourceTypeReiju = 3, + FateSourceTypeHougu = 4, + FateSourceTypeAffix = 5, + FateSourceTypeReijuAffix = 6, + FateSourceTypeLevel = 7, + FateSourceTypeMaster = 8, + FateSourceTypeTrait = 9, +} +impl Dlbfahoagph { + /// String value of the enum field names used in the ProtoBuf definition. + /// + /// The values are not transformed in any way and thus are considered stable + /// (if the ProtoBuf definition does not change) and safe for programmatic use. + pub fn as_str_name(&self) -> &'static str { + match self { + Self::FateSourceTypeNone => "FATE_SOURCE_TYPE_NONE", + Self::FateSourceTypeFateBuff => "FATE_SOURCE_TYPE_FATE_BUFF", + Self::FateSourceTypeTraitBuff => "FATE_SOURCE_TYPE_TRAIT_BUFF", + Self::FateSourceTypeReiju => "FATE_SOURCE_TYPE_REIJU", + Self::FateSourceTypeHougu => "FATE_SOURCE_TYPE_HOUGU", + Self::FateSourceTypeAffix => "FATE_SOURCE_TYPE_AFFIX", + Self::FateSourceTypeReijuAffix => "FATE_SOURCE_TYPE_REIJU_AFFIX", + Self::FateSourceTypeLevel => "FATE_SOURCE_TYPE_LEVEL", + Self::FateSourceTypeMaster => "FATE_SOURCE_TYPE_MASTER", + Self::FateSourceTypeTrait => "FATE_SOURCE_TYPE_TRAIT", + } + } + /// Creates an enum from field names used in the ProtoBuf definition. + pub fn from_str_name(value: &str) -> ::core::option::Option { + match value { + "FATE_SOURCE_TYPE_NONE" => Some(Self::FateSourceTypeNone), + "FATE_SOURCE_TYPE_FATE_BUFF" => Some(Self::FateSourceTypeFateBuff), + "FATE_SOURCE_TYPE_TRAIT_BUFF" => Some(Self::FateSourceTypeTraitBuff), + "FATE_SOURCE_TYPE_REIJU" => Some(Self::FateSourceTypeReiju), + "FATE_SOURCE_TYPE_HOUGU" => Some(Self::FateSourceTypeHougu), + "FATE_SOURCE_TYPE_AFFIX" => Some(Self::FateSourceTypeAffix), + "FATE_SOURCE_TYPE_REIJU_AFFIX" => Some(Self::FateSourceTypeReijuAffix), + "FATE_SOURCE_TYPE_LEVEL" => Some(Self::FateSourceTypeLevel), + "FATE_SOURCE_TYPE_MASTER" => Some(Self::FateSourceTypeMaster), + "FATE_SOURCE_TYPE_TRAIT" => Some(Self::FateSourceTypeTrait), + _ => None, + } + } +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] +#[repr(i32)] +pub enum Enhdplikfhm { + MatchThreeVersionNone = 0, + MatchThreeV1 = 1, + MatchThreeV2 = 2, +} +impl Enhdplikfhm { + /// String value of the enum field names used in the ProtoBuf definition. + /// + /// The values are not transformed in any way and thus are considered stable + /// (if the ProtoBuf definition does not change) and safe for programmatic use. + pub fn as_str_name(&self) -> &'static str { + match self { + Self::MatchThreeVersionNone => "MATCH_THREE_VERSION_NONE", + Self::MatchThreeV1 => "MATCH_THREE_V1", + Self::MatchThreeV2 => "MATCH_THREE_V2", + } + } + /// Creates an enum from field names used in the ProtoBuf definition. + pub fn from_str_name(value: &str) -> ::core::option::Option { + match value { + "MATCH_THREE_VERSION_NONE" => Some(Self::MatchThreeVersionNone), + "MATCH_THREE_V1" => Some(Self::MatchThreeV1), + "MATCH_THREE_V2" => Some(Self::MatchThreeV2), + _ => None, + } + } +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] +#[repr(i32)] pub enum Dllleandaih { FriendRecommendLineupTypeNone = 0, FriendRecommendLineupTypeChallenge = 1, @@ -41019,10 +42759,38 @@ impl BattleEndStatus { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] +pub enum Jeblpliahnm { + ManualAvatarUpgradeNone = 0, + ManualAvatarUpgradeFate = 1, +} +impl Jeblpliahnm { + /// String value of the enum field names used in the ProtoBuf definition. + /// + /// The values are not transformed in any way and thus are considered stable + /// (if the ProtoBuf definition does not change) and safe for programmatic use. + pub fn as_str_name(&self) -> &'static str { + match self { + Self::ManualAvatarUpgradeNone => "MANUAL_AVATAR_UPGRADE_NONE", + Self::ManualAvatarUpgradeFate => "MANUAL_AVATAR_UPGRADE_FATE", + } + } + /// Creates an enum from field names used in the ProtoBuf definition. + pub fn from_str_name(value: &str) -> ::core::option::Option { + match value { + "MANUAL_AVATAR_UPGRADE_NONE" => Some(Self::ManualAvatarUpgradeNone), + "MANUAL_AVATAR_UPGRADE_FATE" => Some(Self::ManualAvatarUpgradeFate), + _ => None, + } + } +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] +#[repr(i32)] pub enum Noogdpkefkl { FightGameModeNone = 0, FightGameModeMatch3 = 1, FightGameModeMarble = 2, + FightGameModeMatch3Solo = 3, } impl Noogdpkefkl { /// String value of the enum field names used in the ProtoBuf definition. @@ -41034,6 +42802,7 @@ impl Noogdpkefkl { Self::FightGameModeNone => "FIGHT_GAME_MODE_NONE", Self::FightGameModeMatch3 => "FIGHT_GAME_MODE_MATCH3", Self::FightGameModeMarble => "FIGHT_GAME_MODE_MARBLE", + Self::FightGameModeMatch3Solo => "FIGHT_GAME_MODE_MATCH3_SOLO", } } /// Creates an enum from field names used in the ProtoBuf definition. @@ -41042,6 +42811,7 @@ impl Noogdpkefkl { "FIGHT_GAME_MODE_NONE" => Some(Self::FightGameModeNone), "FIGHT_GAME_MODE_MATCH3" => Some(Self::FightGameModeMatch3), "FIGHT_GAME_MODE_MARBLE" => Some(Self::FightGameModeMarble), + "FIGHT_GAME_MODE_MATCH3_SOLO" => Some(Self::FightGameModeMatch3Solo), _ => None, } } @@ -41292,6 +43062,9 @@ pub enum Keekddahfoe { Match3FinishReasonDie = 2, Match3FinishReasonGameend = 3, Match3FinishReasonKickout = 4, + Match3FinishReasonWin = 5, + Match3FinishReasonLose = 6, + Match3FinishReasonTie = 7, } impl Keekddahfoe { /// String value of the enum field names used in the ProtoBuf definition. @@ -41305,6 +43078,9 @@ impl Keekddahfoe { Self::Match3FinishReasonDie => "MATCH3_FINISH_REASON_DIE", Self::Match3FinishReasonGameend => "MATCH3_FINISH_REASON_GAMEEND", Self::Match3FinishReasonKickout => "MATCH3_FINISH_REASON_KICKOUT", + Self::Match3FinishReasonWin => "MATCH3_FINISH_REASON_WIN", + Self::Match3FinishReasonLose => "MATCH3_FINISH_REASON_LOSE", + Self::Match3FinishReasonTie => "MATCH3_FINISH_REASON_TIE", } } /// Creates an enum from field names used in the ProtoBuf definition. @@ -41315,6 +43091,9 @@ impl Keekddahfoe { "MATCH3_FINISH_REASON_DIE" => Some(Self::Match3FinishReasonDie), "MATCH3_FINISH_REASON_GAMEEND" => Some(Self::Match3FinishReasonGameend), "MATCH3_FINISH_REASON_KICKOUT" => Some(Self::Match3FinishReasonKickout), + "MATCH3_FINISH_REASON_WIN" => Some(Self::Match3FinishReasonWin), + "MATCH3_FINISH_REASON_LOSE" => Some(Self::Match3FinishReasonLose), + "MATCH3_FINISH_REASON_TIE" => Some(Self::Match3FinishReasonTie), _ => None, } } @@ -41479,6 +43258,9 @@ pub enum Retcode { RetAvatarNotDressSkin = 1224, RetAvatarSkinNotMatchAvatar = 1225, RetAvatarPathNotMatch = 1226, + RetAvatarEnhancedIdNotExist = 1227, + RetAvatarEnhancedIdAlreadySet = 1228, + RetAvatarNotCurEnhancedId = 1229, RetItemNotExist = 1300, RetItemCostNotEnough = 1301, RetItemCostTooMuch = 1302, @@ -41707,6 +43489,9 @@ pub enum Retcode { RetGroupStateCustomSaveDataOff = 2631, RetSceneNotMatch = 2632, RetPropTypeInvalid = 2633, + RetNotInCorrectScene = 2634, + RetNotInCorrectDimension = 2635, + RetNotCorrectGroupPropertyName = 2636, RetBuyTimesLimit = 2700, RetBuyLimitType = 2701, RetShopNotOpen = 2702, @@ -42304,6 +44089,7 @@ pub enum Retcode { RetLobbyInteractInCd = 6258, RetLobbyOwnerStateErr = 6259, RetLobbyOpTooFast = 6260, + RetFightMatch3SoloPlayerTurnErr = 6261, RetSwordTrainingNoActiveGame = 6301, RetSwordTrainingNoPendingActionMatch = 6302, RetSwordTrainingPartnerAbilityInvalid = 6303, @@ -42398,6 +44184,12 @@ pub enum Retcode { RetMarbleSealAlreadyUnlocked = 6701, RetMarbleSealShopItemNotEnough = 6702, RetMarbleSealLocked = 6703, + RetFateStatusNotMatch = 6771, + RetFateBuffSlotNotEnough = 6772, + RetFateCoinNotEnough = 6773, + RetFateReijuRerollCountNotEnough = 6774, + RetFateBuffLevelMax = 6775, + RetFateActionQueueNotEmpty = 6776, RetParkourActivityNotOpen = 6801, RetParkourLevelNotUnlock = 6802, RetParkourRailBallNotAllowed = 6803, @@ -42485,6 +44277,9 @@ impl Retcode { Self::RetAvatarNotDressSkin => "RET_AVATAR_NOT_DRESS_SKIN", Self::RetAvatarSkinNotMatchAvatar => "RET_AVATAR_SKIN_NOT_MATCH_AVATAR", Self::RetAvatarPathNotMatch => "RET_AVATAR_PATH_NOT_MATCH", + Self::RetAvatarEnhancedIdNotExist => "RET_AVATAR_ENHANCED_ID_NOT_EXIST", + Self::RetAvatarEnhancedIdAlreadySet => "RET_AVATAR_ENHANCED_ID_ALREADY_SET", + Self::RetAvatarNotCurEnhancedId => "RET_AVATAR_NOT_CUR_ENHANCED_ID", Self::RetItemNotExist => "RET_ITEM_NOT_EXIST", Self::RetItemCostNotEnough => "RET_ITEM_COST_NOT_ENOUGH", Self::RetItemCostTooMuch => "RET_ITEM_COST_TOO_MUCH", @@ -42749,6 +44544,9 @@ impl Retcode { } Self::RetSceneNotMatch => "RET_SCENE_NOT_MATCH", Self::RetPropTypeInvalid => "RET_PROP_TYPE_INVALID", + Self::RetNotInCorrectScene => "RET_NOT_IN_CORRECT_SCENE", + Self::RetNotInCorrectDimension => "RET_NOT_IN_CORRECT_DIMENSION", + Self::RetNotCorrectGroupPropertyName => "RET_NOT_CORRECT_GROUP_PROPERTY_NAME", Self::RetBuyTimesLimit => "RET_BUY_TIMES_LIMIT", Self::RetBuyLimitType => "RET_BUY_LIMIT_TYPE", Self::RetShopNotOpen => "RET_SHOP_NOT_OPEN", @@ -43638,6 +45436,9 @@ impl Retcode { Self::RetLobbyInteractInCd => "RET_LOBBY_INTERACT_IN_CD", Self::RetLobbyOwnerStateErr => "RET_LOBBY_OWNER_STATE_ERR", Self::RetLobbyOpTooFast => "RET_LOBBY_OP_TOO_FAST", + Self::RetFightMatch3SoloPlayerTurnErr => { + "RET_FIGHT_MATCH3_SOLO_PLAYER_TURN_ERR" + } Self::RetSwordTrainingNoActiveGame => "RET_SWORD_TRAINING_NO_ACTIVE_GAME", Self::RetSwordTrainingNoPendingActionMatch => { "RET_SWORD_TRAINING_NO_PENDING_ACTION_MATCH" @@ -43816,6 +45617,14 @@ impl Retcode { "RET_MARBLE_SEAL_SHOP_ITEM_NOT_ENOUGH" } Self::RetMarbleSealLocked => "RET_MARBLE_SEAL_LOCKED", + Self::RetFateStatusNotMatch => "RET_FATE_STATUS_NOT_MATCH", + Self::RetFateBuffSlotNotEnough => "RET_FATE_BUFF_SLOT_NOT_ENOUGH", + Self::RetFateCoinNotEnough => "RET_FATE_COIN_NOT_ENOUGH", + Self::RetFateReijuRerollCountNotEnough => { + "RET_FATE_REIJU_REROLL_COUNT_NOT_ENOUGH" + } + Self::RetFateBuffLevelMax => "RET_FATE_BUFF_LEVEL_MAX", + Self::RetFateActionQueueNotEmpty => "RET_FATE_ACTION_QUEUE_NOT_EMPTY", Self::RetParkourActivityNotOpen => "RET_PARKOUR_ACTIVITY_NOT_OPEN", Self::RetParkourLevelNotUnlock => "RET_PARKOUR_LEVEL_NOT_UNLOCK", Self::RetParkourRailBallNotAllowed => "RET_PARKOUR_RAIL_BALL_NOT_ALLOWED", @@ -43906,6 +45715,11 @@ impl Retcode { "RET_AVATAR_NOT_DRESS_SKIN" => Some(Self::RetAvatarNotDressSkin), "RET_AVATAR_SKIN_NOT_MATCH_AVATAR" => Some(Self::RetAvatarSkinNotMatchAvatar), "RET_AVATAR_PATH_NOT_MATCH" => Some(Self::RetAvatarPathNotMatch), + "RET_AVATAR_ENHANCED_ID_NOT_EXIST" => Some(Self::RetAvatarEnhancedIdNotExist), + "RET_AVATAR_ENHANCED_ID_ALREADY_SET" => { + Some(Self::RetAvatarEnhancedIdAlreadySet) + } + "RET_AVATAR_NOT_CUR_ENHANCED_ID" => Some(Self::RetAvatarNotCurEnhancedId), "RET_ITEM_NOT_EXIST" => Some(Self::RetItemNotExist), "RET_ITEM_COST_NOT_ENOUGH" => Some(Self::RetItemCostNotEnough), "RET_ITEM_COST_TOO_MUCH" => Some(Self::RetItemCostTooMuch), @@ -44204,6 +46018,11 @@ impl Retcode { } "RET_SCENE_NOT_MATCH" => Some(Self::RetSceneNotMatch), "RET_PROP_TYPE_INVALID" => Some(Self::RetPropTypeInvalid), + "RET_NOT_IN_CORRECT_SCENE" => Some(Self::RetNotInCorrectScene), + "RET_NOT_IN_CORRECT_DIMENSION" => Some(Self::RetNotInCorrectDimension), + "RET_NOT_CORRECT_GROUP_PROPERTY_NAME" => { + Some(Self::RetNotCorrectGroupPropertyName) + } "RET_BUY_TIMES_LIMIT" => Some(Self::RetBuyTimesLimit), "RET_BUY_LIMIT_TYPE" => Some(Self::RetBuyLimitType), "RET_SHOP_NOT_OPEN" => Some(Self::RetShopNotOpen), @@ -45275,6 +47094,9 @@ impl Retcode { "RET_LOBBY_INTERACT_IN_CD" => Some(Self::RetLobbyInteractInCd), "RET_LOBBY_OWNER_STATE_ERR" => Some(Self::RetLobbyOwnerStateErr), "RET_LOBBY_OP_TOO_FAST" => Some(Self::RetLobbyOpTooFast), + "RET_FIGHT_MATCH3_SOLO_PLAYER_TURN_ERR" => { + Some(Self::RetFightMatch3SoloPlayerTurnErr) + } "RET_SWORD_TRAINING_NO_ACTIVE_GAME" => { Some(Self::RetSwordTrainingNoActiveGame) } @@ -45489,6 +47311,14 @@ impl Retcode { Some(Self::RetMarbleSealShopItemNotEnough) } "RET_MARBLE_SEAL_LOCKED" => Some(Self::RetMarbleSealLocked), + "RET_FATE_STATUS_NOT_MATCH" => Some(Self::RetFateStatusNotMatch), + "RET_FATE_BUFF_SLOT_NOT_ENOUGH" => Some(Self::RetFateBuffSlotNotEnough), + "RET_FATE_COIN_NOT_ENOUGH" => Some(Self::RetFateCoinNotEnough), + "RET_FATE_REIJU_REROLL_COUNT_NOT_ENOUGH" => { + Some(Self::RetFateReijuRerollCountNotEnough) + } + "RET_FATE_BUFF_LEVEL_MAX" => Some(Self::RetFateBuffLevelMax), + "RET_FATE_ACTION_QUEUE_NOT_EMPTY" => Some(Self::RetFateActionQueueNotEmpty), "RET_PARKOUR_ACTIVITY_NOT_OPEN" => Some(Self::RetParkourActivityNotOpen), "RET_PARKOUR_LEVEL_NOT_UNLOCK" => Some(Self::RetParkourLevelNotUnlock), "RET_PARKOUR_RAIL_BALL_NOT_ALLOWED" => { @@ -45511,36 +47341,36 @@ impl Retcode { #[repr(i32)] pub enum CmdActivityType { None = 0, - CmdTakeTrialActivityRewardCsReq = 2634, - CmdAvatarDeliverRewardChooseAvatarCsReq = 2617, - CmdGetActivityScheduleConfigScRsp = 2648, - CmdStartTrialActivityCsReq = 2601, - CmdGetTrialActivityDataCsReq = 2654, - CmdEnterTrialActivityStageScRsp = 2635, - CmdGetActivityScheduleConfigCsReq = 2676, - CmdLeaveTrialActivityCsReq = 2636, - CmdTakeMaterialSubmitActivityRewardCsReq = 2642, - CmdGetAvatarDeliverRewardActivityDataScRsp = 2690, - CmdSubmitMaterialSubmitActivityMaterialScRsp = 2633, - CmdTakeLoginActivityRewardCsReq = 2631, - CmdTakeMaterialSubmitActivityRewardScRsp = 2677, - CmdGetTrialActivityDataScRsp = 2699, - CmdAvatarDeliverRewardTakeRewardCsReq = 2649, - CmdSubmitMaterialSubmitActivityMaterialCsReq = 2643, - CmdGetMaterialSubmitActivityDataScRsp = 2639, - CmdStartTrialActivityScRsp = 2653, - CmdTakeLoginActivityRewardScRsp = 2640, - CmdAvatarDeliverRewardTakeRewardScRsp = 2603, - CmdLeaveTrialActivityScRsp = 2694, - CmdAvatarDeliverRewardChooseAvatarScRsp = 2669, - CmdGetLoginActivityScRsp = 2632, - CmdTrialActivityDataChangeScNotify = 2687, - CmdTakeTrialActivityRewardScRsp = 2668, - CmdGetAvatarDeliverRewardActivityDataCsReq = 2674, - CmdGetMaterialSubmitActivityDataCsReq = 2602, - CmdEnterTrialActivityStageCsReq = 2608, - CmdGetLoginActivityCsReq = 2695, - CmdCurTrialActivityScNotify = 2627, + CmdSubmitMaterialSubmitActivityMaterialCsReq = 2652, + CmdLeaveTrialActivityCsReq = 2672, + CmdLeaveTrialActivityScRsp = 2635, + CmdGetTrialActivityDataCsReq = 2696, + CmdGetTrialActivityDataScRsp = 2616, + CmdTakeMaterialSubmitActivityRewardScRsp = 2636, + CmdStartTrialActivityCsReq = 2689, + CmdAvatarDeliverRewardChooseAvatarScRsp = 2625, + CmdAvatarDeliverRewardChooseAvatarCsReq = 2648, + CmdTakeMaterialSubmitActivityRewardCsReq = 2694, + CmdGetMaterialSubmitActivityDataScRsp = 2638, + CmdEnterTrialActivityStageCsReq = 2664, + CmdSubmitMaterialSubmitActivityMaterialScRsp = 2668, + CmdTakeTrialActivityRewardScRsp = 2690, + CmdTakeLoginActivityRewardScRsp = 2639, + CmdGetLoginActivityCsReq = 2620, + CmdCurTrialActivityScNotify = 2653, + CmdGetMaterialSubmitActivityDataCsReq = 2685, + CmdGetAvatarDeliverRewardActivityDataCsReq = 2633, + CmdGetActivityScheduleConfigCsReq = 2627, + CmdEnterTrialActivityStageScRsp = 2657, + CmdTakeTrialActivityRewardCsReq = 2626, + CmdTakeLoginActivityRewardCsReq = 2667, + CmdStartTrialActivityScRsp = 2637, + CmdGetActivityScheduleConfigScRsp = 2621, + CmdAvatarDeliverRewardTakeRewardCsReq = 2643, + CmdAvatarDeliverRewardTakeRewardScRsp = 2612, + CmdGetAvatarDeliverRewardActivityDataScRsp = 2607, + CmdGetLoginActivityScRsp = 2691, + CmdTrialActivityDataChangeScNotify = 2693, } impl CmdActivityType { /// String value of the enum field names used in the ProtoBuf definition. @@ -45550,144 +47380,144 @@ impl CmdActivityType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdActivityTypeNone", - Self::CmdTakeTrialActivityRewardCsReq => "CmdTakeTrialActivityRewardCsReq", - Self::CmdAvatarDeliverRewardChooseAvatarCsReq => { - "CmdAvatarDeliverRewardChooseAvatarCsReq" - } - Self::CmdGetActivityScheduleConfigScRsp => { - "CmdGetActivityScheduleConfigScRsp" - } - Self::CmdStartTrialActivityCsReq => "CmdStartTrialActivityCsReq", - Self::CmdGetTrialActivityDataCsReq => "CmdGetTrialActivityDataCsReq", - Self::CmdEnterTrialActivityStageScRsp => "CmdEnterTrialActivityStageScRsp", - Self::CmdGetActivityScheduleConfigCsReq => { - "CmdGetActivityScheduleConfigCsReq" + Self::CmdSubmitMaterialSubmitActivityMaterialCsReq => { + "CmdSubmitMaterialSubmitActivityMaterialCsReq" } Self::CmdLeaveTrialActivityCsReq => "CmdLeaveTrialActivityCsReq", - Self::CmdTakeMaterialSubmitActivityRewardCsReq => { - "CmdTakeMaterialSubmitActivityRewardCsReq" - } - Self::CmdGetAvatarDeliverRewardActivityDataScRsp => { - "CmdGetAvatarDeliverRewardActivityDataScRsp" - } - Self::CmdSubmitMaterialSubmitActivityMaterialScRsp => { - "CmdSubmitMaterialSubmitActivityMaterialScRsp" - } - Self::CmdTakeLoginActivityRewardCsReq => "CmdTakeLoginActivityRewardCsReq", + Self::CmdLeaveTrialActivityScRsp => "CmdLeaveTrialActivityScRsp", + Self::CmdGetTrialActivityDataCsReq => "CmdGetTrialActivityDataCsReq", + Self::CmdGetTrialActivityDataScRsp => "CmdGetTrialActivityDataScRsp", Self::CmdTakeMaterialSubmitActivityRewardScRsp => { "CmdTakeMaterialSubmitActivityRewardScRsp" } - Self::CmdGetTrialActivityDataScRsp => "CmdGetTrialActivityDataScRsp", - Self::CmdAvatarDeliverRewardTakeRewardCsReq => { - "CmdAvatarDeliverRewardTakeRewardCsReq" + Self::CmdStartTrialActivityCsReq => "CmdStartTrialActivityCsReq", + Self::CmdAvatarDeliverRewardChooseAvatarScRsp => { + "CmdAvatarDeliverRewardChooseAvatarScRsp" } - Self::CmdSubmitMaterialSubmitActivityMaterialCsReq => { - "CmdSubmitMaterialSubmitActivityMaterialCsReq" + Self::CmdAvatarDeliverRewardChooseAvatarCsReq => { + "CmdAvatarDeliverRewardChooseAvatarCsReq" + } + Self::CmdTakeMaterialSubmitActivityRewardCsReq => { + "CmdTakeMaterialSubmitActivityRewardCsReq" } Self::CmdGetMaterialSubmitActivityDataScRsp => { "CmdGetMaterialSubmitActivityDataScRsp" } - Self::CmdStartTrialActivityScRsp => "CmdStartTrialActivityScRsp", + Self::CmdEnterTrialActivityStageCsReq => "CmdEnterTrialActivityStageCsReq", + Self::CmdSubmitMaterialSubmitActivityMaterialScRsp => { + "CmdSubmitMaterialSubmitActivityMaterialScRsp" + } + Self::CmdTakeTrialActivityRewardScRsp => "CmdTakeTrialActivityRewardScRsp", Self::CmdTakeLoginActivityRewardScRsp => "CmdTakeLoginActivityRewardScRsp", + Self::CmdGetLoginActivityCsReq => "CmdGetLoginActivityCsReq", + Self::CmdCurTrialActivityScNotify => "CmdCurTrialActivityScNotify", + Self::CmdGetMaterialSubmitActivityDataCsReq => { + "CmdGetMaterialSubmitActivityDataCsReq" + } + Self::CmdGetAvatarDeliverRewardActivityDataCsReq => { + "CmdGetAvatarDeliverRewardActivityDataCsReq" + } + Self::CmdGetActivityScheduleConfigCsReq => { + "CmdGetActivityScheduleConfigCsReq" + } + Self::CmdEnterTrialActivityStageScRsp => "CmdEnterTrialActivityStageScRsp", + Self::CmdTakeTrialActivityRewardCsReq => "CmdTakeTrialActivityRewardCsReq", + Self::CmdTakeLoginActivityRewardCsReq => "CmdTakeLoginActivityRewardCsReq", + Self::CmdStartTrialActivityScRsp => "CmdStartTrialActivityScRsp", + Self::CmdGetActivityScheduleConfigScRsp => { + "CmdGetActivityScheduleConfigScRsp" + } + Self::CmdAvatarDeliverRewardTakeRewardCsReq => { + "CmdAvatarDeliverRewardTakeRewardCsReq" + } Self::CmdAvatarDeliverRewardTakeRewardScRsp => { "CmdAvatarDeliverRewardTakeRewardScRsp" } - Self::CmdLeaveTrialActivityScRsp => "CmdLeaveTrialActivityScRsp", - Self::CmdAvatarDeliverRewardChooseAvatarScRsp => { - "CmdAvatarDeliverRewardChooseAvatarScRsp" + Self::CmdGetAvatarDeliverRewardActivityDataScRsp => { + "CmdGetAvatarDeliverRewardActivityDataScRsp" } Self::CmdGetLoginActivityScRsp => "CmdGetLoginActivityScRsp", Self::CmdTrialActivityDataChangeScNotify => { "CmdTrialActivityDataChangeScNotify" } - Self::CmdTakeTrialActivityRewardScRsp => "CmdTakeTrialActivityRewardScRsp", - Self::CmdGetAvatarDeliverRewardActivityDataCsReq => { - "CmdGetAvatarDeliverRewardActivityDataCsReq" - } - Self::CmdGetMaterialSubmitActivityDataCsReq => { - "CmdGetMaterialSubmitActivityDataCsReq" - } - Self::CmdEnterTrialActivityStageCsReq => "CmdEnterTrialActivityStageCsReq", - Self::CmdGetLoginActivityCsReq => "CmdGetLoginActivityCsReq", - Self::CmdCurTrialActivityScNotify => "CmdCurTrialActivityScNotify", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdActivityTypeNone" => Some(Self::None), - "CmdTakeTrialActivityRewardCsReq" => { - Some(Self::CmdTakeTrialActivityRewardCsReq) + "CmdSubmitMaterialSubmitActivityMaterialCsReq" => { + Some(Self::CmdSubmitMaterialSubmitActivityMaterialCsReq) + } + "CmdLeaveTrialActivityCsReq" => Some(Self::CmdLeaveTrialActivityCsReq), + "CmdLeaveTrialActivityScRsp" => Some(Self::CmdLeaveTrialActivityScRsp), + "CmdGetTrialActivityDataCsReq" => Some(Self::CmdGetTrialActivityDataCsReq), + "CmdGetTrialActivityDataScRsp" => Some(Self::CmdGetTrialActivityDataScRsp), + "CmdTakeMaterialSubmitActivityRewardScRsp" => { + Some(Self::CmdTakeMaterialSubmitActivityRewardScRsp) + } + "CmdStartTrialActivityCsReq" => Some(Self::CmdStartTrialActivityCsReq), + "CmdAvatarDeliverRewardChooseAvatarScRsp" => { + Some(Self::CmdAvatarDeliverRewardChooseAvatarScRsp) } "CmdAvatarDeliverRewardChooseAvatarCsReq" => { Some(Self::CmdAvatarDeliverRewardChooseAvatarCsReq) } - "CmdGetActivityScheduleConfigScRsp" => { - Some(Self::CmdGetActivityScheduleConfigScRsp) - } - "CmdStartTrialActivityCsReq" => Some(Self::CmdStartTrialActivityCsReq), - "CmdGetTrialActivityDataCsReq" => Some(Self::CmdGetTrialActivityDataCsReq), - "CmdEnterTrialActivityStageScRsp" => { - Some(Self::CmdEnterTrialActivityStageScRsp) - } - "CmdGetActivityScheduleConfigCsReq" => { - Some(Self::CmdGetActivityScheduleConfigCsReq) - } - "CmdLeaveTrialActivityCsReq" => Some(Self::CmdLeaveTrialActivityCsReq), "CmdTakeMaterialSubmitActivityRewardCsReq" => { Some(Self::CmdTakeMaterialSubmitActivityRewardCsReq) } - "CmdGetAvatarDeliverRewardActivityDataScRsp" => { - Some(Self::CmdGetAvatarDeliverRewardActivityDataScRsp) - } - "CmdSubmitMaterialSubmitActivityMaterialScRsp" => { - Some(Self::CmdSubmitMaterialSubmitActivityMaterialScRsp) - } - "CmdTakeLoginActivityRewardCsReq" => { - Some(Self::CmdTakeLoginActivityRewardCsReq) - } - "CmdTakeMaterialSubmitActivityRewardScRsp" => { - Some(Self::CmdTakeMaterialSubmitActivityRewardScRsp) - } - "CmdGetTrialActivityDataScRsp" => Some(Self::CmdGetTrialActivityDataScRsp), - "CmdAvatarDeliverRewardTakeRewardCsReq" => { - Some(Self::CmdAvatarDeliverRewardTakeRewardCsReq) - } - "CmdSubmitMaterialSubmitActivityMaterialCsReq" => { - Some(Self::CmdSubmitMaterialSubmitActivityMaterialCsReq) - } "CmdGetMaterialSubmitActivityDataScRsp" => { Some(Self::CmdGetMaterialSubmitActivityDataScRsp) } - "CmdStartTrialActivityScRsp" => Some(Self::CmdStartTrialActivityScRsp), + "CmdEnterTrialActivityStageCsReq" => { + Some(Self::CmdEnterTrialActivityStageCsReq) + } + "CmdSubmitMaterialSubmitActivityMaterialScRsp" => { + Some(Self::CmdSubmitMaterialSubmitActivityMaterialScRsp) + } + "CmdTakeTrialActivityRewardScRsp" => { + Some(Self::CmdTakeTrialActivityRewardScRsp) + } "CmdTakeLoginActivityRewardScRsp" => { Some(Self::CmdTakeLoginActivityRewardScRsp) } + "CmdGetLoginActivityCsReq" => Some(Self::CmdGetLoginActivityCsReq), + "CmdCurTrialActivityScNotify" => Some(Self::CmdCurTrialActivityScNotify), + "CmdGetMaterialSubmitActivityDataCsReq" => { + Some(Self::CmdGetMaterialSubmitActivityDataCsReq) + } + "CmdGetAvatarDeliverRewardActivityDataCsReq" => { + Some(Self::CmdGetAvatarDeliverRewardActivityDataCsReq) + } + "CmdGetActivityScheduleConfigCsReq" => { + Some(Self::CmdGetActivityScheduleConfigCsReq) + } + "CmdEnterTrialActivityStageScRsp" => { + Some(Self::CmdEnterTrialActivityStageScRsp) + } + "CmdTakeTrialActivityRewardCsReq" => { + Some(Self::CmdTakeTrialActivityRewardCsReq) + } + "CmdTakeLoginActivityRewardCsReq" => { + Some(Self::CmdTakeLoginActivityRewardCsReq) + } + "CmdStartTrialActivityScRsp" => Some(Self::CmdStartTrialActivityScRsp), + "CmdGetActivityScheduleConfigScRsp" => { + Some(Self::CmdGetActivityScheduleConfigScRsp) + } + "CmdAvatarDeliverRewardTakeRewardCsReq" => { + Some(Self::CmdAvatarDeliverRewardTakeRewardCsReq) + } "CmdAvatarDeliverRewardTakeRewardScRsp" => { Some(Self::CmdAvatarDeliverRewardTakeRewardScRsp) } - "CmdLeaveTrialActivityScRsp" => Some(Self::CmdLeaveTrialActivityScRsp), - "CmdAvatarDeliverRewardChooseAvatarScRsp" => { - Some(Self::CmdAvatarDeliverRewardChooseAvatarScRsp) + "CmdGetAvatarDeliverRewardActivityDataScRsp" => { + Some(Self::CmdGetAvatarDeliverRewardActivityDataScRsp) } "CmdGetLoginActivityScRsp" => Some(Self::CmdGetLoginActivityScRsp), "CmdTrialActivityDataChangeScNotify" => { Some(Self::CmdTrialActivityDataChangeScNotify) } - "CmdTakeTrialActivityRewardScRsp" => { - Some(Self::CmdTakeTrialActivityRewardScRsp) - } - "CmdGetAvatarDeliverRewardActivityDataCsReq" => { - Some(Self::CmdGetAvatarDeliverRewardActivityDataCsReq) - } - "CmdGetMaterialSubmitActivityDataCsReq" => { - Some(Self::CmdGetMaterialSubmitActivityDataCsReq) - } - "CmdEnterTrialActivityStageCsReq" => { - Some(Self::CmdEnterTrialActivityStageCsReq) - } - "CmdGetLoginActivityCsReq" => Some(Self::CmdGetLoginActivityCsReq), - "CmdCurTrialActivityScNotify" => Some(Self::CmdCurTrialActivityScNotify), _ => None, } } @@ -45725,18 +47555,18 @@ impl Pmidehdobhj { #[repr(i32)] pub enum CmdAdventureType { None = 0, - CmdQuickStartFarmElementCsReq = 1371, - CmdQuickStartFarmElementScRsp = 1352, - CmdFarmElementSweepCsReq = 1372, - CmdCocoonSweepCsReq = 1322, - CmdEnterAdventureScRsp = 1332, - CmdEnterAdventureCsReq = 1395, - CmdCocoonSweepScRsp = 1356, - CmdQuickStartCocoonStageCsReq = 1376, - CmdFarmElementSweepScRsp = 1385, - CmdGetFarmStageGachaInfoCsReq = 1331, - CmdGetFarmStageGachaInfoScRsp = 1340, - CmdQuickStartCocoonStageScRsp = 1348, + CmdGetFarmStageGachaInfoScRsp = 1339, + CmdGetFarmStageGachaInfoCsReq = 1367, + CmdQuickStartFarmElementScRsp = 1359, + CmdCocoonSweepScRsp = 1377, + CmdEnterAdventureScRsp = 1391, + CmdQuickStartFarmElementCsReq = 1370, + CmdQuickStartCocoonStageScRsp = 1321, + CmdQuickStartCocoonStageCsReq = 1327, + CmdCocoonSweepCsReq = 1354, + CmdFarmElementSweepScRsp = 1302, + CmdEnterAdventureCsReq = 1320, + CmdFarmElementSweepCsReq = 1380, } impl CmdAdventureType { /// String value of the enum field names used in the ProtoBuf definition. @@ -45746,36 +47576,36 @@ impl CmdAdventureType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdAdventureTypeNone", - Self::CmdQuickStartFarmElementCsReq => "CmdQuickStartFarmElementCsReq", - Self::CmdQuickStartFarmElementScRsp => "CmdQuickStartFarmElementScRsp", - Self::CmdFarmElementSweepCsReq => "CmdFarmElementSweepCsReq", - Self::CmdCocoonSweepCsReq => "CmdCocoonSweepCsReq", - Self::CmdEnterAdventureScRsp => "CmdEnterAdventureScRsp", - Self::CmdEnterAdventureCsReq => "CmdEnterAdventureCsReq", - Self::CmdCocoonSweepScRsp => "CmdCocoonSweepScRsp", - Self::CmdQuickStartCocoonStageCsReq => "CmdQuickStartCocoonStageCsReq", - Self::CmdFarmElementSweepScRsp => "CmdFarmElementSweepScRsp", - Self::CmdGetFarmStageGachaInfoCsReq => "CmdGetFarmStageGachaInfoCsReq", Self::CmdGetFarmStageGachaInfoScRsp => "CmdGetFarmStageGachaInfoScRsp", + Self::CmdGetFarmStageGachaInfoCsReq => "CmdGetFarmStageGachaInfoCsReq", + Self::CmdQuickStartFarmElementScRsp => "CmdQuickStartFarmElementScRsp", + Self::CmdCocoonSweepScRsp => "CmdCocoonSweepScRsp", + Self::CmdEnterAdventureScRsp => "CmdEnterAdventureScRsp", + Self::CmdQuickStartFarmElementCsReq => "CmdQuickStartFarmElementCsReq", Self::CmdQuickStartCocoonStageScRsp => "CmdQuickStartCocoonStageScRsp", + Self::CmdQuickStartCocoonStageCsReq => "CmdQuickStartCocoonStageCsReq", + Self::CmdCocoonSweepCsReq => "CmdCocoonSweepCsReq", + Self::CmdFarmElementSweepScRsp => "CmdFarmElementSweepScRsp", + Self::CmdEnterAdventureCsReq => "CmdEnterAdventureCsReq", + Self::CmdFarmElementSweepCsReq => "CmdFarmElementSweepCsReq", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdAdventureTypeNone" => Some(Self::None), - "CmdQuickStartFarmElementCsReq" => Some(Self::CmdQuickStartFarmElementCsReq), - "CmdQuickStartFarmElementScRsp" => Some(Self::CmdQuickStartFarmElementScRsp), - "CmdFarmElementSweepCsReq" => Some(Self::CmdFarmElementSweepCsReq), - "CmdCocoonSweepCsReq" => Some(Self::CmdCocoonSweepCsReq), - "CmdEnterAdventureScRsp" => Some(Self::CmdEnterAdventureScRsp), - "CmdEnterAdventureCsReq" => Some(Self::CmdEnterAdventureCsReq), - "CmdCocoonSweepScRsp" => Some(Self::CmdCocoonSweepScRsp), - "CmdQuickStartCocoonStageCsReq" => Some(Self::CmdQuickStartCocoonStageCsReq), - "CmdFarmElementSweepScRsp" => Some(Self::CmdFarmElementSweepScRsp), - "CmdGetFarmStageGachaInfoCsReq" => Some(Self::CmdGetFarmStageGachaInfoCsReq), "CmdGetFarmStageGachaInfoScRsp" => Some(Self::CmdGetFarmStageGachaInfoScRsp), + "CmdGetFarmStageGachaInfoCsReq" => Some(Self::CmdGetFarmStageGachaInfoCsReq), + "CmdQuickStartFarmElementScRsp" => Some(Self::CmdQuickStartFarmElementScRsp), + "CmdCocoonSweepScRsp" => Some(Self::CmdCocoonSweepScRsp), + "CmdEnterAdventureScRsp" => Some(Self::CmdEnterAdventureScRsp), + "CmdQuickStartFarmElementCsReq" => Some(Self::CmdQuickStartFarmElementCsReq), "CmdQuickStartCocoonStageScRsp" => Some(Self::CmdQuickStartCocoonStageScRsp), + "CmdQuickStartCocoonStageCsReq" => Some(Self::CmdQuickStartCocoonStageCsReq), + "CmdCocoonSweepCsReq" => Some(Self::CmdCocoonSweepCsReq), + "CmdFarmElementSweepScRsp" => Some(Self::CmdFarmElementSweepScRsp), + "CmdEnterAdventureCsReq" => Some(Self::CmdEnterAdventureCsReq), + "CmdFarmElementSweepCsReq" => Some(Self::CmdFarmElementSweepCsReq), _ => None, } } @@ -45786,40 +47616,40 @@ impl CmdAdventureType { #[repr(i32)] pub enum CmdAetherDivideType { None = 0, - CmdAetherDivideTakeChallengeRewardScRsp = 4808, - CmdAetherDivideSpiritInfoScNotify = 4818, - CmdClearAetherDividePassiveSkillScRsp = 4823, - CmdAetherDivideSkillItemScNotify = 4811, - CmdAetherDivideTakeChallengeRewardCsReq = 4814, - CmdGetAetherDivideInfoScRsp = 4807, - CmdStartAetherDivideStageBattleScRsp = 4842, - CmdAetherDivideLineupScNotify = 4813, - CmdEquipAetherDividePassiveSkillCsReq = 4820, - CmdLeaveAetherDivideSceneCsReq = 4802, - CmdSwitchAetherDivideLineUpSlotScRsp = 4822, - CmdAetherDivideRefreshEndlessScNotify = 4849, - CmdStartAetherDivideChallengeBattleScRsp = 4815, - CmdSetAetherDivideLineUpCsReq = 4850, - CmdGetAetherDivideChallengeInfoScRsp = 4805, - CmdAetherDivideTainerInfoScNotify = 4839, - CmdLeaveAetherDivideSceneScRsp = 4837, - CmdEnterAetherDivideSceneCsReq = 4804, - CmdEnterAetherDivideSceneScRsp = 4846, - CmdGetAetherDivideChallengeInfoCsReq = 4801, - CmdStartAetherDivideChallengeBattleCsReq = 4827, - CmdAetherDivideSpiritExpUpCsReq = 4829, - CmdAetherDivideRefreshEndlessScRsp = 4821, - CmdSetAetherDivideLineUpScRsp = 4840, - CmdAetherDivideFinishChallengeScNotify = 4835, - CmdEquipAetherDividePassiveSkillScRsp = 4844, - CmdStartAetherDivideSceneBattleScRsp = 4817, - CmdClearAetherDividePassiveSkillCsReq = 4832, - CmdAetherDivideSpiritExpUpScRsp = 4834, - CmdSwitchAetherDivideLineUpSlotCsReq = 4826, + CmdAetherDivideFinishChallengeScNotify = 4820, + CmdEnterAetherDivideSceneScRsp = 4827, + CmdLeaveAetherDivideSceneCsReq = 4818, + CmdSwitchAetherDivideLineUpSlotScRsp = 4843, + CmdGetAetherDivideChallengeInfoScRsp = 4801, CmdGetAetherDivideInfoCsReq = 4845, - CmdStartAetherDivideSceneBattleCsReq = 4836, - CmdAetherDivideRefreshEndlessCsReq = 4806, - CmdStartAetherDivideStageBattleCsReq = 4816, + CmdStartAetherDivideSceneBattleScRsp = 4837, + CmdGetAetherDivideChallengeInfoCsReq = 4814, + CmdAetherDivideTakeChallengeRewardCsReq = 4809, + CmdAetherDivideSpiritExpUpScRsp = 4840, + CmdEquipAetherDividePassiveSkillCsReq = 4826, + CmdStartAetherDivideStageBattleCsReq = 4830, + CmdAetherDivideRefreshEndlessScRsp = 4835, + CmdAetherDivideRefreshEndlessScNotify = 4847, + CmdSwitchAetherDivideLineUpSlotCsReq = 4825, + CmdClearAetherDividePassiveSkillScRsp = 4822, + CmdAetherDivideRefreshEndlessCsReq = 4804, + CmdStartAetherDivideSceneBattleCsReq = 4811, + CmdAetherDivideSpiritExpUpCsReq = 4813, + CmdEnterAetherDivideSceneCsReq = 4849, + CmdSetAetherDivideLineUpScRsp = 4819, + CmdAetherDivideSpiritInfoScNotify = 4824, + CmdAetherDivideTainerInfoScNotify = 4816, + CmdAetherDivideLineupScNotify = 4831, + CmdAetherDivideTakeChallengeRewardScRsp = 4850, + CmdAetherDivideSkillItemScNotify = 4848, + CmdGetAetherDivideInfoScRsp = 4806, + CmdSetAetherDivideLineUpCsReq = 4828, + CmdStartAetherDivideChallengeBattleCsReq = 4817, + CmdEquipAetherDividePassiveSkillScRsp = 4834, + CmdLeaveAetherDivideSceneScRsp = 4836, + CmdClearAetherDividePassiveSkillCsReq = 4846, + CmdStartAetherDivideStageBattleScRsp = 4803, + CmdStartAetherDivideChallengeBattleScRsp = 4839, } impl CmdAetherDivideType { /// String value of the enum field names used in the ProtoBuf definition. @@ -45829,83 +47659,83 @@ impl CmdAetherDivideType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdAetherDivideTypeNone", - Self::CmdAetherDivideTakeChallengeRewardScRsp => { - "CmdAetherDivideTakeChallengeRewardScRsp" - } - Self::CmdAetherDivideSpiritInfoScNotify => { - "CmdAetherDivideSpiritInfoScNotify" - } - Self::CmdClearAetherDividePassiveSkillScRsp => { - "CmdClearAetherDividePassiveSkillScRsp" - } - Self::CmdAetherDivideSkillItemScNotify => "CmdAetherDivideSkillItemScNotify", - Self::CmdAetherDivideTakeChallengeRewardCsReq => { - "CmdAetherDivideTakeChallengeRewardCsReq" - } - Self::CmdGetAetherDivideInfoScRsp => "CmdGetAetherDivideInfoScRsp", - Self::CmdStartAetherDivideStageBattleScRsp => { - "CmdStartAetherDivideStageBattleScRsp" - } - Self::CmdAetherDivideLineupScNotify => "CmdAetherDivideLineupScNotify", - Self::CmdEquipAetherDividePassiveSkillCsReq => { - "CmdEquipAetherDividePassiveSkillCsReq" + Self::CmdAetherDivideFinishChallengeScNotify => { + "CmdAetherDivideFinishChallengeScNotify" } + Self::CmdEnterAetherDivideSceneScRsp => "CmdEnterAetherDivideSceneScRsp", Self::CmdLeaveAetherDivideSceneCsReq => "CmdLeaveAetherDivideSceneCsReq", Self::CmdSwitchAetherDivideLineUpSlotScRsp => { "CmdSwitchAetherDivideLineUpSlotScRsp" } - Self::CmdAetherDivideRefreshEndlessScNotify => { - "CmdAetherDivideRefreshEndlessScNotify" - } - Self::CmdStartAetherDivideChallengeBattleScRsp => { - "CmdStartAetherDivideChallengeBattleScRsp" - } - Self::CmdSetAetherDivideLineUpCsReq => "CmdSetAetherDivideLineUpCsReq", Self::CmdGetAetherDivideChallengeInfoScRsp => { "CmdGetAetherDivideChallengeInfoScRsp" } - Self::CmdAetherDivideTainerInfoScNotify => { - "CmdAetherDivideTainerInfoScNotify" - } - Self::CmdLeaveAetherDivideSceneScRsp => "CmdLeaveAetherDivideSceneScRsp", - Self::CmdEnterAetherDivideSceneCsReq => "CmdEnterAetherDivideSceneCsReq", - Self::CmdEnterAetherDivideSceneScRsp => "CmdEnterAetherDivideSceneScRsp", - Self::CmdGetAetherDivideChallengeInfoCsReq => { - "CmdGetAetherDivideChallengeInfoCsReq" - } - Self::CmdStartAetherDivideChallengeBattleCsReq => { - "CmdStartAetherDivideChallengeBattleCsReq" - } - Self::CmdAetherDivideSpiritExpUpCsReq => "CmdAetherDivideSpiritExpUpCsReq", - Self::CmdAetherDivideRefreshEndlessScRsp => { - "CmdAetherDivideRefreshEndlessScRsp" - } - Self::CmdSetAetherDivideLineUpScRsp => "CmdSetAetherDivideLineUpScRsp", - Self::CmdAetherDivideFinishChallengeScNotify => { - "CmdAetherDivideFinishChallengeScNotify" - } - Self::CmdEquipAetherDividePassiveSkillScRsp => { - "CmdEquipAetherDividePassiveSkillScRsp" - } + Self::CmdGetAetherDivideInfoCsReq => "CmdGetAetherDivideInfoCsReq", Self::CmdStartAetherDivideSceneBattleScRsp => { "CmdStartAetherDivideSceneBattleScRsp" } - Self::CmdClearAetherDividePassiveSkillCsReq => { - "CmdClearAetherDividePassiveSkillCsReq" + Self::CmdGetAetherDivideChallengeInfoCsReq => { + "CmdGetAetherDivideChallengeInfoCsReq" + } + Self::CmdAetherDivideTakeChallengeRewardCsReq => { + "CmdAetherDivideTakeChallengeRewardCsReq" } Self::CmdAetherDivideSpiritExpUpScRsp => "CmdAetherDivideSpiritExpUpScRsp", + Self::CmdEquipAetherDividePassiveSkillCsReq => { + "CmdEquipAetherDividePassiveSkillCsReq" + } + Self::CmdStartAetherDivideStageBattleCsReq => { + "CmdStartAetherDivideStageBattleCsReq" + } + Self::CmdAetherDivideRefreshEndlessScRsp => { + "CmdAetherDivideRefreshEndlessScRsp" + } + Self::CmdAetherDivideRefreshEndlessScNotify => { + "CmdAetherDivideRefreshEndlessScNotify" + } Self::CmdSwitchAetherDivideLineUpSlotCsReq => { "CmdSwitchAetherDivideLineUpSlotCsReq" } - Self::CmdGetAetherDivideInfoCsReq => "CmdGetAetherDivideInfoCsReq", - Self::CmdStartAetherDivideSceneBattleCsReq => { - "CmdStartAetherDivideSceneBattleCsReq" + Self::CmdClearAetherDividePassiveSkillScRsp => { + "CmdClearAetherDividePassiveSkillScRsp" } Self::CmdAetherDivideRefreshEndlessCsReq => { "CmdAetherDivideRefreshEndlessCsReq" } - Self::CmdStartAetherDivideStageBattleCsReq => { - "CmdStartAetherDivideStageBattleCsReq" + Self::CmdStartAetherDivideSceneBattleCsReq => { + "CmdStartAetherDivideSceneBattleCsReq" + } + Self::CmdAetherDivideSpiritExpUpCsReq => "CmdAetherDivideSpiritExpUpCsReq", + Self::CmdEnterAetherDivideSceneCsReq => "CmdEnterAetherDivideSceneCsReq", + Self::CmdSetAetherDivideLineUpScRsp => "CmdSetAetherDivideLineUpScRsp", + Self::CmdAetherDivideSpiritInfoScNotify => { + "CmdAetherDivideSpiritInfoScNotify" + } + Self::CmdAetherDivideTainerInfoScNotify => { + "CmdAetherDivideTainerInfoScNotify" + } + Self::CmdAetherDivideLineupScNotify => "CmdAetherDivideLineupScNotify", + Self::CmdAetherDivideTakeChallengeRewardScRsp => { + "CmdAetherDivideTakeChallengeRewardScRsp" + } + Self::CmdAetherDivideSkillItemScNotify => "CmdAetherDivideSkillItemScNotify", + Self::CmdGetAetherDivideInfoScRsp => "CmdGetAetherDivideInfoScRsp", + Self::CmdSetAetherDivideLineUpCsReq => "CmdSetAetherDivideLineUpCsReq", + Self::CmdStartAetherDivideChallengeBattleCsReq => { + "CmdStartAetherDivideChallengeBattleCsReq" + } + Self::CmdEquipAetherDividePassiveSkillScRsp => { + "CmdEquipAetherDividePassiveSkillScRsp" + } + Self::CmdLeaveAetherDivideSceneScRsp => "CmdLeaveAetherDivideSceneScRsp", + Self::CmdClearAetherDividePassiveSkillCsReq => { + "CmdClearAetherDividePassiveSkillCsReq" + } + Self::CmdStartAetherDivideStageBattleScRsp => { + "CmdStartAetherDivideStageBattleScRsp" + } + Self::CmdStartAetherDivideChallengeBattleScRsp => { + "CmdStartAetherDivideChallengeBattleScRsp" } } } @@ -45913,28 +47743,11 @@ impl CmdAetherDivideType { pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdAetherDivideTypeNone" => Some(Self::None), - "CmdAetherDivideTakeChallengeRewardScRsp" => { - Some(Self::CmdAetherDivideTakeChallengeRewardScRsp) + "CmdAetherDivideFinishChallengeScNotify" => { + Some(Self::CmdAetherDivideFinishChallengeScNotify) } - "CmdAetherDivideSpiritInfoScNotify" => { - Some(Self::CmdAetherDivideSpiritInfoScNotify) - } - "CmdClearAetherDividePassiveSkillScRsp" => { - Some(Self::CmdClearAetherDividePassiveSkillScRsp) - } - "CmdAetherDivideSkillItemScNotify" => { - Some(Self::CmdAetherDivideSkillItemScNotify) - } - "CmdAetherDivideTakeChallengeRewardCsReq" => { - Some(Self::CmdAetherDivideTakeChallengeRewardCsReq) - } - "CmdGetAetherDivideInfoScRsp" => Some(Self::CmdGetAetherDivideInfoScRsp), - "CmdStartAetherDivideStageBattleScRsp" => { - Some(Self::CmdStartAetherDivideStageBattleScRsp) - } - "CmdAetherDivideLineupScNotify" => Some(Self::CmdAetherDivideLineupScNotify), - "CmdEquipAetherDividePassiveSkillCsReq" => { - Some(Self::CmdEquipAetherDividePassiveSkillCsReq) + "CmdEnterAetherDivideSceneScRsp" => { + Some(Self::CmdEnterAetherDivideSceneScRsp) } "CmdLeaveAetherDivideSceneCsReq" => { Some(Self::CmdLeaveAetherDivideSceneCsReq) @@ -45942,68 +47755,85 @@ impl CmdAetherDivideType { "CmdSwitchAetherDivideLineUpSlotScRsp" => { Some(Self::CmdSwitchAetherDivideLineUpSlotScRsp) } - "CmdAetherDivideRefreshEndlessScNotify" => { - Some(Self::CmdAetherDivideRefreshEndlessScNotify) - } - "CmdStartAetherDivideChallengeBattleScRsp" => { - Some(Self::CmdStartAetherDivideChallengeBattleScRsp) - } - "CmdSetAetherDivideLineUpCsReq" => Some(Self::CmdSetAetherDivideLineUpCsReq), "CmdGetAetherDivideChallengeInfoScRsp" => { Some(Self::CmdGetAetherDivideChallengeInfoScRsp) } - "CmdAetherDivideTainerInfoScNotify" => { - Some(Self::CmdAetherDivideTainerInfoScNotify) - } - "CmdLeaveAetherDivideSceneScRsp" => { - Some(Self::CmdLeaveAetherDivideSceneScRsp) - } - "CmdEnterAetherDivideSceneCsReq" => { - Some(Self::CmdEnterAetherDivideSceneCsReq) - } - "CmdEnterAetherDivideSceneScRsp" => { - Some(Self::CmdEnterAetherDivideSceneScRsp) + "CmdGetAetherDivideInfoCsReq" => Some(Self::CmdGetAetherDivideInfoCsReq), + "CmdStartAetherDivideSceneBattleScRsp" => { + Some(Self::CmdStartAetherDivideSceneBattleScRsp) } "CmdGetAetherDivideChallengeInfoCsReq" => { Some(Self::CmdGetAetherDivideChallengeInfoCsReq) } - "CmdStartAetherDivideChallengeBattleCsReq" => { - Some(Self::CmdStartAetherDivideChallengeBattleCsReq) - } - "CmdAetherDivideSpiritExpUpCsReq" => { - Some(Self::CmdAetherDivideSpiritExpUpCsReq) - } - "CmdAetherDivideRefreshEndlessScRsp" => { - Some(Self::CmdAetherDivideRefreshEndlessScRsp) - } - "CmdSetAetherDivideLineUpScRsp" => Some(Self::CmdSetAetherDivideLineUpScRsp), - "CmdAetherDivideFinishChallengeScNotify" => { - Some(Self::CmdAetherDivideFinishChallengeScNotify) - } - "CmdEquipAetherDividePassiveSkillScRsp" => { - Some(Self::CmdEquipAetherDividePassiveSkillScRsp) - } - "CmdStartAetherDivideSceneBattleScRsp" => { - Some(Self::CmdStartAetherDivideSceneBattleScRsp) - } - "CmdClearAetherDividePassiveSkillCsReq" => { - Some(Self::CmdClearAetherDividePassiveSkillCsReq) + "CmdAetherDivideTakeChallengeRewardCsReq" => { + Some(Self::CmdAetherDivideTakeChallengeRewardCsReq) } "CmdAetherDivideSpiritExpUpScRsp" => { Some(Self::CmdAetherDivideSpiritExpUpScRsp) } + "CmdEquipAetherDividePassiveSkillCsReq" => { + Some(Self::CmdEquipAetherDividePassiveSkillCsReq) + } + "CmdStartAetherDivideStageBattleCsReq" => { + Some(Self::CmdStartAetherDivideStageBattleCsReq) + } + "CmdAetherDivideRefreshEndlessScRsp" => { + Some(Self::CmdAetherDivideRefreshEndlessScRsp) + } + "CmdAetherDivideRefreshEndlessScNotify" => { + Some(Self::CmdAetherDivideRefreshEndlessScNotify) + } "CmdSwitchAetherDivideLineUpSlotCsReq" => { Some(Self::CmdSwitchAetherDivideLineUpSlotCsReq) } - "CmdGetAetherDivideInfoCsReq" => Some(Self::CmdGetAetherDivideInfoCsReq), - "CmdStartAetherDivideSceneBattleCsReq" => { - Some(Self::CmdStartAetherDivideSceneBattleCsReq) + "CmdClearAetherDividePassiveSkillScRsp" => { + Some(Self::CmdClearAetherDividePassiveSkillScRsp) } "CmdAetherDivideRefreshEndlessCsReq" => { Some(Self::CmdAetherDivideRefreshEndlessCsReq) } - "CmdStartAetherDivideStageBattleCsReq" => { - Some(Self::CmdStartAetherDivideStageBattleCsReq) + "CmdStartAetherDivideSceneBattleCsReq" => { + Some(Self::CmdStartAetherDivideSceneBattleCsReq) + } + "CmdAetherDivideSpiritExpUpCsReq" => { + Some(Self::CmdAetherDivideSpiritExpUpCsReq) + } + "CmdEnterAetherDivideSceneCsReq" => { + Some(Self::CmdEnterAetherDivideSceneCsReq) + } + "CmdSetAetherDivideLineUpScRsp" => Some(Self::CmdSetAetherDivideLineUpScRsp), + "CmdAetherDivideSpiritInfoScNotify" => { + Some(Self::CmdAetherDivideSpiritInfoScNotify) + } + "CmdAetherDivideTainerInfoScNotify" => { + Some(Self::CmdAetherDivideTainerInfoScNotify) + } + "CmdAetherDivideLineupScNotify" => Some(Self::CmdAetherDivideLineupScNotify), + "CmdAetherDivideTakeChallengeRewardScRsp" => { + Some(Self::CmdAetherDivideTakeChallengeRewardScRsp) + } + "CmdAetherDivideSkillItemScNotify" => { + Some(Self::CmdAetherDivideSkillItemScNotify) + } + "CmdGetAetherDivideInfoScRsp" => Some(Self::CmdGetAetherDivideInfoScRsp), + "CmdSetAetherDivideLineUpCsReq" => Some(Self::CmdSetAetherDivideLineUpCsReq), + "CmdStartAetherDivideChallengeBattleCsReq" => { + Some(Self::CmdStartAetherDivideChallengeBattleCsReq) + } + "CmdEquipAetherDividePassiveSkillScRsp" => { + Some(Self::CmdEquipAetherDividePassiveSkillScRsp) + } + "CmdLeaveAetherDivideSceneScRsp" => { + Some(Self::CmdLeaveAetherDivideSceneScRsp) + } + "CmdClearAetherDividePassiveSkillCsReq" => { + Some(Self::CmdClearAetherDividePassiveSkillCsReq) + } + "CmdStartAetherDivideStageBattleScRsp" => { + Some(Self::CmdStartAetherDivideStageBattleScRsp) + } + "CmdStartAetherDivideChallengeBattleScRsp" => { + Some(Self::CmdStartAetherDivideChallengeBattleScRsp) } _ => None, } @@ -46015,42 +47845,42 @@ impl CmdAetherDivideType { #[repr(i32)] pub enum CmdAlleyType { None = 0, - CmdAlleyShipUsedCountScNotify = 4737, - CmdAlleyTakeEventRewardCsReq = 4751, - CmdLogisticsGameScRsp = 4740, - CmdLogisticsDetonateStarSkiffCsReq = 4724, - CmdAlleyPlacingGameCsReq = 4716, - CmdAlleyTakeEventRewardScRsp = 4791, - CmdTakePrestigeRewardCsReq = 4772, - CmdGetSaveLogisticsMapCsReq = 4714, - CmdLogisticsGameCsReq = 4731, - CmdSaveLogisticsCsReq = 4763, - CmdPrestigeLevelUpScRsp = 4777, - CmdAlleyShipmentEventEffectsScNotify = 4725, - CmdPrestigeLevelUpCsReq = 4742, - CmdRefreshAlleyOrderScRsp = 4739, - CmdAlleyGuaranteedFundsScRsp = 4775, - CmdActivityRaidPlacingGameCsReq = 4798, - CmdRefreshAlleyOrderCsReq = 4702, - CmdLogisticsScoreRewardSyncInfoScNotify = 4707, - CmdLogisticsDetonateStarSkiffScRsp = 4757, - CmdGetAlleyInfoScRsp = 4732, - CmdAlleyPlacingGameScRsp = 4746, - CmdGetAlleyInfoCsReq = 4795, - CmdStartAlleyEventScRsp = 4752, - CmdTakePrestigeRewardScRsp = 4785, - CmdAlleyEventEffectNotify = 4756, - CmdAlleyShopLevelScNotify = 4721, - CmdAlleyOrderChangedScNotify = 4743, - CmdSaveLogisticsScRsp = 4711, - CmdAlleyShipUnlockScNotify = 4729, - CmdAlleyFundsScNotify = 4758, - CmdStartAlleyEventCsReq = 4771, - CmdLogisticsInfoScNotify = 4793, - CmdGetSaveLogisticsMapScRsp = 4784, - CmdAlleyEventChangeNotify = 4722, - CmdActivityRaidPlacingGameScRsp = 4764, - CmdAlleyGuaranteedFundsCsReq = 4730, + CmdStartAlleyEventCsReq = 4770, + CmdAlleyShopLevelScNotify = 4709, + CmdAlleyTakeEventRewardCsReq = 4703, + CmdLogisticsScoreRewardSyncInfoScNotify = 4722, + CmdGetAlleyInfoScRsp = 4791, + CmdAlleyGuaranteedFundsScRsp = 4769, + CmdAlleyShipmentEventEffectsScNotify = 4741, + CmdAlleyOrderChangedScNotify = 4752, + CmdStartAlleyEventScRsp = 4759, + CmdAlleyShipUnlockScNotify = 4706, + CmdSaveLogisticsScRsp = 4744, + CmdRefreshAlleyOrderCsReq = 4785, + CmdLogisticsGameScRsp = 4739, + CmdActivityRaidPlacingGameCsReq = 4740, + CmdTakePrestigeRewardCsReq = 4780, + CmdRefreshAlleyOrderScRsp = 4738, + CmdLogisticsGameCsReq = 4767, + CmdPrestigeLevelUpScRsp = 4736, + CmdTakePrestigeRewardScRsp = 4702, + CmdSaveLogisticsCsReq = 4731, + CmdAlleyPlacingGameScRsp = 4774, + CmdAlleyPlacingGameCsReq = 4705, + CmdAlleyFundsScNotify = 4787, + CmdAlleyShipUsedCountScNotify = 4734, + CmdGetSaveLogisticsMapCsReq = 4784, + CmdAlleyEventChangeNotify = 4754, + CmdActivityRaidPlacingGameScRsp = 4718, + CmdLogisticsDetonateStarSkiffCsReq = 4728, + CmdAlleyTakeEventRewardScRsp = 4724, + CmdAlleyEventEffectNotify = 4777, + CmdGetAlleyInfoCsReq = 4720, + CmdLogisticsDetonateStarSkiffScRsp = 4723, + CmdGetSaveLogisticsMapScRsp = 4778, + CmdPrestigeLevelUpCsReq = 4794, + CmdAlleyGuaranteedFundsCsReq = 4745, + CmdLogisticsInfoScNotify = 4749, } impl CmdAlleyType { /// String value of the enum field names used in the ProtoBuf definition. @@ -46060,104 +47890,104 @@ impl CmdAlleyType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdAlleyTypeNone", - Self::CmdAlleyShipUsedCountScNotify => "CmdAlleyShipUsedCountScNotify", + Self::CmdStartAlleyEventCsReq => "CmdStartAlleyEventCsReq", + Self::CmdAlleyShopLevelScNotify => "CmdAlleyShopLevelScNotify", Self::CmdAlleyTakeEventRewardCsReq => "CmdAlleyTakeEventRewardCsReq", - Self::CmdLogisticsGameScRsp => "CmdLogisticsGameScRsp", - Self::CmdLogisticsDetonateStarSkiffCsReq => { - "CmdLogisticsDetonateStarSkiffCsReq" - } - Self::CmdAlleyPlacingGameCsReq => "CmdAlleyPlacingGameCsReq", - Self::CmdAlleyTakeEventRewardScRsp => "CmdAlleyTakeEventRewardScRsp", - Self::CmdTakePrestigeRewardCsReq => "CmdTakePrestigeRewardCsReq", - Self::CmdGetSaveLogisticsMapCsReq => "CmdGetSaveLogisticsMapCsReq", - Self::CmdLogisticsGameCsReq => "CmdLogisticsGameCsReq", - Self::CmdSaveLogisticsCsReq => "CmdSaveLogisticsCsReq", - Self::CmdPrestigeLevelUpScRsp => "CmdPrestigeLevelUpScRsp", - Self::CmdAlleyShipmentEventEffectsScNotify => { - "CmdAlleyShipmentEventEffectsScNotify" - } - Self::CmdPrestigeLevelUpCsReq => "CmdPrestigeLevelUpCsReq", - Self::CmdRefreshAlleyOrderScRsp => "CmdRefreshAlleyOrderScRsp", - Self::CmdAlleyGuaranteedFundsScRsp => "CmdAlleyGuaranteedFundsScRsp", - Self::CmdActivityRaidPlacingGameCsReq => "CmdActivityRaidPlacingGameCsReq", - Self::CmdRefreshAlleyOrderCsReq => "CmdRefreshAlleyOrderCsReq", Self::CmdLogisticsScoreRewardSyncInfoScNotify => { "CmdLogisticsScoreRewardSyncInfoScNotify" } + Self::CmdGetAlleyInfoScRsp => "CmdGetAlleyInfoScRsp", + Self::CmdAlleyGuaranteedFundsScRsp => "CmdAlleyGuaranteedFundsScRsp", + Self::CmdAlleyShipmentEventEffectsScNotify => { + "CmdAlleyShipmentEventEffectsScNotify" + } + Self::CmdAlleyOrderChangedScNotify => "CmdAlleyOrderChangedScNotify", + Self::CmdStartAlleyEventScRsp => "CmdStartAlleyEventScRsp", + Self::CmdAlleyShipUnlockScNotify => "CmdAlleyShipUnlockScNotify", + Self::CmdSaveLogisticsScRsp => "CmdSaveLogisticsScRsp", + Self::CmdRefreshAlleyOrderCsReq => "CmdRefreshAlleyOrderCsReq", + Self::CmdLogisticsGameScRsp => "CmdLogisticsGameScRsp", + Self::CmdActivityRaidPlacingGameCsReq => "CmdActivityRaidPlacingGameCsReq", + Self::CmdTakePrestigeRewardCsReq => "CmdTakePrestigeRewardCsReq", + Self::CmdRefreshAlleyOrderScRsp => "CmdRefreshAlleyOrderScRsp", + Self::CmdLogisticsGameCsReq => "CmdLogisticsGameCsReq", + Self::CmdPrestigeLevelUpScRsp => "CmdPrestigeLevelUpScRsp", + Self::CmdTakePrestigeRewardScRsp => "CmdTakePrestigeRewardScRsp", + Self::CmdSaveLogisticsCsReq => "CmdSaveLogisticsCsReq", + Self::CmdAlleyPlacingGameScRsp => "CmdAlleyPlacingGameScRsp", + Self::CmdAlleyPlacingGameCsReq => "CmdAlleyPlacingGameCsReq", + Self::CmdAlleyFundsScNotify => "CmdAlleyFundsScNotify", + Self::CmdAlleyShipUsedCountScNotify => "CmdAlleyShipUsedCountScNotify", + Self::CmdGetSaveLogisticsMapCsReq => "CmdGetSaveLogisticsMapCsReq", + Self::CmdAlleyEventChangeNotify => "CmdAlleyEventChangeNotify", + Self::CmdActivityRaidPlacingGameScRsp => "CmdActivityRaidPlacingGameScRsp", + Self::CmdLogisticsDetonateStarSkiffCsReq => { + "CmdLogisticsDetonateStarSkiffCsReq" + } + Self::CmdAlleyTakeEventRewardScRsp => "CmdAlleyTakeEventRewardScRsp", + Self::CmdAlleyEventEffectNotify => "CmdAlleyEventEffectNotify", + Self::CmdGetAlleyInfoCsReq => "CmdGetAlleyInfoCsReq", Self::CmdLogisticsDetonateStarSkiffScRsp => { "CmdLogisticsDetonateStarSkiffScRsp" } - Self::CmdGetAlleyInfoScRsp => "CmdGetAlleyInfoScRsp", - Self::CmdAlleyPlacingGameScRsp => "CmdAlleyPlacingGameScRsp", - Self::CmdGetAlleyInfoCsReq => "CmdGetAlleyInfoCsReq", - Self::CmdStartAlleyEventScRsp => "CmdStartAlleyEventScRsp", - Self::CmdTakePrestigeRewardScRsp => "CmdTakePrestigeRewardScRsp", - Self::CmdAlleyEventEffectNotify => "CmdAlleyEventEffectNotify", - Self::CmdAlleyShopLevelScNotify => "CmdAlleyShopLevelScNotify", - Self::CmdAlleyOrderChangedScNotify => "CmdAlleyOrderChangedScNotify", - Self::CmdSaveLogisticsScRsp => "CmdSaveLogisticsScRsp", - Self::CmdAlleyShipUnlockScNotify => "CmdAlleyShipUnlockScNotify", - Self::CmdAlleyFundsScNotify => "CmdAlleyFundsScNotify", - Self::CmdStartAlleyEventCsReq => "CmdStartAlleyEventCsReq", - Self::CmdLogisticsInfoScNotify => "CmdLogisticsInfoScNotify", Self::CmdGetSaveLogisticsMapScRsp => "CmdGetSaveLogisticsMapScRsp", - Self::CmdAlleyEventChangeNotify => "CmdAlleyEventChangeNotify", - Self::CmdActivityRaidPlacingGameScRsp => "CmdActivityRaidPlacingGameScRsp", + Self::CmdPrestigeLevelUpCsReq => "CmdPrestigeLevelUpCsReq", Self::CmdAlleyGuaranteedFundsCsReq => "CmdAlleyGuaranteedFundsCsReq", + Self::CmdLogisticsInfoScNotify => "CmdLogisticsInfoScNotify", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdAlleyTypeNone" => Some(Self::None), - "CmdAlleyShipUsedCountScNotify" => Some(Self::CmdAlleyShipUsedCountScNotify), + "CmdStartAlleyEventCsReq" => Some(Self::CmdStartAlleyEventCsReq), + "CmdAlleyShopLevelScNotify" => Some(Self::CmdAlleyShopLevelScNotify), "CmdAlleyTakeEventRewardCsReq" => Some(Self::CmdAlleyTakeEventRewardCsReq), - "CmdLogisticsGameScRsp" => Some(Self::CmdLogisticsGameScRsp), - "CmdLogisticsDetonateStarSkiffCsReq" => { - Some(Self::CmdLogisticsDetonateStarSkiffCsReq) - } - "CmdAlleyPlacingGameCsReq" => Some(Self::CmdAlleyPlacingGameCsReq), - "CmdAlleyTakeEventRewardScRsp" => Some(Self::CmdAlleyTakeEventRewardScRsp), - "CmdTakePrestigeRewardCsReq" => Some(Self::CmdTakePrestigeRewardCsReq), - "CmdGetSaveLogisticsMapCsReq" => Some(Self::CmdGetSaveLogisticsMapCsReq), - "CmdLogisticsGameCsReq" => Some(Self::CmdLogisticsGameCsReq), - "CmdSaveLogisticsCsReq" => Some(Self::CmdSaveLogisticsCsReq), - "CmdPrestigeLevelUpScRsp" => Some(Self::CmdPrestigeLevelUpScRsp), - "CmdAlleyShipmentEventEffectsScNotify" => { - Some(Self::CmdAlleyShipmentEventEffectsScNotify) - } - "CmdPrestigeLevelUpCsReq" => Some(Self::CmdPrestigeLevelUpCsReq), - "CmdRefreshAlleyOrderScRsp" => Some(Self::CmdRefreshAlleyOrderScRsp), - "CmdAlleyGuaranteedFundsScRsp" => Some(Self::CmdAlleyGuaranteedFundsScRsp), - "CmdActivityRaidPlacingGameCsReq" => { - Some(Self::CmdActivityRaidPlacingGameCsReq) - } - "CmdRefreshAlleyOrderCsReq" => Some(Self::CmdRefreshAlleyOrderCsReq), "CmdLogisticsScoreRewardSyncInfoScNotify" => { Some(Self::CmdLogisticsScoreRewardSyncInfoScNotify) } - "CmdLogisticsDetonateStarSkiffScRsp" => { - Some(Self::CmdLogisticsDetonateStarSkiffScRsp) - } "CmdGetAlleyInfoScRsp" => Some(Self::CmdGetAlleyInfoScRsp), - "CmdAlleyPlacingGameScRsp" => Some(Self::CmdAlleyPlacingGameScRsp), - "CmdGetAlleyInfoCsReq" => Some(Self::CmdGetAlleyInfoCsReq), - "CmdStartAlleyEventScRsp" => Some(Self::CmdStartAlleyEventScRsp), - "CmdTakePrestigeRewardScRsp" => Some(Self::CmdTakePrestigeRewardScRsp), - "CmdAlleyEventEffectNotify" => Some(Self::CmdAlleyEventEffectNotify), - "CmdAlleyShopLevelScNotify" => Some(Self::CmdAlleyShopLevelScNotify), + "CmdAlleyGuaranteedFundsScRsp" => Some(Self::CmdAlleyGuaranteedFundsScRsp), + "CmdAlleyShipmentEventEffectsScNotify" => { + Some(Self::CmdAlleyShipmentEventEffectsScNotify) + } "CmdAlleyOrderChangedScNotify" => Some(Self::CmdAlleyOrderChangedScNotify), - "CmdSaveLogisticsScRsp" => Some(Self::CmdSaveLogisticsScRsp), + "CmdStartAlleyEventScRsp" => Some(Self::CmdStartAlleyEventScRsp), "CmdAlleyShipUnlockScNotify" => Some(Self::CmdAlleyShipUnlockScNotify), + "CmdSaveLogisticsScRsp" => Some(Self::CmdSaveLogisticsScRsp), + "CmdRefreshAlleyOrderCsReq" => Some(Self::CmdRefreshAlleyOrderCsReq), + "CmdLogisticsGameScRsp" => Some(Self::CmdLogisticsGameScRsp), + "CmdActivityRaidPlacingGameCsReq" => { + Some(Self::CmdActivityRaidPlacingGameCsReq) + } + "CmdTakePrestigeRewardCsReq" => Some(Self::CmdTakePrestigeRewardCsReq), + "CmdRefreshAlleyOrderScRsp" => Some(Self::CmdRefreshAlleyOrderScRsp), + "CmdLogisticsGameCsReq" => Some(Self::CmdLogisticsGameCsReq), + "CmdPrestigeLevelUpScRsp" => Some(Self::CmdPrestigeLevelUpScRsp), + "CmdTakePrestigeRewardScRsp" => Some(Self::CmdTakePrestigeRewardScRsp), + "CmdSaveLogisticsCsReq" => Some(Self::CmdSaveLogisticsCsReq), + "CmdAlleyPlacingGameScRsp" => Some(Self::CmdAlleyPlacingGameScRsp), + "CmdAlleyPlacingGameCsReq" => Some(Self::CmdAlleyPlacingGameCsReq), "CmdAlleyFundsScNotify" => Some(Self::CmdAlleyFundsScNotify), - "CmdStartAlleyEventCsReq" => Some(Self::CmdStartAlleyEventCsReq), - "CmdLogisticsInfoScNotify" => Some(Self::CmdLogisticsInfoScNotify), - "CmdGetSaveLogisticsMapScRsp" => Some(Self::CmdGetSaveLogisticsMapScRsp), + "CmdAlleyShipUsedCountScNotify" => Some(Self::CmdAlleyShipUsedCountScNotify), + "CmdGetSaveLogisticsMapCsReq" => Some(Self::CmdGetSaveLogisticsMapCsReq), "CmdAlleyEventChangeNotify" => Some(Self::CmdAlleyEventChangeNotify), "CmdActivityRaidPlacingGameScRsp" => { Some(Self::CmdActivityRaidPlacingGameScRsp) } + "CmdLogisticsDetonateStarSkiffCsReq" => { + Some(Self::CmdLogisticsDetonateStarSkiffCsReq) + } + "CmdAlleyTakeEventRewardScRsp" => Some(Self::CmdAlleyTakeEventRewardScRsp), + "CmdAlleyEventEffectNotify" => Some(Self::CmdAlleyEventEffectNotify), + "CmdGetAlleyInfoCsReq" => Some(Self::CmdGetAlleyInfoCsReq), + "CmdLogisticsDetonateStarSkiffScRsp" => { + Some(Self::CmdLogisticsDetonateStarSkiffScRsp) + } + "CmdGetSaveLogisticsMapScRsp" => Some(Self::CmdGetSaveLogisticsMapScRsp), + "CmdPrestigeLevelUpCsReq" => Some(Self::CmdPrestigeLevelUpCsReq), "CmdAlleyGuaranteedFundsCsReq" => Some(Self::CmdAlleyGuaranteedFundsCsReq), + "CmdLogisticsInfoScNotify" => Some(Self::CmdLogisticsInfoScNotify), _ => None, } } @@ -46279,10 +48109,10 @@ impl Bjlncfjoiaf { #[repr(i32)] pub enum CmdArchiveType { None = 0, - CmdGetArchiveDataCsReq = 2395, - CmdGetUpdatedArchiveDataScRsp = 2340, - CmdGetArchiveDataScRsp = 2332, - CmdGetUpdatedArchiveDataCsReq = 2331, + CmdGetUpdatedArchiveDataScRsp = 2339, + CmdGetArchiveDataCsReq = 2320, + CmdGetUpdatedArchiveDataCsReq = 2367, + CmdGetArchiveDataScRsp = 2391, } impl CmdArchiveType { /// String value of the enum field names used in the ProtoBuf definition. @@ -46292,20 +48122,20 @@ impl CmdArchiveType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdArchiveTypeNone", - Self::CmdGetArchiveDataCsReq => "CmdGetArchiveDataCsReq", Self::CmdGetUpdatedArchiveDataScRsp => "CmdGetUpdatedArchiveDataScRsp", - Self::CmdGetArchiveDataScRsp => "CmdGetArchiveDataScRsp", + Self::CmdGetArchiveDataCsReq => "CmdGetArchiveDataCsReq", Self::CmdGetUpdatedArchiveDataCsReq => "CmdGetUpdatedArchiveDataCsReq", + Self::CmdGetArchiveDataScRsp => "CmdGetArchiveDataScRsp", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdArchiveTypeNone" => Some(Self::None), - "CmdGetArchiveDataCsReq" => Some(Self::CmdGetArchiveDataCsReq), "CmdGetUpdatedArchiveDataScRsp" => Some(Self::CmdGetUpdatedArchiveDataScRsp), - "CmdGetArchiveDataScRsp" => Some(Self::CmdGetArchiveDataScRsp), + "CmdGetArchiveDataCsReq" => Some(Self::CmdGetArchiveDataCsReq), "CmdGetUpdatedArchiveDataCsReq" => Some(Self::CmdGetUpdatedArchiveDataCsReq), + "CmdGetArchiveDataScRsp" => Some(Self::CmdGetArchiveDataScRsp), _ => None, } } @@ -46316,42 +48146,44 @@ impl CmdArchiveType { #[repr(i32)] pub enum CmdAvatarType { None = 0, - CmdAvatarExpUpScRsp = 340, - CmdTakeOffAvatarSkinCsReq = 321, - CmdTakeOffEquipmentScRsp = 385, - CmdDressAvatarSkinScRsp = 358, - CmdTakePromotionRewardCsReq = 333, - CmdAddAvatarScNotify = 316, - CmdMarkAvatarCsReq = 311, - CmdUnlockSkilltreeCsReq = 376, - CmdPromoteAvatarCsReq = 371, - CmdGetPreAvatarGrowthInfoScRsp = 375, - CmdDressAvatarSkinCsReq = 377, - CmdDressRelicAvatarScRsp = 302, - CmdRankUpAvatarCsReq = 346, - CmdTakeOffEquipmentCsReq = 372, - CmdGetAvatarDataScRsp = 332, - CmdDressAvatarScRsp = 356, - CmdDressRelicAvatarCsReq = 360, - CmdUnlockAvatarSkinScNotify = 363, - CmdPromoteAvatarScRsp = 352, - CmdSetGrowthTargetAvatarScRsp = 384, - CmdAvatarExpUpCsReq = 331, - CmdAddMultiPathAvatarScNotify = 325, - CmdRankUpAvatarScRsp = 383, - CmdSetGrowthTargetAvatarCsReq = 314, - CmdTakeOffRelicCsReq = 339, - CmdDressAvatarCsReq = 322, - CmdTakePromotionRewardScRsp = 342, - CmdTakeOffRelicScRsp = 343, - CmdGrowthTargetAvatarChangedScNotify = 337, - CmdGetAvatarDataCsReq = 395, - CmdGetPreAvatarGrowthInfoCsReq = 330, - CmdTakeOffAvatarSkinScRsp = 329, - CmdMarkAvatarScRsp = 393, - CmdGetPreAvatarListCsReq = 351, - CmdUnlockSkilltreeScRsp = 348, - CmdGetPreAvatarListScRsp = 391, + CmdSetAvatarEnhancedIdCsReq = 328, + CmdAddAvatarScNotify = 305, + CmdUnlockAvatarSkinScNotify = 331, + CmdAvatarExpUpScRsp = 339, + CmdSetAvatarEnhancedIdScRsp = 323, + CmdDressAvatarSkinScRsp = 387, + CmdDressAvatarScRsp = 377, + CmdDressAvatarCsReq = 354, + CmdTakeOffRelicScRsp = 352, + CmdTakePromotionRewardCsReq = 368, + CmdAddMultiPathAvatarScNotify = 341, + CmdTakePromotionRewardScRsp = 394, + CmdDressRelicAvatarCsReq = 398, + CmdGetPreAvatarActivityListScRsp = 340, + CmdMarkAvatarCsReq = 344, + CmdMarkAvatarScRsp = 349, + CmdPromoteAvatarCsReq = 370, + CmdRankUpAvatarCsReq = 374, + CmdTakeOffEquipmentScRsp = 302, + CmdTakeOffAvatarSkinCsReq = 309, + CmdSetGrowthTargetAvatarCsReq = 384, + CmdGetPreAvatarActivityListCsReq = 322, + CmdPromoteAvatarScRsp = 359, + CmdRankUpAvatarScRsp = 373, + CmdDressAvatarSkinCsReq = 336, + CmdGetPreAvatarGrowthInfoCsReq = 345, + CmdUnlockSkilltreeCsReq = 327, + CmdAvatarExpUpCsReq = 367, + CmdTakeOffAvatarSkinScRsp = 306, + CmdTakeOffRelicCsReq = 338, + CmdSetGrowthTargetAvatarScRsp = 378, + CmdGetPreAvatarGrowthInfoScRsp = 369, + CmdGetAvatarDataScRsp = 391, + CmdDressRelicAvatarScRsp = 385, + CmdGetAvatarDataCsReq = 320, + CmdUnlockSkilltreeScRsp = 321, + CmdTakeOffEquipmentCsReq = 380, + CmdGrowthTargetAvatarChangedScNotify = 334, } impl CmdAvatarType { /// String value of the enum field names used in the ProtoBuf definition. @@ -46361,92 +48193,100 @@ impl CmdAvatarType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdAvatarTypeNone", - Self::CmdAvatarExpUpScRsp => "CmdAvatarExpUpScRsp", - Self::CmdTakeOffAvatarSkinCsReq => "CmdTakeOffAvatarSkinCsReq", - Self::CmdTakeOffEquipmentScRsp => "CmdTakeOffEquipmentScRsp", - Self::CmdDressAvatarSkinScRsp => "CmdDressAvatarSkinScRsp", - Self::CmdTakePromotionRewardCsReq => "CmdTakePromotionRewardCsReq", + Self::CmdSetAvatarEnhancedIdCsReq => "CmdSetAvatarEnhancedIdCsReq", Self::CmdAddAvatarScNotify => "CmdAddAvatarScNotify", - Self::CmdMarkAvatarCsReq => "CmdMarkAvatarCsReq", - Self::CmdUnlockSkilltreeCsReq => "CmdUnlockSkilltreeCsReq", - Self::CmdPromoteAvatarCsReq => "CmdPromoteAvatarCsReq", - Self::CmdGetPreAvatarGrowthInfoScRsp => "CmdGetPreAvatarGrowthInfoScRsp", - Self::CmdDressAvatarSkinCsReq => "CmdDressAvatarSkinCsReq", - Self::CmdDressRelicAvatarScRsp => "CmdDressRelicAvatarScRsp", - Self::CmdRankUpAvatarCsReq => "CmdRankUpAvatarCsReq", - Self::CmdTakeOffEquipmentCsReq => "CmdTakeOffEquipmentCsReq", - Self::CmdGetAvatarDataScRsp => "CmdGetAvatarDataScRsp", - Self::CmdDressAvatarScRsp => "CmdDressAvatarScRsp", - Self::CmdDressRelicAvatarCsReq => "CmdDressRelicAvatarCsReq", Self::CmdUnlockAvatarSkinScNotify => "CmdUnlockAvatarSkinScNotify", - Self::CmdPromoteAvatarScRsp => "CmdPromoteAvatarScRsp", - Self::CmdSetGrowthTargetAvatarScRsp => "CmdSetGrowthTargetAvatarScRsp", - Self::CmdAvatarExpUpCsReq => "CmdAvatarExpUpCsReq", - Self::CmdAddMultiPathAvatarScNotify => "CmdAddMultiPathAvatarScNotify", - Self::CmdRankUpAvatarScRsp => "CmdRankUpAvatarScRsp", - Self::CmdSetGrowthTargetAvatarCsReq => "CmdSetGrowthTargetAvatarCsReq", - Self::CmdTakeOffRelicCsReq => "CmdTakeOffRelicCsReq", + Self::CmdAvatarExpUpScRsp => "CmdAvatarExpUpScRsp", + Self::CmdSetAvatarEnhancedIdScRsp => "CmdSetAvatarEnhancedIdScRsp", + Self::CmdDressAvatarSkinScRsp => "CmdDressAvatarSkinScRsp", + Self::CmdDressAvatarScRsp => "CmdDressAvatarScRsp", Self::CmdDressAvatarCsReq => "CmdDressAvatarCsReq", - Self::CmdTakePromotionRewardScRsp => "CmdTakePromotionRewardScRsp", Self::CmdTakeOffRelicScRsp => "CmdTakeOffRelicScRsp", + Self::CmdTakePromotionRewardCsReq => "CmdTakePromotionRewardCsReq", + Self::CmdAddMultiPathAvatarScNotify => "CmdAddMultiPathAvatarScNotify", + Self::CmdTakePromotionRewardScRsp => "CmdTakePromotionRewardScRsp", + Self::CmdDressRelicAvatarCsReq => "CmdDressRelicAvatarCsReq", + Self::CmdGetPreAvatarActivityListScRsp => "CmdGetPreAvatarActivityListScRsp", + Self::CmdMarkAvatarCsReq => "CmdMarkAvatarCsReq", + Self::CmdMarkAvatarScRsp => "CmdMarkAvatarScRsp", + Self::CmdPromoteAvatarCsReq => "CmdPromoteAvatarCsReq", + Self::CmdRankUpAvatarCsReq => "CmdRankUpAvatarCsReq", + Self::CmdTakeOffEquipmentScRsp => "CmdTakeOffEquipmentScRsp", + Self::CmdTakeOffAvatarSkinCsReq => "CmdTakeOffAvatarSkinCsReq", + Self::CmdSetGrowthTargetAvatarCsReq => "CmdSetGrowthTargetAvatarCsReq", + Self::CmdGetPreAvatarActivityListCsReq => "CmdGetPreAvatarActivityListCsReq", + Self::CmdPromoteAvatarScRsp => "CmdPromoteAvatarScRsp", + Self::CmdRankUpAvatarScRsp => "CmdRankUpAvatarScRsp", + Self::CmdDressAvatarSkinCsReq => "CmdDressAvatarSkinCsReq", + Self::CmdGetPreAvatarGrowthInfoCsReq => "CmdGetPreAvatarGrowthInfoCsReq", + Self::CmdUnlockSkilltreeCsReq => "CmdUnlockSkilltreeCsReq", + Self::CmdAvatarExpUpCsReq => "CmdAvatarExpUpCsReq", + Self::CmdTakeOffAvatarSkinScRsp => "CmdTakeOffAvatarSkinScRsp", + Self::CmdTakeOffRelicCsReq => "CmdTakeOffRelicCsReq", + Self::CmdSetGrowthTargetAvatarScRsp => "CmdSetGrowthTargetAvatarScRsp", + Self::CmdGetPreAvatarGrowthInfoScRsp => "CmdGetPreAvatarGrowthInfoScRsp", + Self::CmdGetAvatarDataScRsp => "CmdGetAvatarDataScRsp", + Self::CmdDressRelicAvatarScRsp => "CmdDressRelicAvatarScRsp", + Self::CmdGetAvatarDataCsReq => "CmdGetAvatarDataCsReq", + Self::CmdUnlockSkilltreeScRsp => "CmdUnlockSkilltreeScRsp", + Self::CmdTakeOffEquipmentCsReq => "CmdTakeOffEquipmentCsReq", Self::CmdGrowthTargetAvatarChangedScNotify => { "CmdGrowthTargetAvatarChangedScNotify" } - Self::CmdGetAvatarDataCsReq => "CmdGetAvatarDataCsReq", - Self::CmdGetPreAvatarGrowthInfoCsReq => "CmdGetPreAvatarGrowthInfoCsReq", - Self::CmdTakeOffAvatarSkinScRsp => "CmdTakeOffAvatarSkinScRsp", - Self::CmdMarkAvatarScRsp => "CmdMarkAvatarScRsp", - Self::CmdGetPreAvatarListCsReq => "CmdGetPreAvatarListCsReq", - Self::CmdUnlockSkilltreeScRsp => "CmdUnlockSkilltreeScRsp", - Self::CmdGetPreAvatarListScRsp => "CmdGetPreAvatarListScRsp", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdAvatarTypeNone" => Some(Self::None), - "CmdAvatarExpUpScRsp" => Some(Self::CmdAvatarExpUpScRsp), - "CmdTakeOffAvatarSkinCsReq" => Some(Self::CmdTakeOffAvatarSkinCsReq), - "CmdTakeOffEquipmentScRsp" => Some(Self::CmdTakeOffEquipmentScRsp), - "CmdDressAvatarSkinScRsp" => Some(Self::CmdDressAvatarSkinScRsp), - "CmdTakePromotionRewardCsReq" => Some(Self::CmdTakePromotionRewardCsReq), + "CmdSetAvatarEnhancedIdCsReq" => Some(Self::CmdSetAvatarEnhancedIdCsReq), "CmdAddAvatarScNotify" => Some(Self::CmdAddAvatarScNotify), - "CmdMarkAvatarCsReq" => Some(Self::CmdMarkAvatarCsReq), - "CmdUnlockSkilltreeCsReq" => Some(Self::CmdUnlockSkilltreeCsReq), - "CmdPromoteAvatarCsReq" => Some(Self::CmdPromoteAvatarCsReq), - "CmdGetPreAvatarGrowthInfoScRsp" => { - Some(Self::CmdGetPreAvatarGrowthInfoScRsp) - } - "CmdDressAvatarSkinCsReq" => Some(Self::CmdDressAvatarSkinCsReq), - "CmdDressRelicAvatarScRsp" => Some(Self::CmdDressRelicAvatarScRsp), - "CmdRankUpAvatarCsReq" => Some(Self::CmdRankUpAvatarCsReq), - "CmdTakeOffEquipmentCsReq" => Some(Self::CmdTakeOffEquipmentCsReq), - "CmdGetAvatarDataScRsp" => Some(Self::CmdGetAvatarDataScRsp), - "CmdDressAvatarScRsp" => Some(Self::CmdDressAvatarScRsp), - "CmdDressRelicAvatarCsReq" => Some(Self::CmdDressRelicAvatarCsReq), "CmdUnlockAvatarSkinScNotify" => Some(Self::CmdUnlockAvatarSkinScNotify), - "CmdPromoteAvatarScRsp" => Some(Self::CmdPromoteAvatarScRsp), - "CmdSetGrowthTargetAvatarScRsp" => Some(Self::CmdSetGrowthTargetAvatarScRsp), - "CmdAvatarExpUpCsReq" => Some(Self::CmdAvatarExpUpCsReq), - "CmdAddMultiPathAvatarScNotify" => Some(Self::CmdAddMultiPathAvatarScNotify), - "CmdRankUpAvatarScRsp" => Some(Self::CmdRankUpAvatarScRsp), - "CmdSetGrowthTargetAvatarCsReq" => Some(Self::CmdSetGrowthTargetAvatarCsReq), - "CmdTakeOffRelicCsReq" => Some(Self::CmdTakeOffRelicCsReq), + "CmdAvatarExpUpScRsp" => Some(Self::CmdAvatarExpUpScRsp), + "CmdSetAvatarEnhancedIdScRsp" => Some(Self::CmdSetAvatarEnhancedIdScRsp), + "CmdDressAvatarSkinScRsp" => Some(Self::CmdDressAvatarSkinScRsp), + "CmdDressAvatarScRsp" => Some(Self::CmdDressAvatarScRsp), "CmdDressAvatarCsReq" => Some(Self::CmdDressAvatarCsReq), - "CmdTakePromotionRewardScRsp" => Some(Self::CmdTakePromotionRewardScRsp), "CmdTakeOffRelicScRsp" => Some(Self::CmdTakeOffRelicScRsp), - "CmdGrowthTargetAvatarChangedScNotify" => { - Some(Self::CmdGrowthTargetAvatarChangedScNotify) + "CmdTakePromotionRewardCsReq" => Some(Self::CmdTakePromotionRewardCsReq), + "CmdAddMultiPathAvatarScNotify" => Some(Self::CmdAddMultiPathAvatarScNotify), + "CmdTakePromotionRewardScRsp" => Some(Self::CmdTakePromotionRewardScRsp), + "CmdDressRelicAvatarCsReq" => Some(Self::CmdDressRelicAvatarCsReq), + "CmdGetPreAvatarActivityListScRsp" => { + Some(Self::CmdGetPreAvatarActivityListScRsp) } - "CmdGetAvatarDataCsReq" => Some(Self::CmdGetAvatarDataCsReq), + "CmdMarkAvatarCsReq" => Some(Self::CmdMarkAvatarCsReq), + "CmdMarkAvatarScRsp" => Some(Self::CmdMarkAvatarScRsp), + "CmdPromoteAvatarCsReq" => Some(Self::CmdPromoteAvatarCsReq), + "CmdRankUpAvatarCsReq" => Some(Self::CmdRankUpAvatarCsReq), + "CmdTakeOffEquipmentScRsp" => Some(Self::CmdTakeOffEquipmentScRsp), + "CmdTakeOffAvatarSkinCsReq" => Some(Self::CmdTakeOffAvatarSkinCsReq), + "CmdSetGrowthTargetAvatarCsReq" => Some(Self::CmdSetGrowthTargetAvatarCsReq), + "CmdGetPreAvatarActivityListCsReq" => { + Some(Self::CmdGetPreAvatarActivityListCsReq) + } + "CmdPromoteAvatarScRsp" => Some(Self::CmdPromoteAvatarScRsp), + "CmdRankUpAvatarScRsp" => Some(Self::CmdRankUpAvatarScRsp), + "CmdDressAvatarSkinCsReq" => Some(Self::CmdDressAvatarSkinCsReq), "CmdGetPreAvatarGrowthInfoCsReq" => { Some(Self::CmdGetPreAvatarGrowthInfoCsReq) } + "CmdUnlockSkilltreeCsReq" => Some(Self::CmdUnlockSkilltreeCsReq), + "CmdAvatarExpUpCsReq" => Some(Self::CmdAvatarExpUpCsReq), "CmdTakeOffAvatarSkinScRsp" => Some(Self::CmdTakeOffAvatarSkinScRsp), - "CmdMarkAvatarScRsp" => Some(Self::CmdMarkAvatarScRsp), - "CmdGetPreAvatarListCsReq" => Some(Self::CmdGetPreAvatarListCsReq), + "CmdTakeOffRelicCsReq" => Some(Self::CmdTakeOffRelicCsReq), + "CmdSetGrowthTargetAvatarScRsp" => Some(Self::CmdSetGrowthTargetAvatarScRsp), + "CmdGetPreAvatarGrowthInfoScRsp" => { + Some(Self::CmdGetPreAvatarGrowthInfoScRsp) + } + "CmdGetAvatarDataScRsp" => Some(Self::CmdGetAvatarDataScRsp), + "CmdDressRelicAvatarScRsp" => Some(Self::CmdDressRelicAvatarScRsp), + "CmdGetAvatarDataCsReq" => Some(Self::CmdGetAvatarDataCsReq), "CmdUnlockSkilltreeScRsp" => Some(Self::CmdUnlockSkilltreeScRsp), - "CmdGetPreAvatarListScRsp" => Some(Self::CmdGetPreAvatarListScRsp), + "CmdTakeOffEquipmentCsReq" => Some(Self::CmdTakeOffEquipmentCsReq), + "CmdGrowthTargetAvatarChangedScNotify" => { + Some(Self::CmdGrowthTargetAvatarChangedScNotify) + } _ => None, } } @@ -46486,6 +48326,7 @@ pub enum AddAvatarSrc { None = 0, Gacha = 1, Rogue = 2, + Delivery = 3, } impl AddAvatarSrc { /// String value of the enum field names used in the ProtoBuf definition. @@ -46497,6 +48338,7 @@ impl AddAvatarSrc { Self::None => "ADD_AVATAR_SRC_NONE", Self::Gacha => "ADD_AVATAR_SRC_GACHA", Self::Rogue => "ADD_AVATAR_SRC_ROGUE", + Self::Delivery => "ADD_AVATAR_SRC_DELIVERY", } } /// Creates an enum from field names used in the ProtoBuf definition. @@ -46505,6 +48347,7 @@ impl AddAvatarSrc { "ADD_AVATAR_SRC_NONE" => Some(Self::None), "ADD_AVATAR_SRC_GACHA" => Some(Self::Gacha), "ADD_AVATAR_SRC_ROGUE" => Some(Self::Rogue), + "ADD_AVATAR_SRC_DELIVERY" => Some(Self::Delivery), _ => None, } } @@ -46554,20 +48397,20 @@ impl Gifjdobiiik { #[repr(i32)] pub enum CmdBattleType { None = 0, - CmdPveBattleResultCsReq = 195, - CmdPveBattleResultScRsp = 132, - CmdSyncClientResVersionCsReq = 171, - CmdBattleLogReportScRsp = 172, - CmdQuitBattleScRsp = 140, - CmdBattleLogReportCsReq = 156, - CmdQuitBattleScNotify = 122, - CmdGetCurBattleInfoScRsp = 148, - CmdGetCurBattleInfoCsReq = 176, - CmdReBattleAfterBattleLoseCsNotify = 116, - CmdQuitBattleCsReq = 131, - CmdServerSimulateBattleFinishScNotify = 185, - CmdRebattleByClientCsNotify = 146, - CmdSyncClientResVersionScRsp = 152, + CmdQuitBattleScRsp = 139, + CmdSyncClientResVersionScRsp = 159, + CmdServerSimulateBattleFinishScNotify = 102, + CmdBattleLogReportCsReq = 177, + CmdBattleLogReportScRsp = 180, + CmdGetCurBattleInfoScRsp = 121, + CmdRebattleByClientCsNotify = 174, + CmdPveBattleResultCsReq = 120, + CmdGetCurBattleInfoCsReq = 127, + CmdReBattleAfterBattleLoseCsNotify = 105, + CmdPveBattleResultScRsp = 191, + CmdSyncClientResVersionCsReq = 170, + CmdQuitBattleScNotify = 154, + CmdQuitBattleCsReq = 167, } impl CmdBattleType { /// String value of the enum field names used in the ProtoBuf definition. @@ -46577,48 +48420,48 @@ impl CmdBattleType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdBattleTypeNone", - Self::CmdPveBattleResultCsReq => "CmdPVEBattleResultCsReq", - Self::CmdPveBattleResultScRsp => "CmdPVEBattleResultScRsp", - Self::CmdSyncClientResVersionCsReq => "CmdSyncClientResVersionCsReq", - Self::CmdBattleLogReportScRsp => "CmdBattleLogReportScRsp", Self::CmdQuitBattleScRsp => "CmdQuitBattleScRsp", + Self::CmdSyncClientResVersionScRsp => "CmdSyncClientResVersionScRsp", + Self::CmdServerSimulateBattleFinishScNotify => { + "CmdServerSimulateBattleFinishScNotify" + } Self::CmdBattleLogReportCsReq => "CmdBattleLogReportCsReq", - Self::CmdQuitBattleScNotify => "CmdQuitBattleScNotify", + Self::CmdBattleLogReportScRsp => "CmdBattleLogReportScRsp", Self::CmdGetCurBattleInfoScRsp => "CmdGetCurBattleInfoScRsp", + Self::CmdRebattleByClientCsNotify => "CmdRebattleByClientCsNotify", + Self::CmdPveBattleResultCsReq => "CmdPVEBattleResultCsReq", Self::CmdGetCurBattleInfoCsReq => "CmdGetCurBattleInfoCsReq", Self::CmdReBattleAfterBattleLoseCsNotify => { "CmdReBattleAfterBattleLoseCsNotify" } + Self::CmdPveBattleResultScRsp => "CmdPVEBattleResultScRsp", + Self::CmdSyncClientResVersionCsReq => "CmdSyncClientResVersionCsReq", + Self::CmdQuitBattleScNotify => "CmdQuitBattleScNotify", Self::CmdQuitBattleCsReq => "CmdQuitBattleCsReq", - Self::CmdServerSimulateBattleFinishScNotify => { - "CmdServerSimulateBattleFinishScNotify" - } - Self::CmdRebattleByClientCsNotify => "CmdRebattleByClientCsNotify", - Self::CmdSyncClientResVersionScRsp => "CmdSyncClientResVersionScRsp", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdBattleTypeNone" => Some(Self::None), - "CmdPVEBattleResultCsReq" => Some(Self::CmdPveBattleResultCsReq), - "CmdPVEBattleResultScRsp" => Some(Self::CmdPveBattleResultScRsp), - "CmdSyncClientResVersionCsReq" => Some(Self::CmdSyncClientResVersionCsReq), - "CmdBattleLogReportScRsp" => Some(Self::CmdBattleLogReportScRsp), "CmdQuitBattleScRsp" => Some(Self::CmdQuitBattleScRsp), + "CmdSyncClientResVersionScRsp" => Some(Self::CmdSyncClientResVersionScRsp), + "CmdServerSimulateBattleFinishScNotify" => { + Some(Self::CmdServerSimulateBattleFinishScNotify) + } "CmdBattleLogReportCsReq" => Some(Self::CmdBattleLogReportCsReq), - "CmdQuitBattleScNotify" => Some(Self::CmdQuitBattleScNotify), + "CmdBattleLogReportScRsp" => Some(Self::CmdBattleLogReportScRsp), "CmdGetCurBattleInfoScRsp" => Some(Self::CmdGetCurBattleInfoScRsp), + "CmdRebattleByClientCsNotify" => Some(Self::CmdRebattleByClientCsNotify), + "CmdPVEBattleResultCsReq" => Some(Self::CmdPveBattleResultCsReq), "CmdGetCurBattleInfoCsReq" => Some(Self::CmdGetCurBattleInfoCsReq), "CmdReBattleAfterBattleLoseCsNotify" => { Some(Self::CmdReBattleAfterBattleLoseCsNotify) } + "CmdPVEBattleResultScRsp" => Some(Self::CmdPveBattleResultScRsp), + "CmdSyncClientResVersionCsReq" => Some(Self::CmdSyncClientResVersionCsReq), + "CmdQuitBattleScNotify" => Some(Self::CmdQuitBattleScNotify), "CmdQuitBattleCsReq" => Some(Self::CmdQuitBattleCsReq), - "CmdServerSimulateBattleFinishScNotify" => { - Some(Self::CmdServerSimulateBattleFinishScNotify) - } - "CmdRebattleByClientCsNotify" => Some(Self::CmdRebattleByClientCsNotify), - "CmdSyncClientResVersionScRsp" => Some(Self::CmdSyncClientResVersionScRsp), _ => None, } } @@ -46629,11 +48472,11 @@ impl CmdBattleType { #[repr(i32)] pub enum CmdBattleCollegeType { None = 0, - CmdGetBattleCollegeDataCsReq = 5795, - CmdStartBattleCollegeCsReq = 5740, - CmdBattleCollegeDataChangeScNotify = 5731, - CmdGetBattleCollegeDataScRsp = 5732, - CmdStartBattleCollegeScRsp = 5776, + CmdBattleCollegeDataChangeScNotify = 5767, + CmdStartBattleCollegeCsReq = 5739, + CmdGetBattleCollegeDataScRsp = 5791, + CmdGetBattleCollegeDataCsReq = 5720, + CmdStartBattleCollegeScRsp = 5727, } impl CmdBattleCollegeType { /// String value of the enum field names used in the ProtoBuf definition. @@ -46643,12 +48486,12 @@ impl CmdBattleCollegeType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdBattleCollegeTypeNone", - Self::CmdGetBattleCollegeDataCsReq => "CmdGetBattleCollegeDataCsReq", - Self::CmdStartBattleCollegeCsReq => "CmdStartBattleCollegeCsReq", Self::CmdBattleCollegeDataChangeScNotify => { "CmdBattleCollegeDataChangeScNotify" } + Self::CmdStartBattleCollegeCsReq => "CmdStartBattleCollegeCsReq", Self::CmdGetBattleCollegeDataScRsp => "CmdGetBattleCollegeDataScRsp", + Self::CmdGetBattleCollegeDataCsReq => "CmdGetBattleCollegeDataCsReq", Self::CmdStartBattleCollegeScRsp => "CmdStartBattleCollegeScRsp", } } @@ -46656,12 +48499,12 @@ impl CmdBattleCollegeType { pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdBattleCollegeTypeNone" => Some(Self::None), - "CmdGetBattleCollegeDataCsReq" => Some(Self::CmdGetBattleCollegeDataCsReq), - "CmdStartBattleCollegeCsReq" => Some(Self::CmdStartBattleCollegeCsReq), "CmdBattleCollegeDataChangeScNotify" => { Some(Self::CmdBattleCollegeDataChangeScNotify) } + "CmdStartBattleCollegeCsReq" => Some(Self::CmdStartBattleCollegeCsReq), "CmdGetBattleCollegeDataScRsp" => Some(Self::CmdGetBattleCollegeDataScRsp), + "CmdGetBattleCollegeDataCsReq" => Some(Self::CmdGetBattleCollegeDataCsReq), "CmdStartBattleCollegeScRsp" => Some(Self::CmdStartBattleCollegeScRsp), _ => None, } @@ -46673,13 +48516,13 @@ impl CmdBattleCollegeType { #[repr(i32)] pub enum CmdBattlePassType { None = 0, - CmdTakeBpRewardCsReq = 3040, - CmdTakeAllRewardScRsp = 3022, - CmdTakeBpRewardScRsp = 3076, - CmdBattlePassInfoNotify = 3095, - CmdBuyBpLevelScRsp = 3071, - CmdBuyBpLevelCsReq = 3048, - CmdTakeAllRewardCsReq = 3052, + CmdBuyBpLevelScRsp = 3070, + CmdBuyBpLevelCsReq = 3021, + CmdTakeAllRewardScRsp = 3054, + CmdTakeBpRewardScRsp = 3027, + CmdTakeBpRewardCsReq = 3039, + CmdTakeAllRewardCsReq = 3059, + CmdBattlePassInfoNotify = 3020, } impl CmdBattlePassType { /// String value of the enum field names used in the ProtoBuf definition. @@ -46689,26 +48532,26 @@ impl CmdBattlePassType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdBattlePassTypeNone", - Self::CmdTakeBpRewardCsReq => "CmdTakeBpRewardCsReq", - Self::CmdTakeAllRewardScRsp => "CmdTakeAllRewardScRsp", - Self::CmdTakeBpRewardScRsp => "CmdTakeBpRewardScRsp", - Self::CmdBattlePassInfoNotify => "CmdBattlePassInfoNotify", Self::CmdBuyBpLevelScRsp => "CmdBuyBpLevelScRsp", Self::CmdBuyBpLevelCsReq => "CmdBuyBpLevelCsReq", + Self::CmdTakeAllRewardScRsp => "CmdTakeAllRewardScRsp", + Self::CmdTakeBpRewardScRsp => "CmdTakeBpRewardScRsp", + Self::CmdTakeBpRewardCsReq => "CmdTakeBpRewardCsReq", Self::CmdTakeAllRewardCsReq => "CmdTakeAllRewardCsReq", + Self::CmdBattlePassInfoNotify => "CmdBattlePassInfoNotify", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdBattlePassTypeNone" => Some(Self::None), - "CmdTakeBpRewardCsReq" => Some(Self::CmdTakeBpRewardCsReq), - "CmdTakeAllRewardScRsp" => Some(Self::CmdTakeAllRewardScRsp), - "CmdTakeBpRewardScRsp" => Some(Self::CmdTakeBpRewardScRsp), - "CmdBattlePassInfoNotify" => Some(Self::CmdBattlePassInfoNotify), "CmdBuyBpLevelScRsp" => Some(Self::CmdBuyBpLevelScRsp), "CmdBuyBpLevelCsReq" => Some(Self::CmdBuyBpLevelCsReq), + "CmdTakeAllRewardScRsp" => Some(Self::CmdTakeAllRewardScRsp), + "CmdTakeBpRewardScRsp" => Some(Self::CmdTakeBpRewardScRsp), + "CmdTakeBpRewardCsReq" => Some(Self::CmdTakeBpRewardCsReq), "CmdTakeAllRewardCsReq" => Some(Self::CmdTakeAllRewardCsReq), + "CmdBattlePassInfoNotify" => Some(Self::CmdBattlePassInfoNotify), _ => None, } } @@ -46790,12 +48633,12 @@ impl BpRewardType { #[repr(i32)] pub enum CmdBenefitActivityType { None = 0, - CmdTakeBenefitActivityRewardCsReq = 4852, - CmdGetBenefitActivityInfoScRsp = 4896, - CmdJoinBenefitActivityScRsp = 4867, - CmdJoinBenefitActivityCsReq = 4886, - CmdGetBenefitActivityInfoCsReq = 4854, - CmdTakeBenefitActivityRewardScRsp = 4887, + CmdTakeBenefitActivityRewardCsReq = 4868, + CmdJoinBenefitActivityScRsp = 4887, + CmdJoinBenefitActivityCsReq = 4861, + CmdTakeBenefitActivityRewardScRsp = 4886, + CmdGetBenefitActivityInfoCsReq = 4899, + CmdGetBenefitActivityInfoScRsp = 4877, } impl CmdBenefitActivityType { /// String value of the enum field names used in the ProtoBuf definition. @@ -46808,13 +48651,13 @@ impl CmdBenefitActivityType { Self::CmdTakeBenefitActivityRewardCsReq => { "CmdTakeBenefitActivityRewardCsReq" } - Self::CmdGetBenefitActivityInfoScRsp => "CmdGetBenefitActivityInfoScRsp", Self::CmdJoinBenefitActivityScRsp => "CmdJoinBenefitActivityScRsp", Self::CmdJoinBenefitActivityCsReq => "CmdJoinBenefitActivityCsReq", - Self::CmdGetBenefitActivityInfoCsReq => "CmdGetBenefitActivityInfoCsReq", Self::CmdTakeBenefitActivityRewardScRsp => { "CmdTakeBenefitActivityRewardScRsp" } + Self::CmdGetBenefitActivityInfoCsReq => "CmdGetBenefitActivityInfoCsReq", + Self::CmdGetBenefitActivityInfoScRsp => "CmdGetBenefitActivityInfoScRsp", } } /// Creates an enum from field names used in the ProtoBuf definition. @@ -46824,16 +48667,16 @@ impl CmdBenefitActivityType { "CmdTakeBenefitActivityRewardCsReq" => { Some(Self::CmdTakeBenefitActivityRewardCsReq) } - "CmdGetBenefitActivityInfoScRsp" => { - Some(Self::CmdGetBenefitActivityInfoScRsp) - } "CmdJoinBenefitActivityScRsp" => Some(Self::CmdJoinBenefitActivityScRsp), "CmdJoinBenefitActivityCsReq" => Some(Self::CmdJoinBenefitActivityCsReq), + "CmdTakeBenefitActivityRewardScRsp" => { + Some(Self::CmdTakeBenefitActivityRewardScRsp) + } "CmdGetBenefitActivityInfoCsReq" => { Some(Self::CmdGetBenefitActivityInfoCsReq) } - "CmdTakeBenefitActivityRewardScRsp" => { - Some(Self::CmdTakeBenefitActivityRewardScRsp) + "CmdGetBenefitActivityInfoScRsp" => { + Some(Self::CmdGetBenefitActivityInfoScRsp) } _ => None, } @@ -46845,22 +48688,22 @@ impl CmdBenefitActivityType { #[repr(i32)] pub enum CmdBoxingClubType { None = 0, - CmdStartBoxingClubBattleScRsp = 4248, - CmdSetBoxingClubResonanceLineupScRsp = 4246, - CmdSetBoxingClubResonanceLineupCsReq = 4216, - CmdBoxingClubChallengeUpdateScNotify = 4256, - CmdGiveUpBoxingClubChallengeScRsp = 4252, - CmdGiveUpBoxingClubChallengeCsReq = 4271, - CmdChooseBoxingClubResonanceCsReq = 4272, - CmdChooseBoxingClubResonanceScRsp = 4285, - CmdBoxingClubRewardScNotify = 4222, - CmdGetBoxingClubInfoCsReq = 4295, - CmdStartBoxingClubBattleCsReq = 4276, - CmdMatchBoxingClubOpponentCsReq = 4231, - CmdChooseBoxingClubStageOptionalBuffCsReq = 4283, - CmdGetBoxingClubInfoScRsp = 4232, - CmdChooseBoxingClubStageOptionalBuffScRsp = 4260, - CmdMatchBoxingClubOpponentScRsp = 4240, + CmdChooseBoxingClubStageOptionalBuffScRsp = 4298, + CmdStartBoxingClubBattleScRsp = 4221, + CmdGiveUpBoxingClubChallengeCsReq = 4270, + CmdGetBoxingClubInfoScRsp = 4291, + CmdGiveUpBoxingClubChallengeScRsp = 4259, + CmdStartBoxingClubBattleCsReq = 4227, + CmdBoxingClubChallengeUpdateScNotify = 4277, + CmdChooseBoxingClubResonanceCsReq = 4280, + CmdChooseBoxingClubResonanceScRsp = 4202, + CmdMatchBoxingClubOpponentScRsp = 4239, + CmdSetBoxingClubResonanceLineupCsReq = 4205, + CmdSetBoxingClubResonanceLineupScRsp = 4274, + CmdMatchBoxingClubOpponentCsReq = 4267, + CmdChooseBoxingClubStageOptionalBuffCsReq = 4273, + CmdBoxingClubRewardScNotify = 4254, + CmdGetBoxingClubInfoCsReq = 4220, } impl CmdBoxingClubType { /// String value of the enum field names used in the ProtoBuf definition. @@ -46870,21 +48713,20 @@ impl CmdBoxingClubType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdBoxingClubTypeNone", + Self::CmdChooseBoxingClubStageOptionalBuffScRsp => { + "CmdChooseBoxingClubStageOptionalBuffScRsp" + } Self::CmdStartBoxingClubBattleScRsp => "CmdStartBoxingClubBattleScRsp", - Self::CmdSetBoxingClubResonanceLineupScRsp => { - "CmdSetBoxingClubResonanceLineupScRsp" - } - Self::CmdSetBoxingClubResonanceLineupCsReq => { - "CmdSetBoxingClubResonanceLineupCsReq" - } - Self::CmdBoxingClubChallengeUpdateScNotify => { - "CmdBoxingClubChallengeUpdateScNotify" + Self::CmdGiveUpBoxingClubChallengeCsReq => { + "CmdGiveUpBoxingClubChallengeCsReq" } + Self::CmdGetBoxingClubInfoScRsp => "CmdGetBoxingClubInfoScRsp", Self::CmdGiveUpBoxingClubChallengeScRsp => { "CmdGiveUpBoxingClubChallengeScRsp" } - Self::CmdGiveUpBoxingClubChallengeCsReq => { - "CmdGiveUpBoxingClubChallengeCsReq" + Self::CmdStartBoxingClubBattleCsReq => "CmdStartBoxingClubBattleCsReq", + Self::CmdBoxingClubChallengeUpdateScNotify => { + "CmdBoxingClubChallengeUpdateScNotify" } Self::CmdChooseBoxingClubResonanceCsReq => { "CmdChooseBoxingClubResonanceCsReq" @@ -46892,39 +48734,39 @@ impl CmdBoxingClubType { Self::CmdChooseBoxingClubResonanceScRsp => { "CmdChooseBoxingClubResonanceScRsp" } - Self::CmdBoxingClubRewardScNotify => "CmdBoxingClubRewardScNotify", - Self::CmdGetBoxingClubInfoCsReq => "CmdGetBoxingClubInfoCsReq", - Self::CmdStartBoxingClubBattleCsReq => "CmdStartBoxingClubBattleCsReq", + Self::CmdMatchBoxingClubOpponentScRsp => "CmdMatchBoxingClubOpponentScRsp", + Self::CmdSetBoxingClubResonanceLineupCsReq => { + "CmdSetBoxingClubResonanceLineupCsReq" + } + Self::CmdSetBoxingClubResonanceLineupScRsp => { + "CmdSetBoxingClubResonanceLineupScRsp" + } Self::CmdMatchBoxingClubOpponentCsReq => "CmdMatchBoxingClubOpponentCsReq", Self::CmdChooseBoxingClubStageOptionalBuffCsReq => { "CmdChooseBoxingClubStageOptionalBuffCsReq" } - Self::CmdGetBoxingClubInfoScRsp => "CmdGetBoxingClubInfoScRsp", - Self::CmdChooseBoxingClubStageOptionalBuffScRsp => { - "CmdChooseBoxingClubStageOptionalBuffScRsp" - } - Self::CmdMatchBoxingClubOpponentScRsp => "CmdMatchBoxingClubOpponentScRsp", + Self::CmdBoxingClubRewardScNotify => "CmdBoxingClubRewardScNotify", + Self::CmdGetBoxingClubInfoCsReq => "CmdGetBoxingClubInfoCsReq", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdBoxingClubTypeNone" => Some(Self::None), + "CmdChooseBoxingClubStageOptionalBuffScRsp" => { + Some(Self::CmdChooseBoxingClubStageOptionalBuffScRsp) + } "CmdStartBoxingClubBattleScRsp" => Some(Self::CmdStartBoxingClubBattleScRsp), - "CmdSetBoxingClubResonanceLineupScRsp" => { - Some(Self::CmdSetBoxingClubResonanceLineupScRsp) - } - "CmdSetBoxingClubResonanceLineupCsReq" => { - Some(Self::CmdSetBoxingClubResonanceLineupCsReq) - } - "CmdBoxingClubChallengeUpdateScNotify" => { - Some(Self::CmdBoxingClubChallengeUpdateScNotify) + "CmdGiveUpBoxingClubChallengeCsReq" => { + Some(Self::CmdGiveUpBoxingClubChallengeCsReq) } + "CmdGetBoxingClubInfoScRsp" => Some(Self::CmdGetBoxingClubInfoScRsp), "CmdGiveUpBoxingClubChallengeScRsp" => { Some(Self::CmdGiveUpBoxingClubChallengeScRsp) } - "CmdGiveUpBoxingClubChallengeCsReq" => { - Some(Self::CmdGiveUpBoxingClubChallengeCsReq) + "CmdStartBoxingClubBattleCsReq" => Some(Self::CmdStartBoxingClubBattleCsReq), + "CmdBoxingClubChallengeUpdateScNotify" => { + Some(Self::CmdBoxingClubChallengeUpdateScNotify) } "CmdChooseBoxingClubResonanceCsReq" => { Some(Self::CmdChooseBoxingClubResonanceCsReq) @@ -46932,22 +48774,23 @@ impl CmdBoxingClubType { "CmdChooseBoxingClubResonanceScRsp" => { Some(Self::CmdChooseBoxingClubResonanceScRsp) } - "CmdBoxingClubRewardScNotify" => Some(Self::CmdBoxingClubRewardScNotify), - "CmdGetBoxingClubInfoCsReq" => Some(Self::CmdGetBoxingClubInfoCsReq), - "CmdStartBoxingClubBattleCsReq" => Some(Self::CmdStartBoxingClubBattleCsReq), + "CmdMatchBoxingClubOpponentScRsp" => { + Some(Self::CmdMatchBoxingClubOpponentScRsp) + } + "CmdSetBoxingClubResonanceLineupCsReq" => { + Some(Self::CmdSetBoxingClubResonanceLineupCsReq) + } + "CmdSetBoxingClubResonanceLineupScRsp" => { + Some(Self::CmdSetBoxingClubResonanceLineupScRsp) + } "CmdMatchBoxingClubOpponentCsReq" => { Some(Self::CmdMatchBoxingClubOpponentCsReq) } "CmdChooseBoxingClubStageOptionalBuffCsReq" => { Some(Self::CmdChooseBoxingClubStageOptionalBuffCsReq) } - "CmdGetBoxingClubInfoScRsp" => Some(Self::CmdGetBoxingClubInfoScRsp), - "CmdChooseBoxingClubStageOptionalBuffScRsp" => { - Some(Self::CmdChooseBoxingClubStageOptionalBuffScRsp) - } - "CmdMatchBoxingClubOpponentScRsp" => { - Some(Self::CmdMatchBoxingClubOpponentScRsp) - } + "CmdBoxingClubRewardScNotify" => Some(Self::CmdBoxingClubRewardScNotify), + "CmdGetBoxingClubInfoCsReq" => Some(Self::CmdGetBoxingClubInfoCsReq), _ => None, } } @@ -46958,27 +48801,27 @@ impl CmdBoxingClubType { #[repr(i32)] pub enum CmdChallengeType { None = 0, - CmdLeaveChallengeCsReq = 1776, - CmdTakeChallengeRewardScRsp = 1760, - CmdRestartChallengePhaseScRsp = 1758, - CmdStartPartialChallengeScRsp = 1733, - CmdStartChallengeScRsp = 1740, - CmdGetChallengeGroupStatisticsScRsp = 1739, - CmdTakeChallengeRewardCsReq = 1783, - CmdEnterChallengeNextPhaseCsReq = 1721, - CmdGetChallengeScRsp = 1732, - CmdChallengeLineupNotify = 1785, - CmdLeaveChallengeScRsp = 1748, - CmdGetCurChallengeCsReq = 1756, - CmdStartChallengeCsReq = 1731, - CmdGetChallengeCsReq = 1795, - CmdEnterChallengeNextPhaseScRsp = 1729, - CmdChallengeBossPhaseSettleNotify = 1763, - CmdRestartChallengePhaseCsReq = 1777, - CmdStartPartialChallengeCsReq = 1743, - CmdGetChallengeGroupStatisticsCsReq = 1702, - CmdGetCurChallengeScRsp = 1772, - CmdChallengeSettleNotify = 1771, + CmdChallengeLineupNotify = 1702, + CmdGetChallengeCsReq = 1720, + CmdChallengeSettleNotify = 1770, + CmdRestartChallengePhaseCsReq = 1736, + CmdLeaveChallengeScRsp = 1721, + CmdGetChallengeGroupStatisticsScRsp = 1738, + CmdRestartChallengePhaseScRsp = 1787, + CmdGetChallengeScRsp = 1791, + CmdEnterChallengeNextPhaseScRsp = 1706, + CmdGetChallengeGroupStatisticsCsReq = 1785, + CmdGetCurChallengeCsReq = 1777, + CmdGetCurChallengeScRsp = 1780, + CmdStartChallengeCsReq = 1767, + CmdStartChallengeScRsp = 1739, + CmdLeaveChallengeCsReq = 1727, + CmdEnterChallengeNextPhaseCsReq = 1709, + CmdStartPartialChallengeCsReq = 1752, + CmdStartPartialChallengeScRsp = 1768, + CmdChallengeBossPhaseSettleNotify = 1731, + CmdTakeChallengeRewardScRsp = 1798, + CmdTakeChallengeRewardCsReq = 1773, } impl CmdChallengeType { /// String value of the enum field names used in the ProtoBuf definition. @@ -46988,70 +48831,70 @@ impl CmdChallengeType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdChallengeTypeNone", - Self::CmdLeaveChallengeCsReq => "CmdLeaveChallengeCsReq", - Self::CmdTakeChallengeRewardScRsp => "CmdTakeChallengeRewardScRsp", - Self::CmdRestartChallengePhaseScRsp => "CmdRestartChallengePhaseScRsp", - Self::CmdStartPartialChallengeScRsp => "CmdStartPartialChallengeScRsp", - Self::CmdStartChallengeScRsp => "CmdStartChallengeScRsp", + Self::CmdChallengeLineupNotify => "CmdChallengeLineupNotify", + Self::CmdGetChallengeCsReq => "CmdGetChallengeCsReq", + Self::CmdChallengeSettleNotify => "CmdChallengeSettleNotify", + Self::CmdRestartChallengePhaseCsReq => "CmdRestartChallengePhaseCsReq", + Self::CmdLeaveChallengeScRsp => "CmdLeaveChallengeScRsp", Self::CmdGetChallengeGroupStatisticsScRsp => { "CmdGetChallengeGroupStatisticsScRsp" } - Self::CmdTakeChallengeRewardCsReq => "CmdTakeChallengeRewardCsReq", - Self::CmdEnterChallengeNextPhaseCsReq => "CmdEnterChallengeNextPhaseCsReq", + Self::CmdRestartChallengePhaseScRsp => "CmdRestartChallengePhaseScRsp", Self::CmdGetChallengeScRsp => "CmdGetChallengeScRsp", - Self::CmdChallengeLineupNotify => "CmdChallengeLineupNotify", - Self::CmdLeaveChallengeScRsp => "CmdLeaveChallengeScRsp", - Self::CmdGetCurChallengeCsReq => "CmdGetCurChallengeCsReq", - Self::CmdStartChallengeCsReq => "CmdStartChallengeCsReq", - Self::CmdGetChallengeCsReq => "CmdGetChallengeCsReq", Self::CmdEnterChallengeNextPhaseScRsp => "CmdEnterChallengeNextPhaseScRsp", - Self::CmdChallengeBossPhaseSettleNotify => { - "CmdChallengeBossPhaseSettleNotify" - } - Self::CmdRestartChallengePhaseCsReq => "CmdRestartChallengePhaseCsReq", - Self::CmdStartPartialChallengeCsReq => "CmdStartPartialChallengeCsReq", Self::CmdGetChallengeGroupStatisticsCsReq => { "CmdGetChallengeGroupStatisticsCsReq" } + Self::CmdGetCurChallengeCsReq => "CmdGetCurChallengeCsReq", Self::CmdGetCurChallengeScRsp => "CmdGetCurChallengeScRsp", - Self::CmdChallengeSettleNotify => "CmdChallengeSettleNotify", + Self::CmdStartChallengeCsReq => "CmdStartChallengeCsReq", + Self::CmdStartChallengeScRsp => "CmdStartChallengeScRsp", + Self::CmdLeaveChallengeCsReq => "CmdLeaveChallengeCsReq", + Self::CmdEnterChallengeNextPhaseCsReq => "CmdEnterChallengeNextPhaseCsReq", + Self::CmdStartPartialChallengeCsReq => "CmdStartPartialChallengeCsReq", + Self::CmdStartPartialChallengeScRsp => "CmdStartPartialChallengeScRsp", + Self::CmdChallengeBossPhaseSettleNotify => { + "CmdChallengeBossPhaseSettleNotify" + } + Self::CmdTakeChallengeRewardScRsp => "CmdTakeChallengeRewardScRsp", + Self::CmdTakeChallengeRewardCsReq => "CmdTakeChallengeRewardCsReq", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdChallengeTypeNone" => Some(Self::None), - "CmdLeaveChallengeCsReq" => Some(Self::CmdLeaveChallengeCsReq), - "CmdTakeChallengeRewardScRsp" => Some(Self::CmdTakeChallengeRewardScRsp), - "CmdRestartChallengePhaseScRsp" => Some(Self::CmdRestartChallengePhaseScRsp), - "CmdStartPartialChallengeScRsp" => Some(Self::CmdStartPartialChallengeScRsp), - "CmdStartChallengeScRsp" => Some(Self::CmdStartChallengeScRsp), + "CmdChallengeLineupNotify" => Some(Self::CmdChallengeLineupNotify), + "CmdGetChallengeCsReq" => Some(Self::CmdGetChallengeCsReq), + "CmdChallengeSettleNotify" => Some(Self::CmdChallengeSettleNotify), + "CmdRestartChallengePhaseCsReq" => Some(Self::CmdRestartChallengePhaseCsReq), + "CmdLeaveChallengeScRsp" => Some(Self::CmdLeaveChallengeScRsp), "CmdGetChallengeGroupStatisticsScRsp" => { Some(Self::CmdGetChallengeGroupStatisticsScRsp) } - "CmdTakeChallengeRewardCsReq" => Some(Self::CmdTakeChallengeRewardCsReq), - "CmdEnterChallengeNextPhaseCsReq" => { - Some(Self::CmdEnterChallengeNextPhaseCsReq) - } + "CmdRestartChallengePhaseScRsp" => Some(Self::CmdRestartChallengePhaseScRsp), "CmdGetChallengeScRsp" => Some(Self::CmdGetChallengeScRsp), - "CmdChallengeLineupNotify" => Some(Self::CmdChallengeLineupNotify), - "CmdLeaveChallengeScRsp" => Some(Self::CmdLeaveChallengeScRsp), - "CmdGetCurChallengeCsReq" => Some(Self::CmdGetCurChallengeCsReq), - "CmdStartChallengeCsReq" => Some(Self::CmdStartChallengeCsReq), - "CmdGetChallengeCsReq" => Some(Self::CmdGetChallengeCsReq), "CmdEnterChallengeNextPhaseScRsp" => { Some(Self::CmdEnterChallengeNextPhaseScRsp) } - "CmdChallengeBossPhaseSettleNotify" => { - Some(Self::CmdChallengeBossPhaseSettleNotify) - } - "CmdRestartChallengePhaseCsReq" => Some(Self::CmdRestartChallengePhaseCsReq), - "CmdStartPartialChallengeCsReq" => Some(Self::CmdStartPartialChallengeCsReq), "CmdGetChallengeGroupStatisticsCsReq" => { Some(Self::CmdGetChallengeGroupStatisticsCsReq) } + "CmdGetCurChallengeCsReq" => Some(Self::CmdGetCurChallengeCsReq), "CmdGetCurChallengeScRsp" => Some(Self::CmdGetCurChallengeScRsp), - "CmdChallengeSettleNotify" => Some(Self::CmdChallengeSettleNotify), + "CmdStartChallengeCsReq" => Some(Self::CmdStartChallengeCsReq), + "CmdStartChallengeScRsp" => Some(Self::CmdStartChallengeScRsp), + "CmdLeaveChallengeCsReq" => Some(Self::CmdLeaveChallengeCsReq), + "CmdEnterChallengeNextPhaseCsReq" => { + Some(Self::CmdEnterChallengeNextPhaseCsReq) + } + "CmdStartPartialChallengeCsReq" => Some(Self::CmdStartPartialChallengeCsReq), + "CmdStartPartialChallengeScRsp" => Some(Self::CmdStartPartialChallengeScRsp), + "CmdChallengeBossPhaseSettleNotify" => { + Some(Self::CmdChallengeBossPhaseSettleNotify) + } + "CmdTakeChallengeRewardScRsp" => Some(Self::CmdTakeChallengeRewardScRsp), + "CmdTakeChallengeRewardCsReq" => Some(Self::CmdTakeChallengeRewardCsReq), _ => None, } } @@ -47095,22 +48938,22 @@ impl ChallengeStatus { #[repr(i32)] pub enum CmdChatType { None = 0, - CmdSendMsgScRsp = 3932, - CmdGetLoginChatInfoScRsp = 3960, - CmdGetPrivateChatHistoryCsReq = 3976, - CmdBatchMarkChatEmojiCsReq = 3916, - CmdRevcMsgScNotify = 3931, - CmdMarkChatEmojiCsReq = 3972, - CmdGetLoginChatInfoCsReq = 3983, - CmdBatchMarkChatEmojiScRsp = 3946, - CmdSendMsgCsReq = 3995, - CmdGetChatEmojiListScRsp = 3956, - CmdPrivateMsgOfflineUsersScNotify = 3940, - CmdGetChatFriendHistoryCsReq = 3971, - CmdMarkChatEmojiScRsp = 3985, - CmdGetChatEmojiListCsReq = 3922, - CmdGetPrivateChatHistoryScRsp = 3948, - CmdGetChatFriendHistoryScRsp = 3952, + CmdPrivateMsgOfflineUsersScNotify = 3939, + CmdGetChatFriendHistoryScRsp = 3959, + CmdGetLoginChatInfoScRsp = 3998, + CmdGetChatEmojiListScRsp = 3977, + CmdMarkChatEmojiCsReq = 3980, + CmdGetPrivateChatHistoryScRsp = 3921, + CmdBatchMarkChatEmojiScRsp = 3974, + CmdMarkChatEmojiScRsp = 3902, + CmdGetPrivateChatHistoryCsReq = 3927, + CmdGetChatEmojiListCsReq = 3954, + CmdSendMsgCsReq = 3920, + CmdGetChatFriendHistoryCsReq = 3970, + CmdGetLoginChatInfoCsReq = 3973, + CmdRevcMsgScNotify = 3967, + CmdSendMsgScRsp = 3991, + CmdBatchMarkChatEmojiCsReq = 3905, } impl CmdChatType { /// String value of the enum field names used in the ProtoBuf definition. @@ -47120,48 +48963,48 @@ impl CmdChatType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdChatTypeNone", - Self::CmdSendMsgScRsp => "CmdSendMsgScRsp", - Self::CmdGetLoginChatInfoScRsp => "CmdGetLoginChatInfoScRsp", - Self::CmdGetPrivateChatHistoryCsReq => "CmdGetPrivateChatHistoryCsReq", - Self::CmdBatchMarkChatEmojiCsReq => "CmdBatchMarkChatEmojiCsReq", - Self::CmdRevcMsgScNotify => "CmdRevcMsgScNotify", - Self::CmdMarkChatEmojiCsReq => "CmdMarkChatEmojiCsReq", - Self::CmdGetLoginChatInfoCsReq => "CmdGetLoginChatInfoCsReq", - Self::CmdBatchMarkChatEmojiScRsp => "CmdBatchMarkChatEmojiScRsp", - Self::CmdSendMsgCsReq => "CmdSendMsgCsReq", - Self::CmdGetChatEmojiListScRsp => "CmdGetChatEmojiListScRsp", Self::CmdPrivateMsgOfflineUsersScNotify => { "CmdPrivateMsgOfflineUsersScNotify" } - Self::CmdGetChatFriendHistoryCsReq => "CmdGetChatFriendHistoryCsReq", - Self::CmdMarkChatEmojiScRsp => "CmdMarkChatEmojiScRsp", - Self::CmdGetChatEmojiListCsReq => "CmdGetChatEmojiListCsReq", - Self::CmdGetPrivateChatHistoryScRsp => "CmdGetPrivateChatHistoryScRsp", Self::CmdGetChatFriendHistoryScRsp => "CmdGetChatFriendHistoryScRsp", + Self::CmdGetLoginChatInfoScRsp => "CmdGetLoginChatInfoScRsp", + Self::CmdGetChatEmojiListScRsp => "CmdGetChatEmojiListScRsp", + Self::CmdMarkChatEmojiCsReq => "CmdMarkChatEmojiCsReq", + Self::CmdGetPrivateChatHistoryScRsp => "CmdGetPrivateChatHistoryScRsp", + Self::CmdBatchMarkChatEmojiScRsp => "CmdBatchMarkChatEmojiScRsp", + Self::CmdMarkChatEmojiScRsp => "CmdMarkChatEmojiScRsp", + Self::CmdGetPrivateChatHistoryCsReq => "CmdGetPrivateChatHistoryCsReq", + Self::CmdGetChatEmojiListCsReq => "CmdGetChatEmojiListCsReq", + Self::CmdSendMsgCsReq => "CmdSendMsgCsReq", + Self::CmdGetChatFriendHistoryCsReq => "CmdGetChatFriendHistoryCsReq", + Self::CmdGetLoginChatInfoCsReq => "CmdGetLoginChatInfoCsReq", + Self::CmdRevcMsgScNotify => "CmdRevcMsgScNotify", + Self::CmdSendMsgScRsp => "CmdSendMsgScRsp", + Self::CmdBatchMarkChatEmojiCsReq => "CmdBatchMarkChatEmojiCsReq", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdChatTypeNone" => Some(Self::None), - "CmdSendMsgScRsp" => Some(Self::CmdSendMsgScRsp), - "CmdGetLoginChatInfoScRsp" => Some(Self::CmdGetLoginChatInfoScRsp), - "CmdGetPrivateChatHistoryCsReq" => Some(Self::CmdGetPrivateChatHistoryCsReq), - "CmdBatchMarkChatEmojiCsReq" => Some(Self::CmdBatchMarkChatEmojiCsReq), - "CmdRevcMsgScNotify" => Some(Self::CmdRevcMsgScNotify), - "CmdMarkChatEmojiCsReq" => Some(Self::CmdMarkChatEmojiCsReq), - "CmdGetLoginChatInfoCsReq" => Some(Self::CmdGetLoginChatInfoCsReq), - "CmdBatchMarkChatEmojiScRsp" => Some(Self::CmdBatchMarkChatEmojiScRsp), - "CmdSendMsgCsReq" => Some(Self::CmdSendMsgCsReq), - "CmdGetChatEmojiListScRsp" => Some(Self::CmdGetChatEmojiListScRsp), "CmdPrivateMsgOfflineUsersScNotify" => { Some(Self::CmdPrivateMsgOfflineUsersScNotify) } - "CmdGetChatFriendHistoryCsReq" => Some(Self::CmdGetChatFriendHistoryCsReq), - "CmdMarkChatEmojiScRsp" => Some(Self::CmdMarkChatEmojiScRsp), - "CmdGetChatEmojiListCsReq" => Some(Self::CmdGetChatEmojiListCsReq), - "CmdGetPrivateChatHistoryScRsp" => Some(Self::CmdGetPrivateChatHistoryScRsp), "CmdGetChatFriendHistoryScRsp" => Some(Self::CmdGetChatFriendHistoryScRsp), + "CmdGetLoginChatInfoScRsp" => Some(Self::CmdGetLoginChatInfoScRsp), + "CmdGetChatEmojiListScRsp" => Some(Self::CmdGetChatEmojiListScRsp), + "CmdMarkChatEmojiCsReq" => Some(Self::CmdMarkChatEmojiCsReq), + "CmdGetPrivateChatHistoryScRsp" => Some(Self::CmdGetPrivateChatHistoryScRsp), + "CmdBatchMarkChatEmojiScRsp" => Some(Self::CmdBatchMarkChatEmojiScRsp), + "CmdMarkChatEmojiScRsp" => Some(Self::CmdMarkChatEmojiScRsp), + "CmdGetPrivateChatHistoryCsReq" => Some(Self::CmdGetPrivateChatHistoryCsReq), + "CmdGetChatEmojiListCsReq" => Some(Self::CmdGetChatEmojiListCsReq), + "CmdSendMsgCsReq" => Some(Self::CmdSendMsgCsReq), + "CmdGetChatFriendHistoryCsReq" => Some(Self::CmdGetChatFriendHistoryCsReq), + "CmdGetLoginChatInfoCsReq" => Some(Self::CmdGetLoginChatInfoCsReq), + "CmdRevcMsgScNotify" => Some(Self::CmdRevcMsgScNotify), + "CmdSendMsgScRsp" => Some(Self::CmdSendMsgScRsp), + "CmdBatchMarkChatEmojiCsReq" => Some(Self::CmdBatchMarkChatEmojiCsReq), _ => None, } } @@ -47172,84 +49015,84 @@ impl CmdChatType { #[repr(i32)] pub enum CmdChessRogueType { None = 0, - CmdChessRogueUpdateDiceInfoScNotify = 5514, - CmdChessRoguePickAvatarScRsp = 5568, - CmdChessRogueQueryAeonDimensionsCsReq = 5578, - CmdSelectChessRogueSubStoryScRsp = 5496, - CmdChessRogueCheatRollScRsp = 5473, - CmdChessRogueSelectCellScRsp = 5422, - CmdSyncChessRogueNousValueScNotify = 5506, - CmdChessRogueNousEnableRogueTalentScRsp = 5523, - CmdChessRogueRollDiceScRsp = 5426, - CmdGetChessRogueNousStoryInfoScRsp = 5594, - CmdFinishChessRogueSubStoryScRsp = 5504, - CmdChessRogueNousEditDiceCsReq = 5571, - CmdChessRogueUpdateReviveInfoScNotify = 5598, - CmdChessRogueNousGetRogueTalentInfoCsReq = 5505, - CmdEnhanceChessRogueBuffScRsp = 5419, - CmdChessRogueRollDiceCsReq = 5533, - CmdSyncChessRogueMainStoryFinishScNotify = 5477, - CmdChessRogueEnterNextLayerScRsp = 5501, - CmdEnhanceChessRogueBuffCsReq = 5551, - CmdFinishChessRogueSubStoryCsReq = 5520, - CmdChessRogueChangeyAeonDimensionNotify = 5486, - CmdChessRogueLeaveCsReq = 5573, - CmdSyncChessRogueNousSubStoryScNotify = 5497, - CmdChessRogueQueryScRsp = 5447, - CmdSelectChessRogueSubStoryCsReq = 5535, - CmdGetChessRogueStoryInfoScRsp = 5481, - CmdChessRogueUpdateBoardScNotify = 5580, - CmdChessRogueNousGetRogueTalentInfoScRsp = 5552, - CmdChessRogueLayerAccountInfoNotify = 5555, - CmdChessRogueStartCsReq = 5471, - CmdChessRogueNousEnableRogueTalentCsReq = 5433, - CmdEnterChessRogueAeonRoomCsReq = 5585, - CmdChessRogueNousDiceUpdateNotify = 5597, - CmdChessRogueUpdateAeonModifierValueScNotify = 5574, - CmdChessRogueQuestFinishNotify = 5526, - CmdGetChessRogueStoryInfoCsReq = 5570, - CmdChessRogueReRollDiceScRsp = 5445, - CmdChessRogueEnterCellScRsp = 5518, - CmdChessRogueQueryAeonDimensionsScRsp = 5413, - CmdChessRogueReRollDiceCsReq = 5587, - CmdChessRogueUpdateDicePassiveAccumulateValueScNotify = 5415, - CmdChessRogueUpdateActionPointScNotify = 5468, - CmdGetChessRogueBuffEnhanceInfoScRsp = 5586, - CmdChessRogueNousDiceSurfaceUnlockNotify = 5538, - CmdChessRoguePickAvatarCsReq = 5590, - CmdChessRogueStartScRsp = 5441, - CmdGetChessRogueStoryAeonTalkInfoCsReq = 5588, - CmdChessRogueGiveUpRollCsReq = 5547, - CmdChessRogueConfirmRollCsReq = 5448, - CmdChessRogueReviveAvatarScRsp = 5516, - CmdChessRogueEnterNextLayerCsReq = 5460, - CmdChessRogueUpdateLevelBaseInfoScNotify = 5461, - CmdChessRogueReviveAvatarCsReq = 5465, - CmdGetChessRogueNousStoryInfoCsReq = 5474, - CmdChessRogueSkipTeachingLevelCsReq = 5418, - CmdChessRogueUpdateUnlockLevelScNotify = 5527, - CmdChessRogueQuitCsReq = 5492, - CmdChessRogueQueryCsReq = 5595, - CmdChessRogueQuitScRsp = 5521, - CmdChessRogueGiveUpCsReq = 5529, - CmdChessRogueGiveUpScRsp = 5436, - CmdChessRogueCellUpdateNotify = 5490, - CmdEnterChessRogueAeonRoomScRsp = 5417, - CmdChessRogueEnterScRsp = 5457, - CmdChessRogueUpdateMoneyInfoScNotify = 5484, - CmdGetChessRogueBuffEnhanceInfoCsReq = 5525, - CmdChessRogueSelectCellCsReq = 5528, - CmdSyncChessRogueNousMainStoryScNotify = 5510, - CmdChessRogueConfirmRollScRsp = 5542, - CmdChessRogueEnterCsReq = 5414, - CmdChessRogueSkipTeachingLevelScRsp = 5600, - CmdGetChessRogueStoryAeonTalkInfoScRsp = 5449, - CmdChessRogueUpdateAllowedSelectCellScNotify = 5495, - CmdChessRogueLeaveScRsp = 5531, - CmdChessRogueGiveUpRollScRsp = 5408, - CmdChessRogueCheatRollCsReq = 5512, - CmdChessRogueEnterCellCsReq = 5472, - CmdChessRogueNousEditDiceScRsp = 5557, + CmdFinishChessRogueSubStoryScRsp = 5442, + CmdChessRoguePickAvatarCsReq = 5506, + CmdChessRogueNousDiceSurfaceUnlockNotify = 5540, + CmdGetChessRogueBuffEnhanceInfoCsReq = 5448, + CmdChessRogueRollDiceScRsp = 5504, + CmdChessRogueQuitCsReq = 5511, + CmdSelectChessRogueSubStoryCsReq = 5592, + CmdChessRogueLeaveScRsp = 5469, + CmdChessRogueUpdateReviveInfoScNotify = 5547, + CmdChessRogueUpdateAllowedSelectCellScNotify = 5538, + CmdChessRogueNousEditDiceScRsp = 5515, + CmdSyncChessRogueNousMainStoryScNotify = 5574, + CmdChessRogueStartCsReq = 5488, + CmdChessRogueEnterCellScRsp = 5579, + CmdChessRogueSelectCellCsReq = 5459, + CmdSelectChessRogueSubStoryScRsp = 5406, + CmdSyncChessRogueNousValueScNotify = 5513, + CmdChessRogueSkipTeachingLevelCsReq = 5453, + CmdChessRogueNousEnableRogueTalentScRsp = 5486, + CmdSyncChessRogueNousSubStoryScNotify = 5424, + CmdChessRogueGiveUpCsReq = 5407, + CmdChessRogueCheatRollCsReq = 5485, + CmdChessRogueLayerAccountInfoNotify = 5413, + CmdChessRogueQuitScRsp = 5542, + CmdChessRogueRollDiceCsReq = 5418, + CmdGetChessRogueNousStoryInfoCsReq = 5461, + CmdChessRogueChangeyAeonDimensionNotify = 5533, + CmdChessRogueReRollDiceCsReq = 5576, + CmdChessRogueStartScRsp = 5436, + CmdChessRoguePickAvatarScRsp = 5561, + CmdChessRogueGiveUpRollCsReq = 5590, + CmdChessRogueGiveUpScRsp = 5505, + CmdEnhanceChessRogueBuffCsReq = 5564, + CmdChessRogueNousEnableRogueTalentCsReq = 5449, + CmdGetChessRogueNousStoryInfoScRsp = 5570, + CmdGetChessRogueStoryInfoCsReq = 5446, + CmdChessRogueUpdateUnlockLevelScNotify = 5537, + CmdChessRogueLeaveCsReq = 5476, + CmdChessRogueUpdateBoardScNotify = 5481, + CmdChessRogueQuestFinishNotify = 5482, + CmdChessRogueQueryAeonDimensionsScRsp = 5423, + CmdChessRogueUpdateDiceInfoScNotify = 5473, + CmdChessRogueEnterNextLayerScRsp = 5521, + CmdChessRogueUpdateActionPointScNotify = 5499, + CmdChessRogueGiveUpRollScRsp = 5403, + CmdGetChessRogueStoryInfoScRsp = 5402, + CmdSyncChessRogueMainStoryFinishScNotify = 5441, + CmdChessRogueReviveAvatarScRsp = 5543, + CmdChessRogueUpdateAeonModifierValueScNotify = 5404, + CmdChessRogueEnterNextLayerCsReq = 5546, + CmdChessRogueEnterScRsp = 5526, + CmdChessRogueEnterCellCsReq = 5519, + CmdChessRogueSelectCellScRsp = 5508, + CmdChessRogueQueryAeonDimensionsCsReq = 5535, + CmdChessRogueEnterCsReq = 5490, + CmdEnterChessRogueAeonRoomCsReq = 5455, + CmdChessRogueUpdateLevelBaseInfoScNotify = 5555, + CmdChessRogueUpdateMoneyInfoScNotify = 5534, + CmdChessRogueQueryScRsp = 5412, + CmdChessRogueSkipTeachingLevelScRsp = 5438, + CmdGetChessRogueStoryAeonTalkInfoCsReq = 5474, + CmdChessRogueNousEditDiceCsReq = 5428, + CmdChessRogueCellUpdateNotify = 5558, + CmdEnterChessRogueAeonRoomScRsp = 5410, + CmdChessRogueNousGetRogueTalentInfoScRsp = 5554, + CmdChessRogueCheatRollScRsp = 5560, + CmdEnhanceChessRogueBuffScRsp = 5500, + CmdChessRogueQueryCsReq = 5541, + CmdFinishChessRogueSubStoryCsReq = 5454, + CmdGetChessRogueStoryAeonTalkInfoScRsp = 5553, + CmdChessRogueNousGetRogueTalentInfoCsReq = 5495, + CmdChessRogueNousDiceUpdateNotify = 5462, + CmdChessRogueConfirmRollCsReq = 5571, + CmdChessRogueReRollDiceScRsp = 5487, + CmdChessRogueUpdateDicePassiveAccumulateValueScNotify = 5569, + CmdChessRogueReviveAvatarCsReq = 5551, + CmdGetChessRogueBuffEnhanceInfoScRsp = 5520, + CmdChessRogueConfirmRollScRsp = 5422, } impl CmdChessRogueType { /// String value of the enum field names used in the ProtoBuf definition. @@ -47259,324 +49102,324 @@ impl CmdChessRogueType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdChessRogueTypeNone", - Self::CmdChessRogueUpdateDiceInfoScNotify => { - "CmdChessRogueUpdateDiceInfoScNotify" - } - Self::CmdChessRoguePickAvatarScRsp => "CmdChessRoguePickAvatarScRsp", - Self::CmdChessRogueQueryAeonDimensionsCsReq => { - "CmdChessRogueQueryAeonDimensionsCsReq" - } - Self::CmdSelectChessRogueSubStoryScRsp => "CmdSelectChessRogueSubStoryScRsp", - Self::CmdChessRogueCheatRollScRsp => "CmdChessRogueCheatRollScRsp", - Self::CmdChessRogueSelectCellScRsp => "CmdChessRogueSelectCellScRsp", - Self::CmdSyncChessRogueNousValueScNotify => { - "CmdSyncChessRogueNousValueScNotify" - } - Self::CmdChessRogueNousEnableRogueTalentScRsp => { - "CmdChessRogueNousEnableRogueTalentScRsp" - } - Self::CmdChessRogueRollDiceScRsp => "CmdChessRogueRollDiceScRsp", - Self::CmdGetChessRogueNousStoryInfoScRsp => { - "CmdGetChessRogueNousStoryInfoScRsp" - } Self::CmdFinishChessRogueSubStoryScRsp => "CmdFinishChessRogueSubStoryScRsp", - Self::CmdChessRogueNousEditDiceCsReq => "CmdChessRogueNousEditDiceCsReq", - Self::CmdChessRogueUpdateReviveInfoScNotify => { - "CmdChessRogueUpdateReviveInfoScNotify" - } - Self::CmdChessRogueNousGetRogueTalentInfoCsReq => { - "CmdChessRogueNousGetRogueTalentInfoCsReq" - } - Self::CmdEnhanceChessRogueBuffScRsp => "CmdEnhanceChessRogueBuffScRsp", - Self::CmdChessRogueRollDiceCsReq => "CmdChessRogueRollDiceCsReq", - Self::CmdSyncChessRogueMainStoryFinishScNotify => { - "CmdSyncChessRogueMainStoryFinishScNotify" - } - Self::CmdChessRogueEnterNextLayerScRsp => "CmdChessRogueEnterNextLayerScRsp", - Self::CmdEnhanceChessRogueBuffCsReq => "CmdEnhanceChessRogueBuffCsReq", - Self::CmdFinishChessRogueSubStoryCsReq => "CmdFinishChessRogueSubStoryCsReq", - Self::CmdChessRogueChangeyAeonDimensionNotify => { - "CmdChessRogueChangeyAeonDimensionNotify" - } - Self::CmdChessRogueLeaveCsReq => "CmdChessRogueLeaveCsReq", - Self::CmdSyncChessRogueNousSubStoryScNotify => { - "CmdSyncChessRogueNousSubStoryScNotify" - } - Self::CmdChessRogueQueryScRsp => "CmdChessRogueQueryScRsp", - Self::CmdSelectChessRogueSubStoryCsReq => "CmdSelectChessRogueSubStoryCsReq", - Self::CmdGetChessRogueStoryInfoScRsp => "CmdGetChessRogueStoryInfoScRsp", - Self::CmdChessRogueUpdateBoardScNotify => "CmdChessRogueUpdateBoardScNotify", - Self::CmdChessRogueNousGetRogueTalentInfoScRsp => { - "CmdChessRogueNousGetRogueTalentInfoScRsp" - } - Self::CmdChessRogueLayerAccountInfoNotify => { - "CmdChessRogueLayerAccountInfoNotify" - } - Self::CmdChessRogueStartCsReq => "CmdChessRogueStartCsReq", - Self::CmdChessRogueNousEnableRogueTalentCsReq => { - "CmdChessRogueNousEnableRogueTalentCsReq" - } - Self::CmdEnterChessRogueAeonRoomCsReq => "CmdEnterChessRogueAeonRoomCsReq", - Self::CmdChessRogueNousDiceUpdateNotify => { - "CmdChessRogueNousDiceUpdateNotify" - } - Self::CmdChessRogueUpdateAeonModifierValueScNotify => { - "CmdChessRogueUpdateAeonModifierValueScNotify" - } - Self::CmdChessRogueQuestFinishNotify => "CmdChessRogueQuestFinishNotify", - Self::CmdGetChessRogueStoryInfoCsReq => "CmdGetChessRogueStoryInfoCsReq", - Self::CmdChessRogueReRollDiceScRsp => "CmdChessRogueReRollDiceScRsp", - Self::CmdChessRogueEnterCellScRsp => "CmdChessRogueEnterCellScRsp", - Self::CmdChessRogueQueryAeonDimensionsScRsp => { - "CmdChessRogueQueryAeonDimensionsScRsp" - } - Self::CmdChessRogueReRollDiceCsReq => "CmdChessRogueReRollDiceCsReq", - Self::CmdChessRogueUpdateDicePassiveAccumulateValueScNotify => { - "CmdChessRogueUpdateDicePassiveAccumulateValueScNotify" - } - Self::CmdChessRogueUpdateActionPointScNotify => { - "CmdChessRogueUpdateActionPointScNotify" - } - Self::CmdGetChessRogueBuffEnhanceInfoScRsp => { - "CmdGetChessRogueBuffEnhanceInfoScRsp" - } + Self::CmdChessRoguePickAvatarCsReq => "CmdChessRoguePickAvatarCsReq", Self::CmdChessRogueNousDiceSurfaceUnlockNotify => { "CmdChessRogueNousDiceSurfaceUnlockNotify" } - Self::CmdChessRoguePickAvatarCsReq => "CmdChessRoguePickAvatarCsReq", - Self::CmdChessRogueStartScRsp => "CmdChessRogueStartScRsp", - Self::CmdGetChessRogueStoryAeonTalkInfoCsReq => { - "CmdGetChessRogueStoryAeonTalkInfoCsReq" - } - Self::CmdChessRogueGiveUpRollCsReq => "CmdChessRogueGiveUpRollCsReq", - Self::CmdChessRogueConfirmRollCsReq => "CmdChessRogueConfirmRollCsReq", - Self::CmdChessRogueReviveAvatarScRsp => "CmdChessRogueReviveAvatarScRsp", - Self::CmdChessRogueEnterNextLayerCsReq => "CmdChessRogueEnterNextLayerCsReq", - Self::CmdChessRogueUpdateLevelBaseInfoScNotify => { - "CmdChessRogueUpdateLevelBaseInfoScNotify" - } - Self::CmdChessRogueReviveAvatarCsReq => "CmdChessRogueReviveAvatarCsReq", - Self::CmdGetChessRogueNousStoryInfoCsReq => { - "CmdGetChessRogueNousStoryInfoCsReq" - } - Self::CmdChessRogueSkipTeachingLevelCsReq => { - "CmdChessRogueSkipTeachingLevelCsReq" - } - Self::CmdChessRogueUpdateUnlockLevelScNotify => { - "CmdChessRogueUpdateUnlockLevelScNotify" - } - Self::CmdChessRogueQuitCsReq => "CmdChessRogueQuitCsReq", - Self::CmdChessRogueQueryCsReq => "CmdChessRogueQueryCsReq", - Self::CmdChessRogueQuitScRsp => "CmdChessRogueQuitScRsp", - Self::CmdChessRogueGiveUpCsReq => "CmdChessRogueGiveUpCsReq", - Self::CmdChessRogueGiveUpScRsp => "CmdChessRogueGiveUpScRsp", - Self::CmdChessRogueCellUpdateNotify => "CmdChessRogueCellUpdateNotify", - Self::CmdEnterChessRogueAeonRoomScRsp => "CmdEnterChessRogueAeonRoomScRsp", - Self::CmdChessRogueEnterScRsp => "CmdChessRogueEnterScRsp", - Self::CmdChessRogueUpdateMoneyInfoScNotify => { - "CmdChessRogueUpdateMoneyInfoScNotify" - } Self::CmdGetChessRogueBuffEnhanceInfoCsReq => { "CmdGetChessRogueBuffEnhanceInfoCsReq" } - Self::CmdChessRogueSelectCellCsReq => "CmdChessRogueSelectCellCsReq", - Self::CmdSyncChessRogueNousMainStoryScNotify => { - "CmdSyncChessRogueNousMainStoryScNotify" - } - Self::CmdChessRogueConfirmRollScRsp => "CmdChessRogueConfirmRollScRsp", - Self::CmdChessRogueEnterCsReq => "CmdChessRogueEnterCsReq", - Self::CmdChessRogueSkipTeachingLevelScRsp => { - "CmdChessRogueSkipTeachingLevelScRsp" - } - Self::CmdGetChessRogueStoryAeonTalkInfoScRsp => { - "CmdGetChessRogueStoryAeonTalkInfoScRsp" + Self::CmdChessRogueRollDiceScRsp => "CmdChessRogueRollDiceScRsp", + Self::CmdChessRogueQuitCsReq => "CmdChessRogueQuitCsReq", + Self::CmdSelectChessRogueSubStoryCsReq => "CmdSelectChessRogueSubStoryCsReq", + Self::CmdChessRogueLeaveScRsp => "CmdChessRogueLeaveScRsp", + Self::CmdChessRogueUpdateReviveInfoScNotify => { + "CmdChessRogueUpdateReviveInfoScNotify" } Self::CmdChessRogueUpdateAllowedSelectCellScNotify => { "CmdChessRogueUpdateAllowedSelectCellScNotify" } - Self::CmdChessRogueLeaveScRsp => "CmdChessRogueLeaveScRsp", - Self::CmdChessRogueGiveUpRollScRsp => "CmdChessRogueGiveUpRollScRsp", - Self::CmdChessRogueCheatRollCsReq => "CmdChessRogueCheatRollCsReq", - Self::CmdChessRogueEnterCellCsReq => "CmdChessRogueEnterCellCsReq", Self::CmdChessRogueNousEditDiceScRsp => "CmdChessRogueNousEditDiceScRsp", + Self::CmdSyncChessRogueNousMainStoryScNotify => { + "CmdSyncChessRogueNousMainStoryScNotify" + } + Self::CmdChessRogueStartCsReq => "CmdChessRogueStartCsReq", + Self::CmdChessRogueEnterCellScRsp => "CmdChessRogueEnterCellScRsp", + Self::CmdChessRogueSelectCellCsReq => "CmdChessRogueSelectCellCsReq", + Self::CmdSelectChessRogueSubStoryScRsp => "CmdSelectChessRogueSubStoryScRsp", + Self::CmdSyncChessRogueNousValueScNotify => { + "CmdSyncChessRogueNousValueScNotify" + } + Self::CmdChessRogueSkipTeachingLevelCsReq => { + "CmdChessRogueSkipTeachingLevelCsReq" + } + Self::CmdChessRogueNousEnableRogueTalentScRsp => { + "CmdChessRogueNousEnableRogueTalentScRsp" + } + Self::CmdSyncChessRogueNousSubStoryScNotify => { + "CmdSyncChessRogueNousSubStoryScNotify" + } + Self::CmdChessRogueGiveUpCsReq => "CmdChessRogueGiveUpCsReq", + Self::CmdChessRogueCheatRollCsReq => "CmdChessRogueCheatRollCsReq", + Self::CmdChessRogueLayerAccountInfoNotify => { + "CmdChessRogueLayerAccountInfoNotify" + } + Self::CmdChessRogueQuitScRsp => "CmdChessRogueQuitScRsp", + Self::CmdChessRogueRollDiceCsReq => "CmdChessRogueRollDiceCsReq", + Self::CmdGetChessRogueNousStoryInfoCsReq => { + "CmdGetChessRogueNousStoryInfoCsReq" + } + Self::CmdChessRogueChangeyAeonDimensionNotify => { + "CmdChessRogueChangeyAeonDimensionNotify" + } + Self::CmdChessRogueReRollDiceCsReq => "CmdChessRogueReRollDiceCsReq", + Self::CmdChessRogueStartScRsp => "CmdChessRogueStartScRsp", + Self::CmdChessRoguePickAvatarScRsp => "CmdChessRoguePickAvatarScRsp", + Self::CmdChessRogueGiveUpRollCsReq => "CmdChessRogueGiveUpRollCsReq", + Self::CmdChessRogueGiveUpScRsp => "CmdChessRogueGiveUpScRsp", + Self::CmdEnhanceChessRogueBuffCsReq => "CmdEnhanceChessRogueBuffCsReq", + Self::CmdChessRogueNousEnableRogueTalentCsReq => { + "CmdChessRogueNousEnableRogueTalentCsReq" + } + Self::CmdGetChessRogueNousStoryInfoScRsp => { + "CmdGetChessRogueNousStoryInfoScRsp" + } + Self::CmdGetChessRogueStoryInfoCsReq => "CmdGetChessRogueStoryInfoCsReq", + Self::CmdChessRogueUpdateUnlockLevelScNotify => { + "CmdChessRogueUpdateUnlockLevelScNotify" + } + Self::CmdChessRogueLeaveCsReq => "CmdChessRogueLeaveCsReq", + Self::CmdChessRogueUpdateBoardScNotify => "CmdChessRogueUpdateBoardScNotify", + Self::CmdChessRogueQuestFinishNotify => "CmdChessRogueQuestFinishNotify", + Self::CmdChessRogueQueryAeonDimensionsScRsp => { + "CmdChessRogueQueryAeonDimensionsScRsp" + } + Self::CmdChessRogueUpdateDiceInfoScNotify => { + "CmdChessRogueUpdateDiceInfoScNotify" + } + Self::CmdChessRogueEnterNextLayerScRsp => "CmdChessRogueEnterNextLayerScRsp", + Self::CmdChessRogueUpdateActionPointScNotify => { + "CmdChessRogueUpdateActionPointScNotify" + } + Self::CmdChessRogueGiveUpRollScRsp => "CmdChessRogueGiveUpRollScRsp", + Self::CmdGetChessRogueStoryInfoScRsp => "CmdGetChessRogueStoryInfoScRsp", + Self::CmdSyncChessRogueMainStoryFinishScNotify => { + "CmdSyncChessRogueMainStoryFinishScNotify" + } + Self::CmdChessRogueReviveAvatarScRsp => "CmdChessRogueReviveAvatarScRsp", + Self::CmdChessRogueUpdateAeonModifierValueScNotify => { + "CmdChessRogueUpdateAeonModifierValueScNotify" + } + Self::CmdChessRogueEnterNextLayerCsReq => "CmdChessRogueEnterNextLayerCsReq", + Self::CmdChessRogueEnterScRsp => "CmdChessRogueEnterScRsp", + Self::CmdChessRogueEnterCellCsReq => "CmdChessRogueEnterCellCsReq", + Self::CmdChessRogueSelectCellScRsp => "CmdChessRogueSelectCellScRsp", + Self::CmdChessRogueQueryAeonDimensionsCsReq => { + "CmdChessRogueQueryAeonDimensionsCsReq" + } + Self::CmdChessRogueEnterCsReq => "CmdChessRogueEnterCsReq", + Self::CmdEnterChessRogueAeonRoomCsReq => "CmdEnterChessRogueAeonRoomCsReq", + Self::CmdChessRogueUpdateLevelBaseInfoScNotify => { + "CmdChessRogueUpdateLevelBaseInfoScNotify" + } + Self::CmdChessRogueUpdateMoneyInfoScNotify => { + "CmdChessRogueUpdateMoneyInfoScNotify" + } + Self::CmdChessRogueQueryScRsp => "CmdChessRogueQueryScRsp", + Self::CmdChessRogueSkipTeachingLevelScRsp => { + "CmdChessRogueSkipTeachingLevelScRsp" + } + Self::CmdGetChessRogueStoryAeonTalkInfoCsReq => { + "CmdGetChessRogueStoryAeonTalkInfoCsReq" + } + Self::CmdChessRogueNousEditDiceCsReq => "CmdChessRogueNousEditDiceCsReq", + Self::CmdChessRogueCellUpdateNotify => "CmdChessRogueCellUpdateNotify", + Self::CmdEnterChessRogueAeonRoomScRsp => "CmdEnterChessRogueAeonRoomScRsp", + Self::CmdChessRogueNousGetRogueTalentInfoScRsp => { + "CmdChessRogueNousGetRogueTalentInfoScRsp" + } + Self::CmdChessRogueCheatRollScRsp => "CmdChessRogueCheatRollScRsp", + Self::CmdEnhanceChessRogueBuffScRsp => "CmdEnhanceChessRogueBuffScRsp", + Self::CmdChessRogueQueryCsReq => "CmdChessRogueQueryCsReq", + Self::CmdFinishChessRogueSubStoryCsReq => "CmdFinishChessRogueSubStoryCsReq", + Self::CmdGetChessRogueStoryAeonTalkInfoScRsp => { + "CmdGetChessRogueStoryAeonTalkInfoScRsp" + } + Self::CmdChessRogueNousGetRogueTalentInfoCsReq => { + "CmdChessRogueNousGetRogueTalentInfoCsReq" + } + Self::CmdChessRogueNousDiceUpdateNotify => { + "CmdChessRogueNousDiceUpdateNotify" + } + Self::CmdChessRogueConfirmRollCsReq => "CmdChessRogueConfirmRollCsReq", + Self::CmdChessRogueReRollDiceScRsp => "CmdChessRogueReRollDiceScRsp", + Self::CmdChessRogueUpdateDicePassiveAccumulateValueScNotify => { + "CmdChessRogueUpdateDicePassiveAccumulateValueScNotify" + } + Self::CmdChessRogueReviveAvatarCsReq => "CmdChessRogueReviveAvatarCsReq", + Self::CmdGetChessRogueBuffEnhanceInfoScRsp => { + "CmdGetChessRogueBuffEnhanceInfoScRsp" + } + Self::CmdChessRogueConfirmRollScRsp => "CmdChessRogueConfirmRollScRsp", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdChessRogueTypeNone" => Some(Self::None), - "CmdChessRogueUpdateDiceInfoScNotify" => { - Some(Self::CmdChessRogueUpdateDiceInfoScNotify) - } - "CmdChessRoguePickAvatarScRsp" => Some(Self::CmdChessRoguePickAvatarScRsp), - "CmdChessRogueQueryAeonDimensionsCsReq" => { - Some(Self::CmdChessRogueQueryAeonDimensionsCsReq) - } - "CmdSelectChessRogueSubStoryScRsp" => { - Some(Self::CmdSelectChessRogueSubStoryScRsp) - } - "CmdChessRogueCheatRollScRsp" => Some(Self::CmdChessRogueCheatRollScRsp), - "CmdChessRogueSelectCellScRsp" => Some(Self::CmdChessRogueSelectCellScRsp), - "CmdSyncChessRogueNousValueScNotify" => { - Some(Self::CmdSyncChessRogueNousValueScNotify) - } - "CmdChessRogueNousEnableRogueTalentScRsp" => { - Some(Self::CmdChessRogueNousEnableRogueTalentScRsp) - } - "CmdChessRogueRollDiceScRsp" => Some(Self::CmdChessRogueRollDiceScRsp), - "CmdGetChessRogueNousStoryInfoScRsp" => { - Some(Self::CmdGetChessRogueNousStoryInfoScRsp) - } "CmdFinishChessRogueSubStoryScRsp" => { Some(Self::CmdFinishChessRogueSubStoryScRsp) } - "CmdChessRogueNousEditDiceCsReq" => { - Some(Self::CmdChessRogueNousEditDiceCsReq) - } - "CmdChessRogueUpdateReviveInfoScNotify" => { - Some(Self::CmdChessRogueUpdateReviveInfoScNotify) - } - "CmdChessRogueNousGetRogueTalentInfoCsReq" => { - Some(Self::CmdChessRogueNousGetRogueTalentInfoCsReq) - } - "CmdEnhanceChessRogueBuffScRsp" => Some(Self::CmdEnhanceChessRogueBuffScRsp), - "CmdChessRogueRollDiceCsReq" => Some(Self::CmdChessRogueRollDiceCsReq), - "CmdSyncChessRogueMainStoryFinishScNotify" => { - Some(Self::CmdSyncChessRogueMainStoryFinishScNotify) - } - "CmdChessRogueEnterNextLayerScRsp" => { - Some(Self::CmdChessRogueEnterNextLayerScRsp) - } - "CmdEnhanceChessRogueBuffCsReq" => Some(Self::CmdEnhanceChessRogueBuffCsReq), - "CmdFinishChessRogueSubStoryCsReq" => { - Some(Self::CmdFinishChessRogueSubStoryCsReq) - } - "CmdChessRogueChangeyAeonDimensionNotify" => { - Some(Self::CmdChessRogueChangeyAeonDimensionNotify) - } - "CmdChessRogueLeaveCsReq" => Some(Self::CmdChessRogueLeaveCsReq), - "CmdSyncChessRogueNousSubStoryScNotify" => { - Some(Self::CmdSyncChessRogueNousSubStoryScNotify) - } - "CmdChessRogueQueryScRsp" => Some(Self::CmdChessRogueQueryScRsp), - "CmdSelectChessRogueSubStoryCsReq" => { - Some(Self::CmdSelectChessRogueSubStoryCsReq) - } - "CmdGetChessRogueStoryInfoScRsp" => { - Some(Self::CmdGetChessRogueStoryInfoScRsp) - } - "CmdChessRogueUpdateBoardScNotify" => { - Some(Self::CmdChessRogueUpdateBoardScNotify) - } - "CmdChessRogueNousGetRogueTalentInfoScRsp" => { - Some(Self::CmdChessRogueNousGetRogueTalentInfoScRsp) - } - "CmdChessRogueLayerAccountInfoNotify" => { - Some(Self::CmdChessRogueLayerAccountInfoNotify) - } - "CmdChessRogueStartCsReq" => Some(Self::CmdChessRogueStartCsReq), - "CmdChessRogueNousEnableRogueTalentCsReq" => { - Some(Self::CmdChessRogueNousEnableRogueTalentCsReq) - } - "CmdEnterChessRogueAeonRoomCsReq" => { - Some(Self::CmdEnterChessRogueAeonRoomCsReq) - } - "CmdChessRogueNousDiceUpdateNotify" => { - Some(Self::CmdChessRogueNousDiceUpdateNotify) - } - "CmdChessRogueUpdateAeonModifierValueScNotify" => { - Some(Self::CmdChessRogueUpdateAeonModifierValueScNotify) - } - "CmdChessRogueQuestFinishNotify" => { - Some(Self::CmdChessRogueQuestFinishNotify) - } - "CmdGetChessRogueStoryInfoCsReq" => { - Some(Self::CmdGetChessRogueStoryInfoCsReq) - } - "CmdChessRogueReRollDiceScRsp" => Some(Self::CmdChessRogueReRollDiceScRsp), - "CmdChessRogueEnterCellScRsp" => Some(Self::CmdChessRogueEnterCellScRsp), - "CmdChessRogueQueryAeonDimensionsScRsp" => { - Some(Self::CmdChessRogueQueryAeonDimensionsScRsp) - } - "CmdChessRogueReRollDiceCsReq" => Some(Self::CmdChessRogueReRollDiceCsReq), - "CmdChessRogueUpdateDicePassiveAccumulateValueScNotify" => { - Some(Self::CmdChessRogueUpdateDicePassiveAccumulateValueScNotify) - } - "CmdChessRogueUpdateActionPointScNotify" => { - Some(Self::CmdChessRogueUpdateActionPointScNotify) - } - "CmdGetChessRogueBuffEnhanceInfoScRsp" => { - Some(Self::CmdGetChessRogueBuffEnhanceInfoScRsp) - } + "CmdChessRoguePickAvatarCsReq" => Some(Self::CmdChessRoguePickAvatarCsReq), "CmdChessRogueNousDiceSurfaceUnlockNotify" => { Some(Self::CmdChessRogueNousDiceSurfaceUnlockNotify) } - "CmdChessRoguePickAvatarCsReq" => Some(Self::CmdChessRoguePickAvatarCsReq), - "CmdChessRogueStartScRsp" => Some(Self::CmdChessRogueStartScRsp), - "CmdGetChessRogueStoryAeonTalkInfoCsReq" => { - Some(Self::CmdGetChessRogueStoryAeonTalkInfoCsReq) - } - "CmdChessRogueGiveUpRollCsReq" => Some(Self::CmdChessRogueGiveUpRollCsReq), - "CmdChessRogueConfirmRollCsReq" => Some(Self::CmdChessRogueConfirmRollCsReq), - "CmdChessRogueReviveAvatarScRsp" => { - Some(Self::CmdChessRogueReviveAvatarScRsp) - } - "CmdChessRogueEnterNextLayerCsReq" => { - Some(Self::CmdChessRogueEnterNextLayerCsReq) - } - "CmdChessRogueUpdateLevelBaseInfoScNotify" => { - Some(Self::CmdChessRogueUpdateLevelBaseInfoScNotify) - } - "CmdChessRogueReviveAvatarCsReq" => { - Some(Self::CmdChessRogueReviveAvatarCsReq) - } - "CmdGetChessRogueNousStoryInfoCsReq" => { - Some(Self::CmdGetChessRogueNousStoryInfoCsReq) - } - "CmdChessRogueSkipTeachingLevelCsReq" => { - Some(Self::CmdChessRogueSkipTeachingLevelCsReq) - } - "CmdChessRogueUpdateUnlockLevelScNotify" => { - Some(Self::CmdChessRogueUpdateUnlockLevelScNotify) - } - "CmdChessRogueQuitCsReq" => Some(Self::CmdChessRogueQuitCsReq), - "CmdChessRogueQueryCsReq" => Some(Self::CmdChessRogueQueryCsReq), - "CmdChessRogueQuitScRsp" => Some(Self::CmdChessRogueQuitScRsp), - "CmdChessRogueGiveUpCsReq" => Some(Self::CmdChessRogueGiveUpCsReq), - "CmdChessRogueGiveUpScRsp" => Some(Self::CmdChessRogueGiveUpScRsp), - "CmdChessRogueCellUpdateNotify" => Some(Self::CmdChessRogueCellUpdateNotify), - "CmdEnterChessRogueAeonRoomScRsp" => { - Some(Self::CmdEnterChessRogueAeonRoomScRsp) - } - "CmdChessRogueEnterScRsp" => Some(Self::CmdChessRogueEnterScRsp), - "CmdChessRogueUpdateMoneyInfoScNotify" => { - Some(Self::CmdChessRogueUpdateMoneyInfoScNotify) - } "CmdGetChessRogueBuffEnhanceInfoCsReq" => { Some(Self::CmdGetChessRogueBuffEnhanceInfoCsReq) } - "CmdChessRogueSelectCellCsReq" => Some(Self::CmdChessRogueSelectCellCsReq), - "CmdSyncChessRogueNousMainStoryScNotify" => { - Some(Self::CmdSyncChessRogueNousMainStoryScNotify) + "CmdChessRogueRollDiceScRsp" => Some(Self::CmdChessRogueRollDiceScRsp), + "CmdChessRogueQuitCsReq" => Some(Self::CmdChessRogueQuitCsReq), + "CmdSelectChessRogueSubStoryCsReq" => { + Some(Self::CmdSelectChessRogueSubStoryCsReq) } - "CmdChessRogueConfirmRollScRsp" => Some(Self::CmdChessRogueConfirmRollScRsp), - "CmdChessRogueEnterCsReq" => Some(Self::CmdChessRogueEnterCsReq), - "CmdChessRogueSkipTeachingLevelScRsp" => { - Some(Self::CmdChessRogueSkipTeachingLevelScRsp) - } - "CmdGetChessRogueStoryAeonTalkInfoScRsp" => { - Some(Self::CmdGetChessRogueStoryAeonTalkInfoScRsp) + "CmdChessRogueLeaveScRsp" => Some(Self::CmdChessRogueLeaveScRsp), + "CmdChessRogueUpdateReviveInfoScNotify" => { + Some(Self::CmdChessRogueUpdateReviveInfoScNotify) } "CmdChessRogueUpdateAllowedSelectCellScNotify" => { Some(Self::CmdChessRogueUpdateAllowedSelectCellScNotify) } - "CmdChessRogueLeaveScRsp" => Some(Self::CmdChessRogueLeaveScRsp), - "CmdChessRogueGiveUpRollScRsp" => Some(Self::CmdChessRogueGiveUpRollScRsp), - "CmdChessRogueCheatRollCsReq" => Some(Self::CmdChessRogueCheatRollCsReq), - "CmdChessRogueEnterCellCsReq" => Some(Self::CmdChessRogueEnterCellCsReq), "CmdChessRogueNousEditDiceScRsp" => { Some(Self::CmdChessRogueNousEditDiceScRsp) } + "CmdSyncChessRogueNousMainStoryScNotify" => { + Some(Self::CmdSyncChessRogueNousMainStoryScNotify) + } + "CmdChessRogueStartCsReq" => Some(Self::CmdChessRogueStartCsReq), + "CmdChessRogueEnterCellScRsp" => Some(Self::CmdChessRogueEnterCellScRsp), + "CmdChessRogueSelectCellCsReq" => Some(Self::CmdChessRogueSelectCellCsReq), + "CmdSelectChessRogueSubStoryScRsp" => { + Some(Self::CmdSelectChessRogueSubStoryScRsp) + } + "CmdSyncChessRogueNousValueScNotify" => { + Some(Self::CmdSyncChessRogueNousValueScNotify) + } + "CmdChessRogueSkipTeachingLevelCsReq" => { + Some(Self::CmdChessRogueSkipTeachingLevelCsReq) + } + "CmdChessRogueNousEnableRogueTalentScRsp" => { + Some(Self::CmdChessRogueNousEnableRogueTalentScRsp) + } + "CmdSyncChessRogueNousSubStoryScNotify" => { + Some(Self::CmdSyncChessRogueNousSubStoryScNotify) + } + "CmdChessRogueGiveUpCsReq" => Some(Self::CmdChessRogueGiveUpCsReq), + "CmdChessRogueCheatRollCsReq" => Some(Self::CmdChessRogueCheatRollCsReq), + "CmdChessRogueLayerAccountInfoNotify" => { + Some(Self::CmdChessRogueLayerAccountInfoNotify) + } + "CmdChessRogueQuitScRsp" => Some(Self::CmdChessRogueQuitScRsp), + "CmdChessRogueRollDiceCsReq" => Some(Self::CmdChessRogueRollDiceCsReq), + "CmdGetChessRogueNousStoryInfoCsReq" => { + Some(Self::CmdGetChessRogueNousStoryInfoCsReq) + } + "CmdChessRogueChangeyAeonDimensionNotify" => { + Some(Self::CmdChessRogueChangeyAeonDimensionNotify) + } + "CmdChessRogueReRollDiceCsReq" => Some(Self::CmdChessRogueReRollDiceCsReq), + "CmdChessRogueStartScRsp" => Some(Self::CmdChessRogueStartScRsp), + "CmdChessRoguePickAvatarScRsp" => Some(Self::CmdChessRoguePickAvatarScRsp), + "CmdChessRogueGiveUpRollCsReq" => Some(Self::CmdChessRogueGiveUpRollCsReq), + "CmdChessRogueGiveUpScRsp" => Some(Self::CmdChessRogueGiveUpScRsp), + "CmdEnhanceChessRogueBuffCsReq" => Some(Self::CmdEnhanceChessRogueBuffCsReq), + "CmdChessRogueNousEnableRogueTalentCsReq" => { + Some(Self::CmdChessRogueNousEnableRogueTalentCsReq) + } + "CmdGetChessRogueNousStoryInfoScRsp" => { + Some(Self::CmdGetChessRogueNousStoryInfoScRsp) + } + "CmdGetChessRogueStoryInfoCsReq" => { + Some(Self::CmdGetChessRogueStoryInfoCsReq) + } + "CmdChessRogueUpdateUnlockLevelScNotify" => { + Some(Self::CmdChessRogueUpdateUnlockLevelScNotify) + } + "CmdChessRogueLeaveCsReq" => Some(Self::CmdChessRogueLeaveCsReq), + "CmdChessRogueUpdateBoardScNotify" => { + Some(Self::CmdChessRogueUpdateBoardScNotify) + } + "CmdChessRogueQuestFinishNotify" => { + Some(Self::CmdChessRogueQuestFinishNotify) + } + "CmdChessRogueQueryAeonDimensionsScRsp" => { + Some(Self::CmdChessRogueQueryAeonDimensionsScRsp) + } + "CmdChessRogueUpdateDiceInfoScNotify" => { + Some(Self::CmdChessRogueUpdateDiceInfoScNotify) + } + "CmdChessRogueEnterNextLayerScRsp" => { + Some(Self::CmdChessRogueEnterNextLayerScRsp) + } + "CmdChessRogueUpdateActionPointScNotify" => { + Some(Self::CmdChessRogueUpdateActionPointScNotify) + } + "CmdChessRogueGiveUpRollScRsp" => Some(Self::CmdChessRogueGiveUpRollScRsp), + "CmdGetChessRogueStoryInfoScRsp" => { + Some(Self::CmdGetChessRogueStoryInfoScRsp) + } + "CmdSyncChessRogueMainStoryFinishScNotify" => { + Some(Self::CmdSyncChessRogueMainStoryFinishScNotify) + } + "CmdChessRogueReviveAvatarScRsp" => { + Some(Self::CmdChessRogueReviveAvatarScRsp) + } + "CmdChessRogueUpdateAeonModifierValueScNotify" => { + Some(Self::CmdChessRogueUpdateAeonModifierValueScNotify) + } + "CmdChessRogueEnterNextLayerCsReq" => { + Some(Self::CmdChessRogueEnterNextLayerCsReq) + } + "CmdChessRogueEnterScRsp" => Some(Self::CmdChessRogueEnterScRsp), + "CmdChessRogueEnterCellCsReq" => Some(Self::CmdChessRogueEnterCellCsReq), + "CmdChessRogueSelectCellScRsp" => Some(Self::CmdChessRogueSelectCellScRsp), + "CmdChessRogueQueryAeonDimensionsCsReq" => { + Some(Self::CmdChessRogueQueryAeonDimensionsCsReq) + } + "CmdChessRogueEnterCsReq" => Some(Self::CmdChessRogueEnterCsReq), + "CmdEnterChessRogueAeonRoomCsReq" => { + Some(Self::CmdEnterChessRogueAeonRoomCsReq) + } + "CmdChessRogueUpdateLevelBaseInfoScNotify" => { + Some(Self::CmdChessRogueUpdateLevelBaseInfoScNotify) + } + "CmdChessRogueUpdateMoneyInfoScNotify" => { + Some(Self::CmdChessRogueUpdateMoneyInfoScNotify) + } + "CmdChessRogueQueryScRsp" => Some(Self::CmdChessRogueQueryScRsp), + "CmdChessRogueSkipTeachingLevelScRsp" => { + Some(Self::CmdChessRogueSkipTeachingLevelScRsp) + } + "CmdGetChessRogueStoryAeonTalkInfoCsReq" => { + Some(Self::CmdGetChessRogueStoryAeonTalkInfoCsReq) + } + "CmdChessRogueNousEditDiceCsReq" => { + Some(Self::CmdChessRogueNousEditDiceCsReq) + } + "CmdChessRogueCellUpdateNotify" => Some(Self::CmdChessRogueCellUpdateNotify), + "CmdEnterChessRogueAeonRoomScRsp" => { + Some(Self::CmdEnterChessRogueAeonRoomScRsp) + } + "CmdChessRogueNousGetRogueTalentInfoScRsp" => { + Some(Self::CmdChessRogueNousGetRogueTalentInfoScRsp) + } + "CmdChessRogueCheatRollScRsp" => Some(Self::CmdChessRogueCheatRollScRsp), + "CmdEnhanceChessRogueBuffScRsp" => Some(Self::CmdEnhanceChessRogueBuffScRsp), + "CmdChessRogueQueryCsReq" => Some(Self::CmdChessRogueQueryCsReq), + "CmdFinishChessRogueSubStoryCsReq" => { + Some(Self::CmdFinishChessRogueSubStoryCsReq) + } + "CmdGetChessRogueStoryAeonTalkInfoScRsp" => { + Some(Self::CmdGetChessRogueStoryAeonTalkInfoScRsp) + } + "CmdChessRogueNousGetRogueTalentInfoCsReq" => { + Some(Self::CmdChessRogueNousGetRogueTalentInfoCsReq) + } + "CmdChessRogueNousDiceUpdateNotify" => { + Some(Self::CmdChessRogueNousDiceUpdateNotify) + } + "CmdChessRogueConfirmRollCsReq" => Some(Self::CmdChessRogueConfirmRollCsReq), + "CmdChessRogueReRollDiceScRsp" => Some(Self::CmdChessRogueReRollDiceScRsp), + "CmdChessRogueUpdateDicePassiveAccumulateValueScNotify" => { + Some(Self::CmdChessRogueUpdateDicePassiveAccumulateValueScNotify) + } + "CmdChessRogueReviveAvatarCsReq" => { + Some(Self::CmdChessRogueReviveAvatarCsReq) + } + "CmdGetChessRogueBuffEnhanceInfoScRsp" => { + Some(Self::CmdGetChessRogueBuffEnhanceInfoScRsp) + } + "CmdChessRogueConfirmRollScRsp" => Some(Self::CmdChessRogueConfirmRollScRsp), _ => None, } } @@ -48244,22 +50087,22 @@ impl Faohejiddhj { #[repr(i32)] pub enum CmdChimeraType { None = 0, - CmdChimeraQuitEndlessCsReq = 8165, - CmdChimeraRoundWorkStartScRsp = 8166, - CmdChimeraDoFinalRoundCsReq = 8171, - CmdChimeraSetLineupScRsp = 8170, - CmdChimeraFinishEndlessRoundScRsp = 8163, - CmdChimeraFinishRoundScRsp = 8162, - CmdChimeraFinishEndlessRoundCsReq = 8167, - CmdChimeraStartEndlessScRsp = 8169, - CmdChimeraRoundWorkStartCsReq = 8172, - CmdChimeraGetDataCsReq = 8174, - CmdChimeraQuitEndlessScRsp = 8161, - CmdChimeraDoFinalRoundScRsp = 8179, - CmdChimeraGetDataScRsp = 8173, - CmdChimeraFinishRoundCsReq = 8164, - CmdChimeraSetLineupCsReq = 8168, - CmdChimeraStartEndlessCsReq = 8180, + CmdChimeraRoundWorkStartScRsp = 8161, + CmdChimeraDoFinalRoundCsReq = 8173, + CmdChimeraSetLineupScRsp = 8176, + CmdChimeraGetDataCsReq = 8178, + CmdChimeraFinishEndlessRoundCsReq = 8174, + CmdChimeraSetLineupCsReq = 8170, + CmdChimeraQuitEndlessScRsp = 8166, + CmdChimeraRoundWorkStartCsReq = 8162, + CmdChimeraStartEndlessScRsp = 8163, + CmdChimeraFinishRoundScRsp = 8171, + CmdChimeraFinishEndlessRoundScRsp = 8179, + CmdChimeraDoFinalRoundScRsp = 8175, + CmdChimeraGetDataScRsp = 8169, + CmdChimeraQuitEndlessCsReq = 8172, + CmdChimeraFinishRoundCsReq = 8167, + CmdChimeraStartEndlessCsReq = 8165, } impl CmdChimeraType { /// String value of the enum field names used in the ProtoBuf definition. @@ -48269,25 +50112,25 @@ impl CmdChimeraType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdChimeraTypeNone", - Self::CmdChimeraQuitEndlessCsReq => "CmdChimeraQuitEndlessCsReq", Self::CmdChimeraRoundWorkStartScRsp => "CmdChimeraRoundWorkStartScRsp", Self::CmdChimeraDoFinalRoundCsReq => "CmdChimeraDoFinalRoundCsReq", Self::CmdChimeraSetLineupScRsp => "CmdChimeraSetLineupScRsp", - Self::CmdChimeraFinishEndlessRoundScRsp => { - "CmdChimeraFinishEndlessRoundScRsp" - } - Self::CmdChimeraFinishRoundScRsp => "CmdChimeraFinishRoundScRsp", + Self::CmdChimeraGetDataCsReq => "CmdChimeraGetDataCsReq", Self::CmdChimeraFinishEndlessRoundCsReq => { "CmdChimeraFinishEndlessRoundCsReq" } - Self::CmdChimeraStartEndlessScRsp => "CmdChimeraStartEndlessScRsp", - Self::CmdChimeraRoundWorkStartCsReq => "CmdChimeraRoundWorkStartCsReq", - Self::CmdChimeraGetDataCsReq => "CmdChimeraGetDataCsReq", + Self::CmdChimeraSetLineupCsReq => "CmdChimeraSetLineupCsReq", Self::CmdChimeraQuitEndlessScRsp => "CmdChimeraQuitEndlessScRsp", + Self::CmdChimeraRoundWorkStartCsReq => "CmdChimeraRoundWorkStartCsReq", + Self::CmdChimeraStartEndlessScRsp => "CmdChimeraStartEndlessScRsp", + Self::CmdChimeraFinishRoundScRsp => "CmdChimeraFinishRoundScRsp", + Self::CmdChimeraFinishEndlessRoundScRsp => { + "CmdChimeraFinishEndlessRoundScRsp" + } Self::CmdChimeraDoFinalRoundScRsp => "CmdChimeraDoFinalRoundScRsp", Self::CmdChimeraGetDataScRsp => "CmdChimeraGetDataScRsp", + Self::CmdChimeraQuitEndlessCsReq => "CmdChimeraQuitEndlessCsReq", Self::CmdChimeraFinishRoundCsReq => "CmdChimeraFinishRoundCsReq", - Self::CmdChimeraSetLineupCsReq => "CmdChimeraSetLineupCsReq", Self::CmdChimeraStartEndlessCsReq => "CmdChimeraStartEndlessCsReq", } } @@ -48295,25 +50138,25 @@ impl CmdChimeraType { pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdChimeraTypeNone" => Some(Self::None), - "CmdChimeraQuitEndlessCsReq" => Some(Self::CmdChimeraQuitEndlessCsReq), "CmdChimeraRoundWorkStartScRsp" => Some(Self::CmdChimeraRoundWorkStartScRsp), "CmdChimeraDoFinalRoundCsReq" => Some(Self::CmdChimeraDoFinalRoundCsReq), "CmdChimeraSetLineupScRsp" => Some(Self::CmdChimeraSetLineupScRsp), - "CmdChimeraFinishEndlessRoundScRsp" => { - Some(Self::CmdChimeraFinishEndlessRoundScRsp) - } - "CmdChimeraFinishRoundScRsp" => Some(Self::CmdChimeraFinishRoundScRsp), + "CmdChimeraGetDataCsReq" => Some(Self::CmdChimeraGetDataCsReq), "CmdChimeraFinishEndlessRoundCsReq" => { Some(Self::CmdChimeraFinishEndlessRoundCsReq) } - "CmdChimeraStartEndlessScRsp" => Some(Self::CmdChimeraStartEndlessScRsp), - "CmdChimeraRoundWorkStartCsReq" => Some(Self::CmdChimeraRoundWorkStartCsReq), - "CmdChimeraGetDataCsReq" => Some(Self::CmdChimeraGetDataCsReq), + "CmdChimeraSetLineupCsReq" => Some(Self::CmdChimeraSetLineupCsReq), "CmdChimeraQuitEndlessScRsp" => Some(Self::CmdChimeraQuitEndlessScRsp), + "CmdChimeraRoundWorkStartCsReq" => Some(Self::CmdChimeraRoundWorkStartCsReq), + "CmdChimeraStartEndlessScRsp" => Some(Self::CmdChimeraStartEndlessScRsp), + "CmdChimeraFinishRoundScRsp" => Some(Self::CmdChimeraFinishRoundScRsp), + "CmdChimeraFinishEndlessRoundScRsp" => { + Some(Self::CmdChimeraFinishEndlessRoundScRsp) + } "CmdChimeraDoFinalRoundScRsp" => Some(Self::CmdChimeraDoFinalRoundScRsp), "CmdChimeraGetDataScRsp" => Some(Self::CmdChimeraGetDataScRsp), + "CmdChimeraQuitEndlessCsReq" => Some(Self::CmdChimeraQuitEndlessCsReq), "CmdChimeraFinishRoundCsReq" => Some(Self::CmdChimeraFinishRoundCsReq), - "CmdChimeraSetLineupCsReq" => Some(Self::CmdChimeraSetLineupCsReq), "CmdChimeraStartEndlessCsReq" => Some(Self::CmdChimeraStartEndlessCsReq), _ => None, } @@ -48393,22 +50236,22 @@ impl Biakdfeljfm { #[repr(i32)] pub enum CmdClockParkType { None = 0, - CmdClockParkHandleWaitOperationScRsp = 7207, - CmdClockParkUnlockTalentScRsp = 7217, - CmdClockParkGetOngoingScriptInfoScRsp = 7209, - CmdClockParkStartScriptScRsp = 7215, - CmdClockParkGetInfoCsReq = 7204, - CmdClockParkFinishScriptScNotify = 7216, - CmdClockParkGetInfoScRsp = 7246, - CmdClockParkBattleEndScNotify = 7232, - CmdClockParkUnlockTalentCsReq = 7236, - CmdClockParkUseBuffScRsp = 7222, - CmdClockParkStartScriptCsReq = 7227, - CmdClockParkGetOngoingScriptInfoCsReq = 7243, - CmdClockParkUseBuffCsReq = 7226, - CmdClockParkQuitScriptScRsp = 7240, + CmdClockParkUnlockTalentScRsp = 7237, + CmdClockParkBattleEndScNotify = 7246, + CmdClockParkGetInfoScRsp = 7227, + CmdClockParkQuitScriptScRsp = 7219, + CmdClockParkUseBuffScRsp = 7243, + CmdClockParkGetOngoingScriptInfoScRsp = 7210, CmdClockParkHandleWaitOperationCsReq = 7245, - CmdClockParkQuitScriptCsReq = 7250, + CmdClockParkHandleWaitOperationScRsp = 7206, + CmdClockParkStartScriptCsReq = 7217, + CmdClockParkUnlockTalentCsReq = 7211, + CmdClockParkGetOngoingScriptInfoCsReq = 7212, + CmdClockParkStartScriptScRsp = 7239, + CmdClockParkFinishScriptScNotify = 7230, + CmdClockParkUseBuffCsReq = 7225, + CmdClockParkGetInfoCsReq = 7249, + CmdClockParkQuitScriptCsReq = 7228, } impl CmdClockParkType { /// String value of the enum field names used in the ProtoBuf definition. @@ -48418,29 +50261,29 @@ impl CmdClockParkType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdClockParkTypeNone", - Self::CmdClockParkHandleWaitOperationScRsp => { - "CmdClockParkHandleWaitOperationScRsp" - } Self::CmdClockParkUnlockTalentScRsp => "CmdClockParkUnlockTalentScRsp", + Self::CmdClockParkBattleEndScNotify => "CmdClockParkBattleEndScNotify", + Self::CmdClockParkGetInfoScRsp => "CmdClockParkGetInfoScRsp", + Self::CmdClockParkQuitScriptScRsp => "CmdClockParkQuitScriptScRsp", + Self::CmdClockParkUseBuffScRsp => "CmdClockParkUseBuffScRsp", Self::CmdClockParkGetOngoingScriptInfoScRsp => { "CmdClockParkGetOngoingScriptInfoScRsp" } - Self::CmdClockParkStartScriptScRsp => "CmdClockParkStartScriptScRsp", - Self::CmdClockParkGetInfoCsReq => "CmdClockParkGetInfoCsReq", - Self::CmdClockParkFinishScriptScNotify => "CmdClockParkFinishScriptScNotify", - Self::CmdClockParkGetInfoScRsp => "CmdClockParkGetInfoScRsp", - Self::CmdClockParkBattleEndScNotify => "CmdClockParkBattleEndScNotify", - Self::CmdClockParkUnlockTalentCsReq => "CmdClockParkUnlockTalentCsReq", - Self::CmdClockParkUseBuffScRsp => "CmdClockParkUseBuffScRsp", - Self::CmdClockParkStartScriptCsReq => "CmdClockParkStartScriptCsReq", - Self::CmdClockParkGetOngoingScriptInfoCsReq => { - "CmdClockParkGetOngoingScriptInfoCsReq" - } - Self::CmdClockParkUseBuffCsReq => "CmdClockParkUseBuffCsReq", - Self::CmdClockParkQuitScriptScRsp => "CmdClockParkQuitScriptScRsp", Self::CmdClockParkHandleWaitOperationCsReq => { "CmdClockParkHandleWaitOperationCsReq" } + Self::CmdClockParkHandleWaitOperationScRsp => { + "CmdClockParkHandleWaitOperationScRsp" + } + Self::CmdClockParkStartScriptCsReq => "CmdClockParkStartScriptCsReq", + Self::CmdClockParkUnlockTalentCsReq => "CmdClockParkUnlockTalentCsReq", + Self::CmdClockParkGetOngoingScriptInfoCsReq => { + "CmdClockParkGetOngoingScriptInfoCsReq" + } + Self::CmdClockParkStartScriptScRsp => "CmdClockParkStartScriptScRsp", + Self::CmdClockParkFinishScriptScNotify => "CmdClockParkFinishScriptScNotify", + Self::CmdClockParkUseBuffCsReq => "CmdClockParkUseBuffCsReq", + Self::CmdClockParkGetInfoCsReq => "CmdClockParkGetInfoCsReq", Self::CmdClockParkQuitScriptCsReq => "CmdClockParkQuitScriptCsReq", } } @@ -48448,31 +50291,31 @@ impl CmdClockParkType { pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdClockParkTypeNone" => Some(Self::None), - "CmdClockParkHandleWaitOperationScRsp" => { - Some(Self::CmdClockParkHandleWaitOperationScRsp) - } "CmdClockParkUnlockTalentScRsp" => Some(Self::CmdClockParkUnlockTalentScRsp), + "CmdClockParkBattleEndScNotify" => Some(Self::CmdClockParkBattleEndScNotify), + "CmdClockParkGetInfoScRsp" => Some(Self::CmdClockParkGetInfoScRsp), + "CmdClockParkQuitScriptScRsp" => Some(Self::CmdClockParkQuitScriptScRsp), + "CmdClockParkUseBuffScRsp" => Some(Self::CmdClockParkUseBuffScRsp), "CmdClockParkGetOngoingScriptInfoScRsp" => { Some(Self::CmdClockParkGetOngoingScriptInfoScRsp) } - "CmdClockParkStartScriptScRsp" => Some(Self::CmdClockParkStartScriptScRsp), - "CmdClockParkGetInfoCsReq" => Some(Self::CmdClockParkGetInfoCsReq), - "CmdClockParkFinishScriptScNotify" => { - Some(Self::CmdClockParkFinishScriptScNotify) - } - "CmdClockParkGetInfoScRsp" => Some(Self::CmdClockParkGetInfoScRsp), - "CmdClockParkBattleEndScNotify" => Some(Self::CmdClockParkBattleEndScNotify), - "CmdClockParkUnlockTalentCsReq" => Some(Self::CmdClockParkUnlockTalentCsReq), - "CmdClockParkUseBuffScRsp" => Some(Self::CmdClockParkUseBuffScRsp), - "CmdClockParkStartScriptCsReq" => Some(Self::CmdClockParkStartScriptCsReq), - "CmdClockParkGetOngoingScriptInfoCsReq" => { - Some(Self::CmdClockParkGetOngoingScriptInfoCsReq) - } - "CmdClockParkUseBuffCsReq" => Some(Self::CmdClockParkUseBuffCsReq), - "CmdClockParkQuitScriptScRsp" => Some(Self::CmdClockParkQuitScriptScRsp), "CmdClockParkHandleWaitOperationCsReq" => { Some(Self::CmdClockParkHandleWaitOperationCsReq) } + "CmdClockParkHandleWaitOperationScRsp" => { + Some(Self::CmdClockParkHandleWaitOperationScRsp) + } + "CmdClockParkStartScriptCsReq" => Some(Self::CmdClockParkStartScriptCsReq), + "CmdClockParkUnlockTalentCsReq" => Some(Self::CmdClockParkUnlockTalentCsReq), + "CmdClockParkGetOngoingScriptInfoCsReq" => { + Some(Self::CmdClockParkGetOngoingScriptInfoCsReq) + } + "CmdClockParkStartScriptScRsp" => Some(Self::CmdClockParkStartScriptScRsp), + "CmdClockParkFinishScriptScNotify" => { + Some(Self::CmdClockParkFinishScriptScNotify) + } + "CmdClockParkUseBuffCsReq" => Some(Self::CmdClockParkUseBuffCsReq), + "CmdClockParkGetInfoCsReq" => Some(Self::CmdClockParkGetInfoCsReq), "CmdClockParkQuitScriptCsReq" => Some(Self::CmdClockParkQuitScriptCsReq), _ => None, } @@ -48730,12 +50573,12 @@ impl ContentPackageStatus { #[repr(i32)] pub enum CmdContentPackageType { None = 0, - CmdContentPackageUnlockCsReq = 7537, - CmdContentPackageTransferScNotify = 7517, - CmdContentPackageSyncDataScNotify = 7502, - CmdContentPackageUnlockScRsp = 7536, - CmdContentPackageGetDataScRsp = 7546, - CmdContentPackageGetDataCsReq = 7504, + CmdContentPackageSyncDataScNotify = 7518, + CmdContentPackageTransferScNotify = 7537, + CmdContentPackageUnlockCsReq = 7536, + CmdContentPackageGetDataScRsp = 7527, + CmdContentPackageUnlockScRsp = 7511, + CmdContentPackageGetDataCsReq = 7549, } impl CmdContentPackageType { /// String value of the enum field names used in the ProtoBuf definition. @@ -48745,15 +50588,15 @@ impl CmdContentPackageType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdContentPackageTypeNone", - Self::CmdContentPackageUnlockCsReq => "CmdContentPackageUnlockCsReq", - Self::CmdContentPackageTransferScNotify => { - "CmdContentPackageTransferScNotify" - } Self::CmdContentPackageSyncDataScNotify => { "CmdContentPackageSyncDataScNotify" } - Self::CmdContentPackageUnlockScRsp => "CmdContentPackageUnlockScRsp", + Self::CmdContentPackageTransferScNotify => { + "CmdContentPackageTransferScNotify" + } + Self::CmdContentPackageUnlockCsReq => "CmdContentPackageUnlockCsReq", Self::CmdContentPackageGetDataScRsp => "CmdContentPackageGetDataScRsp", + Self::CmdContentPackageUnlockScRsp => "CmdContentPackageUnlockScRsp", Self::CmdContentPackageGetDataCsReq => "CmdContentPackageGetDataCsReq", } } @@ -48761,15 +50604,15 @@ impl CmdContentPackageType { pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdContentPackageTypeNone" => Some(Self::None), - "CmdContentPackageUnlockCsReq" => Some(Self::CmdContentPackageUnlockCsReq), - "CmdContentPackageTransferScNotify" => { - Some(Self::CmdContentPackageTransferScNotify) - } "CmdContentPackageSyncDataScNotify" => { Some(Self::CmdContentPackageSyncDataScNotify) } - "CmdContentPackageUnlockScRsp" => Some(Self::CmdContentPackageUnlockScRsp), + "CmdContentPackageTransferScNotify" => { + Some(Self::CmdContentPackageTransferScNotify) + } + "CmdContentPackageUnlockCsReq" => Some(Self::CmdContentPackageUnlockCsReq), "CmdContentPackageGetDataScRsp" => Some(Self::CmdContentPackageGetDataScRsp), + "CmdContentPackageUnlockScRsp" => Some(Self::CmdContentPackageUnlockScRsp), "CmdContentPackageGetDataCsReq" => Some(Self::CmdContentPackageGetDataCsReq), _ => None, } @@ -48781,13 +50624,13 @@ impl CmdContentPackageType { #[repr(i32)] pub enum CmdDailyActiveType { None = 0, - CmdTakeAllApRewardCsReq = 3348, - CmdTakeAllApRewardScRsp = 3371, - CmdGetDailyActiveInfoScRsp = 3340, - CmdTakeApRewardCsReq = 3395, - CmdDailyActiveInfoNotify = 3376, - CmdTakeApRewardScRsp = 3332, - CmdGetDailyActiveInfoCsReq = 3331, + CmdGetDailyActiveInfoScRsp = 3339, + CmdTakeApRewardCsReq = 3320, + CmdTakeApRewardScRsp = 3391, + CmdGetDailyActiveInfoCsReq = 3367, + CmdTakeAllApRewardScRsp = 3370, + CmdDailyActiveInfoNotify = 3327, + CmdTakeAllApRewardCsReq = 3321, } impl CmdDailyActiveType { /// String value of the enum field names used in the ProtoBuf definition. @@ -48797,26 +50640,26 @@ impl CmdDailyActiveType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdDailyActiveTypeNone", - Self::CmdTakeAllApRewardCsReq => "CmdTakeAllApRewardCsReq", - Self::CmdTakeAllApRewardScRsp => "CmdTakeAllApRewardScRsp", Self::CmdGetDailyActiveInfoScRsp => "CmdGetDailyActiveInfoScRsp", Self::CmdTakeApRewardCsReq => "CmdTakeApRewardCsReq", - Self::CmdDailyActiveInfoNotify => "CmdDailyActiveInfoNotify", Self::CmdTakeApRewardScRsp => "CmdTakeApRewardScRsp", Self::CmdGetDailyActiveInfoCsReq => "CmdGetDailyActiveInfoCsReq", + Self::CmdTakeAllApRewardScRsp => "CmdTakeAllApRewardScRsp", + Self::CmdDailyActiveInfoNotify => "CmdDailyActiveInfoNotify", + Self::CmdTakeAllApRewardCsReq => "CmdTakeAllApRewardCsReq", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdDailyActiveTypeNone" => Some(Self::None), - "CmdTakeAllApRewardCsReq" => Some(Self::CmdTakeAllApRewardCsReq), - "CmdTakeAllApRewardScRsp" => Some(Self::CmdTakeAllApRewardScRsp), "CmdGetDailyActiveInfoScRsp" => Some(Self::CmdGetDailyActiveInfoScRsp), "CmdTakeApRewardCsReq" => Some(Self::CmdTakeApRewardCsReq), - "CmdDailyActiveInfoNotify" => Some(Self::CmdDailyActiveInfoNotify), "CmdTakeApRewardScRsp" => Some(Self::CmdTakeApRewardScRsp), "CmdGetDailyActiveInfoCsReq" => Some(Self::CmdGetDailyActiveInfoCsReq), + "CmdTakeAllApRewardScRsp" => Some(Self::CmdTakeAllApRewardScRsp), + "CmdDailyActiveInfoNotify" => Some(Self::CmdDailyActiveInfoNotify), + "CmdTakeAllApRewardCsReq" => Some(Self::CmdTakeAllApRewardCsReq), _ => None, } } @@ -48827,13 +50670,13 @@ impl CmdDailyActiveType { #[repr(i32)] pub enum CmdDebugType { None = 0, - CmdServerLogScNotify = 2486, - CmdGetServerLogSettingsCsReq = 2454, - CmdGetServerGraphDataCsReq = 2467, - CmdUpdateServerLogSettingsCsReq = 2452, - CmdUpdateServerLogSettingsScRsp = 2487, - CmdGetServerLogSettingsScRsp = 2496, - CmdGetServerGraphDataScRsp = 2477, + CmdGetServerGraphDataCsReq = 2487, + CmdUpdateServerLogSettingsCsReq = 2468, + CmdUpdateServerLogSettingsScRsp = 2486, + CmdGetServerLogSettingsScRsp = 2477, + CmdGetServerLogSettingsCsReq = 2499, + CmdGetServerGraphDataScRsp = 2467, + CmdServerLogScNotify = 2461, } impl CmdDebugType { /// String value of the enum field names used in the ProtoBuf definition. @@ -48843,21 +50686,19 @@ impl CmdDebugType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdDebugTypeNone", - Self::CmdServerLogScNotify => "CmdServerLogScNotify", - Self::CmdGetServerLogSettingsCsReq => "CmdGetServerLogSettingsCsReq", Self::CmdGetServerGraphDataCsReq => "CmdGetServerGraphDataCsReq", Self::CmdUpdateServerLogSettingsCsReq => "CmdUpdateServerLogSettingsCsReq", Self::CmdUpdateServerLogSettingsScRsp => "CmdUpdateServerLogSettingsScRsp", Self::CmdGetServerLogSettingsScRsp => "CmdGetServerLogSettingsScRsp", + Self::CmdGetServerLogSettingsCsReq => "CmdGetServerLogSettingsCsReq", Self::CmdGetServerGraphDataScRsp => "CmdGetServerGraphDataScRsp", + Self::CmdServerLogScNotify => "CmdServerLogScNotify", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdDebugTypeNone" => Some(Self::None), - "CmdServerLogScNotify" => Some(Self::CmdServerLogScNotify), - "CmdGetServerLogSettingsCsReq" => Some(Self::CmdGetServerLogSettingsCsReq), "CmdGetServerGraphDataCsReq" => Some(Self::CmdGetServerGraphDataCsReq), "CmdUpdateServerLogSettingsCsReq" => { Some(Self::CmdUpdateServerLogSettingsCsReq) @@ -48866,7 +50707,9 @@ impl CmdDebugType { Some(Self::CmdUpdateServerLogSettingsScRsp) } "CmdGetServerLogSettingsScRsp" => Some(Self::CmdGetServerLogSettingsScRsp), + "CmdGetServerLogSettingsCsReq" => Some(Self::CmdGetServerLogSettingsCsReq), "CmdGetServerGraphDataScRsp" => Some(Self::CmdGetServerGraphDataScRsp), + "CmdServerLogScNotify" => Some(Self::CmdServerLogScNotify), _ => None, } } @@ -48877,6 +50720,7 @@ impl CmdDebugType { pub enum ServerLogTag { Default = 0, Rogue = 1, + Fate = 2, Scene = 3, Battle = 4, CppGamecore = 5, @@ -48892,6 +50736,7 @@ impl ServerLogTag { match self { Self::Default => "SERVER_LOG_TAG_DEFAULT", Self::Rogue => "SERVER_LOG_TAG_ROGUE", + Self::Fate => "SERVER_LOG_TAG_FATE", Self::Scene => "SERVER_LOG_TAG_SCENE", Self::Battle => "SERVER_LOG_TAG_BATTLE", Self::CppGamecore => "SERVER_LOG_TAG_CPP_GAMECORE", @@ -48904,6 +50749,7 @@ impl ServerLogTag { match value { "SERVER_LOG_TAG_DEFAULT" => Some(Self::Default), "SERVER_LOG_TAG_ROGUE" => Some(Self::Rogue), + "SERVER_LOG_TAG_FATE" => Some(Self::Fate), "SERVER_LOG_TAG_SCENE" => Some(Self::Scene), "SERVER_LOG_TAG_BATTLE" => Some(Self::Battle), "SERVER_LOG_TAG_CPP_GAMECORE" => Some(Self::CppGamecore), @@ -48988,18 +50834,18 @@ impl Ojidjndhdga { #[repr(i32)] pub enum CmdDrinkMakerType { None = 0, - CmdEndDrinkMakerSequenceCsReq = 6984, - CmdDrinkMakerDayEndScNotify = 6987, - CmdMakeMissionDrinkScRsp = 6989, - CmdMakeDrinkScRsp = 6990, - CmdDrinkMakerUpdateTipsNotify = 6981, - CmdDrinkMakerChallengeCsReq = 6983, - CmdMakeDrinkCsReq = 6988, - CmdGetDrinkMakerDataCsReq = 6994, - CmdEndDrinkMakerSequenceScRsp = 6982, - CmdGetDrinkMakerDataScRsp = 6993, - CmdMakeMissionDrinkCsReq = 7000, - CmdDrinkMakerChallengeScRsp = 6985, + CmdMakeDrinkScRsp = 6996, + CmdGetDrinkMakerDataCsReq = 6998, + CmdDrinkMakerChallengeScRsp = 6992, + CmdDrinkMakerChallengeCsReq = 6999, + CmdDrinkMakerUpdateTipsNotify = 6986, + CmdMakeMissionDrinkScRsp = 6983, + CmdGetDrinkMakerDataScRsp = 6989, + CmdMakeDrinkCsReq = 6990, + CmdEndDrinkMakerSequenceCsReq = 6987, + CmdMakeMissionDrinkCsReq = 6985, + CmdEndDrinkMakerSequenceScRsp = 6991, + CmdDrinkMakerDayEndScNotify = 6994, } impl CmdDrinkMakerType { /// String value of the enum field names used in the ProtoBuf definition. @@ -49009,36 +50855,36 @@ impl CmdDrinkMakerType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdDrinkMakerTypeNone", - Self::CmdEndDrinkMakerSequenceCsReq => "CmdEndDrinkMakerSequenceCsReq", - Self::CmdDrinkMakerDayEndScNotify => "CmdDrinkMakerDayEndScNotify", - Self::CmdMakeMissionDrinkScRsp => "CmdMakeMissionDrinkScRsp", Self::CmdMakeDrinkScRsp => "CmdMakeDrinkScRsp", - Self::CmdDrinkMakerUpdateTipsNotify => "CmdDrinkMakerUpdateTipsNotify", - Self::CmdDrinkMakerChallengeCsReq => "CmdDrinkMakerChallengeCsReq", - Self::CmdMakeDrinkCsReq => "CmdMakeDrinkCsReq", Self::CmdGetDrinkMakerDataCsReq => "CmdGetDrinkMakerDataCsReq", - Self::CmdEndDrinkMakerSequenceScRsp => "CmdEndDrinkMakerSequenceScRsp", - Self::CmdGetDrinkMakerDataScRsp => "CmdGetDrinkMakerDataScRsp", - Self::CmdMakeMissionDrinkCsReq => "CmdMakeMissionDrinkCsReq", Self::CmdDrinkMakerChallengeScRsp => "CmdDrinkMakerChallengeScRsp", + Self::CmdDrinkMakerChallengeCsReq => "CmdDrinkMakerChallengeCsReq", + Self::CmdDrinkMakerUpdateTipsNotify => "CmdDrinkMakerUpdateTipsNotify", + Self::CmdMakeMissionDrinkScRsp => "CmdMakeMissionDrinkScRsp", + Self::CmdGetDrinkMakerDataScRsp => "CmdGetDrinkMakerDataScRsp", + Self::CmdMakeDrinkCsReq => "CmdMakeDrinkCsReq", + Self::CmdEndDrinkMakerSequenceCsReq => "CmdEndDrinkMakerSequenceCsReq", + Self::CmdMakeMissionDrinkCsReq => "CmdMakeMissionDrinkCsReq", + Self::CmdEndDrinkMakerSequenceScRsp => "CmdEndDrinkMakerSequenceScRsp", + Self::CmdDrinkMakerDayEndScNotify => "CmdDrinkMakerDayEndScNotify", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdDrinkMakerTypeNone" => Some(Self::None), - "CmdEndDrinkMakerSequenceCsReq" => Some(Self::CmdEndDrinkMakerSequenceCsReq), - "CmdDrinkMakerDayEndScNotify" => Some(Self::CmdDrinkMakerDayEndScNotify), - "CmdMakeMissionDrinkScRsp" => Some(Self::CmdMakeMissionDrinkScRsp), "CmdMakeDrinkScRsp" => Some(Self::CmdMakeDrinkScRsp), - "CmdDrinkMakerUpdateTipsNotify" => Some(Self::CmdDrinkMakerUpdateTipsNotify), - "CmdDrinkMakerChallengeCsReq" => Some(Self::CmdDrinkMakerChallengeCsReq), - "CmdMakeDrinkCsReq" => Some(Self::CmdMakeDrinkCsReq), "CmdGetDrinkMakerDataCsReq" => Some(Self::CmdGetDrinkMakerDataCsReq), - "CmdEndDrinkMakerSequenceScRsp" => Some(Self::CmdEndDrinkMakerSequenceScRsp), - "CmdGetDrinkMakerDataScRsp" => Some(Self::CmdGetDrinkMakerDataScRsp), - "CmdMakeMissionDrinkCsReq" => Some(Self::CmdMakeMissionDrinkCsReq), "CmdDrinkMakerChallengeScRsp" => Some(Self::CmdDrinkMakerChallengeScRsp), + "CmdDrinkMakerChallengeCsReq" => Some(Self::CmdDrinkMakerChallengeCsReq), + "CmdDrinkMakerUpdateTipsNotify" => Some(Self::CmdDrinkMakerUpdateTipsNotify), + "CmdMakeMissionDrinkScRsp" => Some(Self::CmdMakeMissionDrinkScRsp), + "CmdGetDrinkMakerDataScRsp" => Some(Self::CmdGetDrinkMakerDataScRsp), + "CmdMakeDrinkCsReq" => Some(Self::CmdMakeDrinkCsReq), + "CmdEndDrinkMakerSequenceCsReq" => Some(Self::CmdEndDrinkMakerSequenceCsReq), + "CmdMakeMissionDrinkCsReq" => Some(Self::CmdMakeMissionDrinkCsReq), + "CmdEndDrinkMakerSequenceScRsp" => Some(Self::CmdEndDrinkMakerSequenceScRsp), + "CmdDrinkMakerDayEndScNotify" => Some(Self::CmdDrinkMakerDayEndScNotify), _ => None, } } @@ -49049,15 +50895,15 @@ impl CmdDrinkMakerType { #[repr(i32)] pub enum CmdEraFlipperType { None = 0, - CmdResetEraFlipperDataScRsp = 6551, - CmdEraFlipperDataChangeScNotify = 6554, - CmdEnterEraFlipperRegionScRsp = 6558, - CmdChangeEraFlipperDataScRsp = 6569, - CmdResetEraFlipperDataCsReq = 6574, - CmdGetEraFlipperDataCsReq = 6561, - CmdEnterEraFlipperRegionCsReq = 6553, - CmdChangeEraFlipperDataCsReq = 6559, - CmdGetEraFlipperDataScRsp = 6570, + CmdEnterEraFlipperRegionScRsp = 6568, + CmdResetEraFlipperDataCsReq = 6570, + CmdGetEraFlipperDataScRsp = 6561, + CmdChangeEraFlipperDataCsReq = 6555, + CmdEnterEraFlipperRegionCsReq = 6562, + CmdEraFlipperDataChangeScNotify = 6566, + CmdResetEraFlipperDataScRsp = 6557, + CmdChangeEraFlipperDataScRsp = 6560, + CmdGetEraFlipperDataCsReq = 6559, } impl CmdEraFlipperType { /// String value of the enum field names used in the ProtoBuf definition. @@ -49067,32 +50913,32 @@ impl CmdEraFlipperType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdEraFlipperTypeNone", - Self::CmdResetEraFlipperDataScRsp => "CmdResetEraFlipperDataScRsp", - Self::CmdEraFlipperDataChangeScNotify => "CmdEraFlipperDataChangeScNotify", Self::CmdEnterEraFlipperRegionScRsp => "CmdEnterEraFlipperRegionScRsp", - Self::CmdChangeEraFlipperDataScRsp => "CmdChangeEraFlipperDataScRsp", Self::CmdResetEraFlipperDataCsReq => "CmdResetEraFlipperDataCsReq", - Self::CmdGetEraFlipperDataCsReq => "CmdGetEraFlipperDataCsReq", - Self::CmdEnterEraFlipperRegionCsReq => "CmdEnterEraFlipperRegionCsReq", - Self::CmdChangeEraFlipperDataCsReq => "CmdChangeEraFlipperDataCsReq", Self::CmdGetEraFlipperDataScRsp => "CmdGetEraFlipperDataScRsp", + Self::CmdChangeEraFlipperDataCsReq => "CmdChangeEraFlipperDataCsReq", + Self::CmdEnterEraFlipperRegionCsReq => "CmdEnterEraFlipperRegionCsReq", + Self::CmdEraFlipperDataChangeScNotify => "CmdEraFlipperDataChangeScNotify", + Self::CmdResetEraFlipperDataScRsp => "CmdResetEraFlipperDataScRsp", + Self::CmdChangeEraFlipperDataScRsp => "CmdChangeEraFlipperDataScRsp", + Self::CmdGetEraFlipperDataCsReq => "CmdGetEraFlipperDataCsReq", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdEraFlipperTypeNone" => Some(Self::None), - "CmdResetEraFlipperDataScRsp" => Some(Self::CmdResetEraFlipperDataScRsp), + "CmdEnterEraFlipperRegionScRsp" => Some(Self::CmdEnterEraFlipperRegionScRsp), + "CmdResetEraFlipperDataCsReq" => Some(Self::CmdResetEraFlipperDataCsReq), + "CmdGetEraFlipperDataScRsp" => Some(Self::CmdGetEraFlipperDataScRsp), + "CmdChangeEraFlipperDataCsReq" => Some(Self::CmdChangeEraFlipperDataCsReq), + "CmdEnterEraFlipperRegionCsReq" => Some(Self::CmdEnterEraFlipperRegionCsReq), "CmdEraFlipperDataChangeScNotify" => { Some(Self::CmdEraFlipperDataChangeScNotify) } - "CmdEnterEraFlipperRegionScRsp" => Some(Self::CmdEnterEraFlipperRegionScRsp), + "CmdResetEraFlipperDataScRsp" => Some(Self::CmdResetEraFlipperDataScRsp), "CmdChangeEraFlipperDataScRsp" => Some(Self::CmdChangeEraFlipperDataScRsp), - "CmdResetEraFlipperDataCsReq" => Some(Self::CmdResetEraFlipperDataCsReq), "CmdGetEraFlipperDataCsReq" => Some(Self::CmdGetEraFlipperDataCsReq), - "CmdEnterEraFlipperRegionCsReq" => Some(Self::CmdEnterEraFlipperRegionCsReq), - "CmdChangeEraFlipperDataCsReq" => Some(Self::CmdChangeEraFlipperDataCsReq), - "CmdGetEraFlipperDataScRsp" => Some(Self::CmdGetEraFlipperDataScRsp), _ => None, } } @@ -49103,30 +50949,28 @@ impl CmdEraFlipperType { #[repr(i32)] pub enum CmdEvolveBuild { None = 0, - CoinNotify = 7134, - TakeExpRewardScRsp = 7116, - SkipTeachLevelCsReq = 7101, - ReRandomStageScRsp = 7150, - ShopAbilityResetScRsp = 7129, - LeaveCsReq = 7143, - QueryInfoScRsp = 7146, + StartLevelCsReq = 7118, + ShopAbilityUpCsReq = 7134, + SkipTeachLevelScRsp = 7101, + QueryInfoCsReq = 7149, + GiveupCsReq = 7117, + ReRandomStageScRsp = 7128, + StartStageCsReq = 7111, + StartLevelScRsp = 7136, FinishScNotify = 7145, - TakeExpRewardCsReq = 7122, - StartLevelScRsp = 7137, - StartStageCsReq = 7136, - GiveupScRsp = 7115, - ShopAbilityDownScRsp = 7126, - SkipTeachLevelScRsp = 7105, - ReRandomStageCsReq = 7107, - StartLevelCsReq = 7102, - StartStageScRsp = 7117, - LeaveScRsp = 7109, - QueryInfoCsReq = 7104, - ShopAbilityResetCsReq = 7142, - ShopAbilityUpScRsp = 7132, - ShopAbilityUpCsReq = 7144, - GiveupCsReq = 7127, - ShopAbilityDownCsReq = 7123, + ReRandomStageCsReq = 7106, + LeaveCsReq = 7112, + LeaveScRsp = 7110, + ShopAbilityDownScRsp = 7125, + StartStageScRsp = 7137, + ShopAbilityResetCsReq = 7103, + ShopAbilityResetScRsp = 7113, + CoinNotify = 7140, + SkipTeachLevelCsReq = 7114, + ShopAbilityDownCsReq = 7122, + QueryInfoScRsp = 7127, + ShopAbilityUpScRsp = 7146, + GiveupScRsp = 7139, } impl CmdEvolveBuild { /// String value of the enum field names used in the ProtoBuf definition. @@ -49136,60 +50980,56 @@ impl CmdEvolveBuild { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdEvolveBuildNone", - Self::CoinNotify => "CmdEvolveBuildCoinNotify", - Self::TakeExpRewardScRsp => "CmdEvolveBuildTakeExpRewardScRsp", - Self::SkipTeachLevelCsReq => "CmdEvolveBuildSkipTeachLevelCsReq", - Self::ReRandomStageScRsp => "CmdEvolveBuildReRandomStageScRsp", - Self::ShopAbilityResetScRsp => "CmdEvolveBuildShopAbilityResetScRsp", - Self::LeaveCsReq => "CmdEvolveBuildLeaveCsReq", - Self::QueryInfoScRsp => "CmdEvolveBuildQueryInfoScRsp", - Self::FinishScNotify => "CmdEvolveBuildFinishScNotify", - Self::TakeExpRewardCsReq => "CmdEvolveBuildTakeExpRewardCsReq", - Self::StartLevelScRsp => "CmdEvolveBuildStartLevelScRsp", - Self::StartStageCsReq => "CmdEvolveBuildStartStageCsReq", - Self::GiveupScRsp => "CmdEvolveBuildGiveupScRsp", - Self::ShopAbilityDownScRsp => "CmdEvolveBuildShopAbilityDownScRsp", - Self::SkipTeachLevelScRsp => "CmdEvolveBuildSkipTeachLevelScRsp", - Self::ReRandomStageCsReq => "CmdEvolveBuildReRandomStageCsReq", Self::StartLevelCsReq => "CmdEvolveBuildStartLevelCsReq", - Self::StartStageScRsp => "CmdEvolveBuildStartStageScRsp", - Self::LeaveScRsp => "CmdEvolveBuildLeaveScRsp", - Self::QueryInfoCsReq => "CmdEvolveBuildQueryInfoCsReq", - Self::ShopAbilityResetCsReq => "CmdEvolveBuildShopAbilityResetCsReq", - Self::ShopAbilityUpScRsp => "CmdEvolveBuildShopAbilityUpScRsp", Self::ShopAbilityUpCsReq => "CmdEvolveBuildShopAbilityUpCsReq", + Self::SkipTeachLevelScRsp => "CmdEvolveBuildSkipTeachLevelScRsp", + Self::QueryInfoCsReq => "CmdEvolveBuildQueryInfoCsReq", Self::GiveupCsReq => "CmdEvolveBuildGiveupCsReq", + Self::ReRandomStageScRsp => "CmdEvolveBuildReRandomStageScRsp", + Self::StartStageCsReq => "CmdEvolveBuildStartStageCsReq", + Self::StartLevelScRsp => "CmdEvolveBuildStartLevelScRsp", + Self::FinishScNotify => "CmdEvolveBuildFinishScNotify", + Self::ReRandomStageCsReq => "CmdEvolveBuildReRandomStageCsReq", + Self::LeaveCsReq => "CmdEvolveBuildLeaveCsReq", + Self::LeaveScRsp => "CmdEvolveBuildLeaveScRsp", + Self::ShopAbilityDownScRsp => "CmdEvolveBuildShopAbilityDownScRsp", + Self::StartStageScRsp => "CmdEvolveBuildStartStageScRsp", + Self::ShopAbilityResetCsReq => "CmdEvolveBuildShopAbilityResetCsReq", + Self::ShopAbilityResetScRsp => "CmdEvolveBuildShopAbilityResetScRsp", + Self::CoinNotify => "CmdEvolveBuildCoinNotify", + Self::SkipTeachLevelCsReq => "CmdEvolveBuildSkipTeachLevelCsReq", Self::ShopAbilityDownCsReq => "CmdEvolveBuildShopAbilityDownCsReq", + Self::QueryInfoScRsp => "CmdEvolveBuildQueryInfoScRsp", + Self::ShopAbilityUpScRsp => "CmdEvolveBuildShopAbilityUpScRsp", + Self::GiveupScRsp => "CmdEvolveBuildGiveupScRsp", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdEvolveBuildNone" => Some(Self::None), - "CmdEvolveBuildCoinNotify" => Some(Self::CoinNotify), - "CmdEvolveBuildTakeExpRewardScRsp" => Some(Self::TakeExpRewardScRsp), - "CmdEvolveBuildSkipTeachLevelCsReq" => Some(Self::SkipTeachLevelCsReq), - "CmdEvolveBuildReRandomStageScRsp" => Some(Self::ReRandomStageScRsp), - "CmdEvolveBuildShopAbilityResetScRsp" => Some(Self::ShopAbilityResetScRsp), - "CmdEvolveBuildLeaveCsReq" => Some(Self::LeaveCsReq), - "CmdEvolveBuildQueryInfoScRsp" => Some(Self::QueryInfoScRsp), - "CmdEvolveBuildFinishScNotify" => Some(Self::FinishScNotify), - "CmdEvolveBuildTakeExpRewardCsReq" => Some(Self::TakeExpRewardCsReq), - "CmdEvolveBuildStartLevelScRsp" => Some(Self::StartLevelScRsp), - "CmdEvolveBuildStartStageCsReq" => Some(Self::StartStageCsReq), - "CmdEvolveBuildGiveupScRsp" => Some(Self::GiveupScRsp), - "CmdEvolveBuildShopAbilityDownScRsp" => Some(Self::ShopAbilityDownScRsp), - "CmdEvolveBuildSkipTeachLevelScRsp" => Some(Self::SkipTeachLevelScRsp), - "CmdEvolveBuildReRandomStageCsReq" => Some(Self::ReRandomStageCsReq), "CmdEvolveBuildStartLevelCsReq" => Some(Self::StartLevelCsReq), - "CmdEvolveBuildStartStageScRsp" => Some(Self::StartStageScRsp), - "CmdEvolveBuildLeaveScRsp" => Some(Self::LeaveScRsp), - "CmdEvolveBuildQueryInfoCsReq" => Some(Self::QueryInfoCsReq), - "CmdEvolveBuildShopAbilityResetCsReq" => Some(Self::ShopAbilityResetCsReq), - "CmdEvolveBuildShopAbilityUpScRsp" => Some(Self::ShopAbilityUpScRsp), "CmdEvolveBuildShopAbilityUpCsReq" => Some(Self::ShopAbilityUpCsReq), + "CmdEvolveBuildSkipTeachLevelScRsp" => Some(Self::SkipTeachLevelScRsp), + "CmdEvolveBuildQueryInfoCsReq" => Some(Self::QueryInfoCsReq), "CmdEvolveBuildGiveupCsReq" => Some(Self::GiveupCsReq), + "CmdEvolveBuildReRandomStageScRsp" => Some(Self::ReRandomStageScRsp), + "CmdEvolveBuildStartStageCsReq" => Some(Self::StartStageCsReq), + "CmdEvolveBuildStartLevelScRsp" => Some(Self::StartLevelScRsp), + "CmdEvolveBuildFinishScNotify" => Some(Self::FinishScNotify), + "CmdEvolveBuildReRandomStageCsReq" => Some(Self::ReRandomStageCsReq), + "CmdEvolveBuildLeaveCsReq" => Some(Self::LeaveCsReq), + "CmdEvolveBuildLeaveScRsp" => Some(Self::LeaveScRsp), + "CmdEvolveBuildShopAbilityDownScRsp" => Some(Self::ShopAbilityDownScRsp), + "CmdEvolveBuildStartStageScRsp" => Some(Self::StartStageScRsp), + "CmdEvolveBuildShopAbilityResetCsReq" => Some(Self::ShopAbilityResetCsReq), + "CmdEvolveBuildShopAbilityResetScRsp" => Some(Self::ShopAbilityResetScRsp), + "CmdEvolveBuildCoinNotify" => Some(Self::CoinNotify), + "CmdEvolveBuildSkipTeachLevelCsReq" => Some(Self::SkipTeachLevelCsReq), "CmdEvolveBuildShopAbilityDownCsReq" => Some(Self::ShopAbilityDownCsReq), + "CmdEvolveBuildQueryInfoScRsp" => Some(Self::QueryInfoScRsp), + "CmdEvolveBuildShopAbilityUpScRsp" => Some(Self::ShopAbilityUpScRsp), + "CmdEvolveBuildGiveupScRsp" => Some(Self::GiveupScRsp), _ => None, } } @@ -49308,27 +51148,27 @@ impl Klnipnjcnmj { #[repr(i32)] pub enum CmdExpeditionType { None = 0, - CmdTakeExpeditionRewardCsReq = 2571, - CmdTakeMultipleActivityExpeditionRewardCsReq = 2533, - CmdGetExpeditionDataCsReq = 2595, - CmdTakeMultipleExpeditionRewardCsReq = 2539, - CmdAcceptMultipleExpeditionScRsp = 2502, - CmdAcceptExpeditionScRsp = 2540, - CmdAcceptActivityExpeditionScRsp = 2572, - CmdCancelExpeditionScRsp = 2548, - CmdAcceptActivityExpeditionCsReq = 2556, - CmdTakeExpeditionRewardScRsp = 2552, - CmdCancelExpeditionCsReq = 2576, - CmdTakeActivityExpeditionRewardScRsp = 2583, - CmdCancelActivityExpeditionScRsp = 2516, - CmdAcceptExpeditionCsReq = 2531, - CmdExpeditionDataChangeScNotify = 2522, - CmdCancelActivityExpeditionCsReq = 2585, - CmdAcceptMultipleExpeditionCsReq = 2560, - CmdTakeMultipleExpeditionRewardScRsp = 2543, - CmdTakeMultipleActivityExpeditionRewardScRsp = 2542, - CmdGetExpeditionDataScRsp = 2532, - CmdTakeActivityExpeditionRewardCsReq = 2546, + CmdTakeActivityExpeditionRewardCsReq = 2574, + CmdTakeExpeditionRewardCsReq = 2570, + CmdCancelActivityExpeditionScRsp = 2505, + CmdAcceptExpeditionScRsp = 2539, + CmdTakeMultipleActivityExpeditionRewardScRsp = 2594, + CmdTakeMultipleExpeditionRewardScRsp = 2552, + CmdExpeditionDataChangeScNotify = 2554, + CmdGetExpeditionDataCsReq = 2520, + CmdTakeMultipleActivityExpeditionRewardCsReq = 2568, + CmdCancelExpeditionCsReq = 2527, + CmdTakeMultipleExpeditionRewardCsReq = 2538, + CmdCancelExpeditionScRsp = 2521, + CmdAcceptActivityExpeditionScRsp = 2580, + CmdAcceptMultipleExpeditionCsReq = 2598, + CmdTakeActivityExpeditionRewardScRsp = 2573, + CmdAcceptActivityExpeditionCsReq = 2577, + CmdAcceptExpeditionCsReq = 2567, + CmdAcceptMultipleExpeditionScRsp = 2585, + CmdCancelActivityExpeditionCsReq = 2502, + CmdTakeExpeditionRewardScRsp = 2559, + CmdGetExpeditionDataScRsp = 2591, } impl CmdExpeditionType { /// String value of the enum field names used in the ProtoBuf definition. @@ -49338,92 +51178,92 @@ impl CmdExpeditionType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdExpeditionTypeNone", - Self::CmdTakeExpeditionRewardCsReq => "CmdTakeExpeditionRewardCsReq", - Self::CmdTakeMultipleActivityExpeditionRewardCsReq => { - "CmdTakeMultipleActivityExpeditionRewardCsReq" - } - Self::CmdGetExpeditionDataCsReq => "CmdGetExpeditionDataCsReq", - Self::CmdTakeMultipleExpeditionRewardCsReq => { - "CmdTakeMultipleExpeditionRewardCsReq" - } - Self::CmdAcceptMultipleExpeditionScRsp => "CmdAcceptMultipleExpeditionScRsp", - Self::CmdAcceptExpeditionScRsp => "CmdAcceptExpeditionScRsp", - Self::CmdAcceptActivityExpeditionScRsp => "CmdAcceptActivityExpeditionScRsp", - Self::CmdCancelExpeditionScRsp => "CmdCancelExpeditionScRsp", - Self::CmdAcceptActivityExpeditionCsReq => "CmdAcceptActivityExpeditionCsReq", - Self::CmdTakeExpeditionRewardScRsp => "CmdTakeExpeditionRewardScRsp", - Self::CmdCancelExpeditionCsReq => "CmdCancelExpeditionCsReq", - Self::CmdTakeActivityExpeditionRewardScRsp => { - "CmdTakeActivityExpeditionRewardScRsp" - } - Self::CmdCancelActivityExpeditionScRsp => "CmdCancelActivityExpeditionScRsp", - Self::CmdAcceptExpeditionCsReq => "CmdAcceptExpeditionCsReq", - Self::CmdExpeditionDataChangeScNotify => "CmdExpeditionDataChangeScNotify", - Self::CmdCancelActivityExpeditionCsReq => "CmdCancelActivityExpeditionCsReq", - Self::CmdAcceptMultipleExpeditionCsReq => "CmdAcceptMultipleExpeditionCsReq", - Self::CmdTakeMultipleExpeditionRewardScRsp => { - "CmdTakeMultipleExpeditionRewardScRsp" - } - Self::CmdTakeMultipleActivityExpeditionRewardScRsp => { - "CmdTakeMultipleActivityExpeditionRewardScRsp" - } - Self::CmdGetExpeditionDataScRsp => "CmdGetExpeditionDataScRsp", Self::CmdTakeActivityExpeditionRewardCsReq => { "CmdTakeActivityExpeditionRewardCsReq" } + Self::CmdTakeExpeditionRewardCsReq => "CmdTakeExpeditionRewardCsReq", + Self::CmdCancelActivityExpeditionScRsp => "CmdCancelActivityExpeditionScRsp", + Self::CmdAcceptExpeditionScRsp => "CmdAcceptExpeditionScRsp", + Self::CmdTakeMultipleActivityExpeditionRewardScRsp => { + "CmdTakeMultipleActivityExpeditionRewardScRsp" + } + Self::CmdTakeMultipleExpeditionRewardScRsp => { + "CmdTakeMultipleExpeditionRewardScRsp" + } + Self::CmdExpeditionDataChangeScNotify => "CmdExpeditionDataChangeScNotify", + Self::CmdGetExpeditionDataCsReq => "CmdGetExpeditionDataCsReq", + Self::CmdTakeMultipleActivityExpeditionRewardCsReq => { + "CmdTakeMultipleActivityExpeditionRewardCsReq" + } + Self::CmdCancelExpeditionCsReq => "CmdCancelExpeditionCsReq", + Self::CmdTakeMultipleExpeditionRewardCsReq => { + "CmdTakeMultipleExpeditionRewardCsReq" + } + Self::CmdCancelExpeditionScRsp => "CmdCancelExpeditionScRsp", + Self::CmdAcceptActivityExpeditionScRsp => "CmdAcceptActivityExpeditionScRsp", + Self::CmdAcceptMultipleExpeditionCsReq => "CmdAcceptMultipleExpeditionCsReq", + Self::CmdTakeActivityExpeditionRewardScRsp => { + "CmdTakeActivityExpeditionRewardScRsp" + } + Self::CmdAcceptActivityExpeditionCsReq => "CmdAcceptActivityExpeditionCsReq", + Self::CmdAcceptExpeditionCsReq => "CmdAcceptExpeditionCsReq", + Self::CmdAcceptMultipleExpeditionScRsp => "CmdAcceptMultipleExpeditionScRsp", + Self::CmdCancelActivityExpeditionCsReq => "CmdCancelActivityExpeditionCsReq", + Self::CmdTakeExpeditionRewardScRsp => "CmdTakeExpeditionRewardScRsp", + Self::CmdGetExpeditionDataScRsp => "CmdGetExpeditionDataScRsp", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdExpeditionTypeNone" => Some(Self::None), + "CmdTakeActivityExpeditionRewardCsReq" => { + Some(Self::CmdTakeActivityExpeditionRewardCsReq) + } "CmdTakeExpeditionRewardCsReq" => Some(Self::CmdTakeExpeditionRewardCsReq), - "CmdTakeMultipleActivityExpeditionRewardCsReq" => { - Some(Self::CmdTakeMultipleActivityExpeditionRewardCsReq) - } - "CmdGetExpeditionDataCsReq" => Some(Self::CmdGetExpeditionDataCsReq), - "CmdTakeMultipleExpeditionRewardCsReq" => { - Some(Self::CmdTakeMultipleExpeditionRewardCsReq) - } - "CmdAcceptMultipleExpeditionScRsp" => { - Some(Self::CmdAcceptMultipleExpeditionScRsp) - } - "CmdAcceptExpeditionScRsp" => Some(Self::CmdAcceptExpeditionScRsp), - "CmdAcceptActivityExpeditionScRsp" => { - Some(Self::CmdAcceptActivityExpeditionScRsp) - } - "CmdCancelExpeditionScRsp" => Some(Self::CmdCancelExpeditionScRsp), - "CmdAcceptActivityExpeditionCsReq" => { - Some(Self::CmdAcceptActivityExpeditionCsReq) - } - "CmdTakeExpeditionRewardScRsp" => Some(Self::CmdTakeExpeditionRewardScRsp), - "CmdCancelExpeditionCsReq" => Some(Self::CmdCancelExpeditionCsReq), - "CmdTakeActivityExpeditionRewardScRsp" => { - Some(Self::CmdTakeActivityExpeditionRewardScRsp) - } "CmdCancelActivityExpeditionScRsp" => { Some(Self::CmdCancelActivityExpeditionScRsp) } - "CmdAcceptExpeditionCsReq" => Some(Self::CmdAcceptExpeditionCsReq), - "CmdExpeditionDataChangeScNotify" => { - Some(Self::CmdExpeditionDataChangeScNotify) - } - "CmdCancelActivityExpeditionCsReq" => { - Some(Self::CmdCancelActivityExpeditionCsReq) - } - "CmdAcceptMultipleExpeditionCsReq" => { - Some(Self::CmdAcceptMultipleExpeditionCsReq) + "CmdAcceptExpeditionScRsp" => Some(Self::CmdAcceptExpeditionScRsp), + "CmdTakeMultipleActivityExpeditionRewardScRsp" => { + Some(Self::CmdTakeMultipleActivityExpeditionRewardScRsp) } "CmdTakeMultipleExpeditionRewardScRsp" => { Some(Self::CmdTakeMultipleExpeditionRewardScRsp) } - "CmdTakeMultipleActivityExpeditionRewardScRsp" => { - Some(Self::CmdTakeMultipleActivityExpeditionRewardScRsp) + "CmdExpeditionDataChangeScNotify" => { + Some(Self::CmdExpeditionDataChangeScNotify) } + "CmdGetExpeditionDataCsReq" => Some(Self::CmdGetExpeditionDataCsReq), + "CmdTakeMultipleActivityExpeditionRewardCsReq" => { + Some(Self::CmdTakeMultipleActivityExpeditionRewardCsReq) + } + "CmdCancelExpeditionCsReq" => Some(Self::CmdCancelExpeditionCsReq), + "CmdTakeMultipleExpeditionRewardCsReq" => { + Some(Self::CmdTakeMultipleExpeditionRewardCsReq) + } + "CmdCancelExpeditionScRsp" => Some(Self::CmdCancelExpeditionScRsp), + "CmdAcceptActivityExpeditionScRsp" => { + Some(Self::CmdAcceptActivityExpeditionScRsp) + } + "CmdAcceptMultipleExpeditionCsReq" => { + Some(Self::CmdAcceptMultipleExpeditionCsReq) + } + "CmdTakeActivityExpeditionRewardScRsp" => { + Some(Self::CmdTakeActivityExpeditionRewardScRsp) + } + "CmdAcceptActivityExpeditionCsReq" => { + Some(Self::CmdAcceptActivityExpeditionCsReq) + } + "CmdAcceptExpeditionCsReq" => Some(Self::CmdAcceptExpeditionCsReq), + "CmdAcceptMultipleExpeditionScRsp" => { + Some(Self::CmdAcceptMultipleExpeditionScRsp) + } + "CmdCancelActivityExpeditionCsReq" => { + Some(Self::CmdCancelActivityExpeditionCsReq) + } + "CmdTakeExpeditionRewardScRsp" => Some(Self::CmdTakeExpeditionRewardScRsp), "CmdGetExpeditionDataScRsp" => Some(Self::CmdGetExpeditionDataScRsp), - "CmdTakeActivityExpeditionRewardCsReq" => { - Some(Self::CmdTakeActivityExpeditionRewardCsReq) - } _ => None, } } @@ -49434,12 +51274,12 @@ impl CmdExpeditionType { #[repr(i32)] pub enum CmdFantasticStoryActivityType { None = 0, - CmdFinishChapterScNotify = 4931, - CmdGetFantasticStoryActivityDataScRsp = 4932, - CmdGetFantasticStoryActivityDataCsReq = 4995, - CmdEnterFantasticStoryActivityStageScRsp = 4976, - CmdEnterFantasticStoryActivityStageCsReq = 4940, - CmdFantasticStoryActivityBattleEndScNotify = 4948, + CmdGetFantasticStoryActivityDataCsReq = 4920, + CmdFantasticStoryActivityBattleEndScNotify = 4921, + CmdEnterFantasticStoryActivityStageCsReq = 4939, + CmdGetFantasticStoryActivityDataScRsp = 4991, + CmdFinishChapterScNotify = 4967, + CmdEnterFantasticStoryActivityStageScRsp = 4927, } impl CmdFantasticStoryActivityType { /// String value of the enum field names used in the ProtoBuf definition. @@ -49449,21 +51289,21 @@ impl CmdFantasticStoryActivityType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdFantasticStoryActivityTypeNone", - Self::CmdFinishChapterScNotify => "CmdFinishChapterScNotify", - Self::CmdGetFantasticStoryActivityDataScRsp => { - "CmdGetFantasticStoryActivityDataScRsp" - } Self::CmdGetFantasticStoryActivityDataCsReq => { "CmdGetFantasticStoryActivityDataCsReq" } - Self::CmdEnterFantasticStoryActivityStageScRsp => { - "CmdEnterFantasticStoryActivityStageScRsp" + Self::CmdFantasticStoryActivityBattleEndScNotify => { + "CmdFantasticStoryActivityBattleEndScNotify" } Self::CmdEnterFantasticStoryActivityStageCsReq => { "CmdEnterFantasticStoryActivityStageCsReq" } - Self::CmdFantasticStoryActivityBattleEndScNotify => { - "CmdFantasticStoryActivityBattleEndScNotify" + Self::CmdGetFantasticStoryActivityDataScRsp => { + "CmdGetFantasticStoryActivityDataScRsp" + } + Self::CmdFinishChapterScNotify => "CmdFinishChapterScNotify", + Self::CmdEnterFantasticStoryActivityStageScRsp => { + "CmdEnterFantasticStoryActivityStageScRsp" } } } @@ -49471,22 +51311,242 @@ impl CmdFantasticStoryActivityType { pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdFantasticStoryActivityTypeNone" => Some(Self::None), - "CmdFinishChapterScNotify" => Some(Self::CmdFinishChapterScNotify), - "CmdGetFantasticStoryActivityDataScRsp" => { - Some(Self::CmdGetFantasticStoryActivityDataScRsp) - } "CmdGetFantasticStoryActivityDataCsReq" => { Some(Self::CmdGetFantasticStoryActivityDataCsReq) } - "CmdEnterFantasticStoryActivityStageScRsp" => { - Some(Self::CmdEnterFantasticStoryActivityStageScRsp) - } - "CmdEnterFantasticStoryActivityStageCsReq" => { - Some(Self::CmdEnterFantasticStoryActivityStageCsReq) - } "CmdFantasticStoryActivityBattleEndScNotify" => { Some(Self::CmdFantasticStoryActivityBattleEndScNotify) } + "CmdEnterFantasticStoryActivityStageCsReq" => { + Some(Self::CmdEnterFantasticStoryActivityStageCsReq) + } + "CmdGetFantasticStoryActivityDataScRsp" => { + Some(Self::CmdGetFantasticStoryActivityDataScRsp) + } + "CmdFinishChapterScNotify" => Some(Self::CmdFinishChapterScNotify), + "CmdEnterFantasticStoryActivityStageScRsp" => { + Some(Self::CmdEnterFantasticStoryActivityStageScRsp) + } + _ => None, + } + } +} +/// Obf: MAKDIENEGLP +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] +#[repr(i32)] +pub enum CmdFateType { + None = 0, + CmdFateHandlePendingActionScRsp = 5993, + CmdFateShopLeaveScRsp = 5972, + CmdFateStartCsReq = 5968, + CmdFateStartScRsp = 5986, + CmdFateHandlePendingActionCsReq = 5975, + CmdFateShopSellBuffScRsp = 5956, + CmdFateDebugAutoPlayFinishScNotify = 5998, + CmdFateQueryCsReq = 5999, + CmdFateSettleScNotify = 5974, + CmdFateTakeExpRewardScRsp = 5951, + CmdFateShopLockGoodsCsReq = 5976, + CmdFateTakeExpRewardCsReq = 5964, + CmdFateQueryScRsp = 5977, + CmdFateBattleStartCsReq = 5961, + CmdFateBattleStartScRsp = 5987, + CmdFateDebugAutoPlayCsReq = 5970, + CmdFateShopRefreshGoodsScRsp = 5969, + CmdFateShopLockGoodsScRsp = 5984, + CmdFateSyncActionResultScNotify = 5980, + CmdFateDebugAutoPlayScRsp = 5966, + CmdFateShopBuyGoodsScRsp = 5960, + CmdFateChangeLineupCsReq = 5967, + CmdFateShopRefreshGoodsCsReq = 5978, + CmdFateShopSellBuffCsReq = 5995, + CmdFateChangeLineupScRsp = 5989, + CmdFateShopBuyGoodsCsReq = 5962, + CmdFateSettleCsReq = 5963, + CmdFateShopLeaveCsReq = 5996, + CmdFateSyncPendingActionScNotify = 5953, + CmdFateSettleScRsp = 5990, +} +impl CmdFateType { + /// String value of the enum field names used in the ProtoBuf definition. + /// + /// The values are not transformed in any way and thus are considered stable + /// (if the ProtoBuf definition does not change) and safe for programmatic use. + pub fn as_str_name(&self) -> &'static str { + match self { + Self::None => "CmdFateTypeNone", + Self::CmdFateHandlePendingActionScRsp => "CmdFateHandlePendingActionScRsp", + Self::CmdFateShopLeaveScRsp => "CmdFateShopLeaveScRsp", + Self::CmdFateStartCsReq => "CmdFateStartCsReq", + Self::CmdFateStartScRsp => "CmdFateStartScRsp", + Self::CmdFateHandlePendingActionCsReq => "CmdFateHandlePendingActionCsReq", + Self::CmdFateShopSellBuffScRsp => "CmdFateShopSellBuffScRsp", + Self::CmdFateDebugAutoPlayFinishScNotify => { + "CmdFateDebugAutoPlayFinishScNotify" + } + Self::CmdFateQueryCsReq => "CmdFateQueryCsReq", + Self::CmdFateSettleScNotify => "CmdFateSettleScNotify", + Self::CmdFateTakeExpRewardScRsp => "CmdFateTakeExpRewardScRsp", + Self::CmdFateShopLockGoodsCsReq => "CmdFateShopLockGoodsCsReq", + Self::CmdFateTakeExpRewardCsReq => "CmdFateTakeExpRewardCsReq", + Self::CmdFateQueryScRsp => "CmdFateQueryScRsp", + Self::CmdFateBattleStartCsReq => "CmdFateBattleStartCsReq", + Self::CmdFateBattleStartScRsp => "CmdFateBattleStartScRsp", + Self::CmdFateDebugAutoPlayCsReq => "CmdFateDebugAutoPlayCsReq", + Self::CmdFateShopRefreshGoodsScRsp => "CmdFateShopRefreshGoodsScRsp", + Self::CmdFateShopLockGoodsScRsp => "CmdFateShopLockGoodsScRsp", + Self::CmdFateSyncActionResultScNotify => "CmdFateSyncActionResultScNotify", + Self::CmdFateDebugAutoPlayScRsp => "CmdFateDebugAutoPlayScRsp", + Self::CmdFateShopBuyGoodsScRsp => "CmdFateShopBuyGoodsScRsp", + Self::CmdFateChangeLineupCsReq => "CmdFateChangeLineupCsReq", + Self::CmdFateShopRefreshGoodsCsReq => "CmdFateShopRefreshGoodsCsReq", + Self::CmdFateShopSellBuffCsReq => "CmdFateShopSellBuffCsReq", + Self::CmdFateChangeLineupScRsp => "CmdFateChangeLineupScRsp", + Self::CmdFateShopBuyGoodsCsReq => "CmdFateShopBuyGoodsCsReq", + Self::CmdFateSettleCsReq => "CmdFateSettleCsReq", + Self::CmdFateShopLeaveCsReq => "CmdFateShopLeaveCsReq", + Self::CmdFateSyncPendingActionScNotify => "CmdFateSyncPendingActionScNotify", + Self::CmdFateSettleScRsp => "CmdFateSettleScRsp", + } + } + /// Creates an enum from field names used in the ProtoBuf definition. + pub fn from_str_name(value: &str) -> ::core::option::Option { + match value { + "CmdFateTypeNone" => Some(Self::None), + "CmdFateHandlePendingActionScRsp" => { + Some(Self::CmdFateHandlePendingActionScRsp) + } + "CmdFateShopLeaveScRsp" => Some(Self::CmdFateShopLeaveScRsp), + "CmdFateStartCsReq" => Some(Self::CmdFateStartCsReq), + "CmdFateStartScRsp" => Some(Self::CmdFateStartScRsp), + "CmdFateHandlePendingActionCsReq" => { + Some(Self::CmdFateHandlePendingActionCsReq) + } + "CmdFateShopSellBuffScRsp" => Some(Self::CmdFateShopSellBuffScRsp), + "CmdFateDebugAutoPlayFinishScNotify" => { + Some(Self::CmdFateDebugAutoPlayFinishScNotify) + } + "CmdFateQueryCsReq" => Some(Self::CmdFateQueryCsReq), + "CmdFateSettleScNotify" => Some(Self::CmdFateSettleScNotify), + "CmdFateTakeExpRewardScRsp" => Some(Self::CmdFateTakeExpRewardScRsp), + "CmdFateShopLockGoodsCsReq" => Some(Self::CmdFateShopLockGoodsCsReq), + "CmdFateTakeExpRewardCsReq" => Some(Self::CmdFateTakeExpRewardCsReq), + "CmdFateQueryScRsp" => Some(Self::CmdFateQueryScRsp), + "CmdFateBattleStartCsReq" => Some(Self::CmdFateBattleStartCsReq), + "CmdFateBattleStartScRsp" => Some(Self::CmdFateBattleStartScRsp), + "CmdFateDebugAutoPlayCsReq" => Some(Self::CmdFateDebugAutoPlayCsReq), + "CmdFateShopRefreshGoodsScRsp" => Some(Self::CmdFateShopRefreshGoodsScRsp), + "CmdFateShopLockGoodsScRsp" => Some(Self::CmdFateShopLockGoodsScRsp), + "CmdFateSyncActionResultScNotify" => { + Some(Self::CmdFateSyncActionResultScNotify) + } + "CmdFateDebugAutoPlayScRsp" => Some(Self::CmdFateDebugAutoPlayScRsp), + "CmdFateShopBuyGoodsScRsp" => Some(Self::CmdFateShopBuyGoodsScRsp), + "CmdFateChangeLineupCsReq" => Some(Self::CmdFateChangeLineupCsReq), + "CmdFateShopRefreshGoodsCsReq" => Some(Self::CmdFateShopRefreshGoodsCsReq), + "CmdFateShopSellBuffCsReq" => Some(Self::CmdFateShopSellBuffCsReq), + "CmdFateChangeLineupScRsp" => Some(Self::CmdFateChangeLineupScRsp), + "CmdFateShopBuyGoodsCsReq" => Some(Self::CmdFateShopBuyGoodsCsReq), + "CmdFateSettleCsReq" => Some(Self::CmdFateSettleCsReq), + "CmdFateShopLeaveCsReq" => Some(Self::CmdFateShopLeaveCsReq), + "CmdFateSyncPendingActionScNotify" => { + Some(Self::CmdFateSyncPendingActionScNotify) + } + "CmdFateSettleScRsp" => Some(Self::CmdFateSettleScRsp), + _ => None, + } + } +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] +#[repr(i32)] +pub enum Ghhdmemlkpo { + FateLevelStatusTypeNone = 0, + FateLevelStatusTypeRoundPrepare = 1, + FateLevelStatusTypeRoundHougu = 2, + FateLevelStatusTypeRoundReiju = 3, + FateLevelStatusTypeRoundShop = 4, + FateLevelStatusTypeServerInternalCoinEffectSettle = 5, + FateLevelStatusTypeServerInternalNoncoinEffectSettle = 6, +} +impl Ghhdmemlkpo { + /// String value of the enum field names used in the ProtoBuf definition. + /// + /// The values are not transformed in any way and thus are considered stable + /// (if the ProtoBuf definition does not change) and safe for programmatic use. + pub fn as_str_name(&self) -> &'static str { + match self { + Self::FateLevelStatusTypeNone => "FATE_LEVEL_STATUS_TYPE_NONE", + Self::FateLevelStatusTypeRoundPrepare => { + "FATE_LEVEL_STATUS_TYPE_ROUND_PREPARE" + } + Self::FateLevelStatusTypeRoundHougu => "FATE_LEVEL_STATUS_TYPE_ROUND_HOUGU", + Self::FateLevelStatusTypeRoundReiju => "FATE_LEVEL_STATUS_TYPE_ROUND_REIJU", + Self::FateLevelStatusTypeRoundShop => "FATE_LEVEL_STATUS_TYPE_ROUND_SHOP", + Self::FateLevelStatusTypeServerInternalCoinEffectSettle => { + "FATE_LEVEL_STATUS_TYPE_SERVER_INTERNAL_COIN_EFFECT_SETTLE" + } + Self::FateLevelStatusTypeServerInternalNoncoinEffectSettle => { + "FATE_LEVEL_STATUS_TYPE_SERVER_INTERNAL_NONCOIN_EFFECT_SETTLE" + } + } + } + /// Creates an enum from field names used in the ProtoBuf definition. + pub fn from_str_name(value: &str) -> ::core::option::Option { + match value { + "FATE_LEVEL_STATUS_TYPE_NONE" => Some(Self::FateLevelStatusTypeNone), + "FATE_LEVEL_STATUS_TYPE_ROUND_PREPARE" => { + Some(Self::FateLevelStatusTypeRoundPrepare) + } + "FATE_LEVEL_STATUS_TYPE_ROUND_HOUGU" => { + Some(Self::FateLevelStatusTypeRoundHougu) + } + "FATE_LEVEL_STATUS_TYPE_ROUND_REIJU" => { + Some(Self::FateLevelStatusTypeRoundReiju) + } + "FATE_LEVEL_STATUS_TYPE_ROUND_SHOP" => { + Some(Self::FateLevelStatusTypeRoundShop) + } + "FATE_LEVEL_STATUS_TYPE_SERVER_INTERNAL_COIN_EFFECT_SETTLE" => { + Some(Self::FateLevelStatusTypeServerInternalCoinEffectSettle) + } + "FATE_LEVEL_STATUS_TYPE_SERVER_INTERNAL_NONCOIN_EFFECT_SETTLE" => { + Some(Self::FateLevelStatusTypeServerInternalNoncoinEffectSettle) + } + _ => None, + } + } +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] +#[repr(i32)] +pub enum Mgpocjfmkpm { + FateMasterStatusTypeNone = 0, + FateMasterStatusTypeAlive = 1, + FateMasterStatusTypeDead = 2, + FateMasterStatusTypeBanned = 3, +} +impl Mgpocjfmkpm { + /// String value of the enum field names used in the ProtoBuf definition. + /// + /// The values are not transformed in any way and thus are considered stable + /// (if the ProtoBuf definition does not change) and safe for programmatic use. + pub fn as_str_name(&self) -> &'static str { + match self { + Self::FateMasterStatusTypeNone => "FATE_MASTER_STATUS_TYPE_NONE", + Self::FateMasterStatusTypeAlive => "FATE_MASTER_STATUS_TYPE_ALIVE", + Self::FateMasterStatusTypeDead => "FATE_MASTER_STATUS_TYPE_DEAD", + Self::FateMasterStatusTypeBanned => "FATE_MASTER_STATUS_TYPE_BANNED", + } + } + /// Creates an enum from field names used in the ProtoBuf definition. + pub fn from_str_name(value: &str) -> ::core::option::Option { + match value { + "FATE_MASTER_STATUS_TYPE_NONE" => Some(Self::FateMasterStatusTypeNone), + "FATE_MASTER_STATUS_TYPE_ALIVE" => Some(Self::FateMasterStatusTypeAlive), + "FATE_MASTER_STATUS_TYPE_DEAD" => Some(Self::FateMasterStatusTypeDead), + "FATE_MASTER_STATUS_TYPE_BANNED" => Some(Self::FateMasterStatusTypeBanned), _ => None, } } @@ -49497,11 +51557,11 @@ impl CmdFantasticStoryActivityType { #[repr(i32)] pub enum CmdFeverTimeActivityType { None = 0, - CmdGetFeverTimeActivityDataScRsp = 7151, - CmdEnterFeverTimeActivityStageScRsp = 7155, - CmdEnterFeverTimeActivityStageCsReq = 7152, - CmdGetFeverTimeActivityDataCsReq = 7157, - CmdFeverTimeActivityBattleEndScNotify = 7154, + CmdGetFeverTimeActivityDataCsReq = 7153, + CmdGetFeverTimeActivityDataScRsp = 7156, + CmdEnterFeverTimeActivityStageCsReq = 7155, + CmdFeverTimeActivityBattleEndScNotify = 7158, + CmdEnterFeverTimeActivityStageScRsp = 7159, } impl CmdFeverTimeActivityType { /// String value of the enum field names used in the ProtoBuf definition. @@ -49511,38 +51571,38 @@ impl CmdFeverTimeActivityType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdFeverTimeActivityTypeNone", + Self::CmdGetFeverTimeActivityDataCsReq => "CmdGetFeverTimeActivityDataCsReq", Self::CmdGetFeverTimeActivityDataScRsp => "CmdGetFeverTimeActivityDataScRsp", - Self::CmdEnterFeverTimeActivityStageScRsp => { - "CmdEnterFeverTimeActivityStageScRsp" - } Self::CmdEnterFeverTimeActivityStageCsReq => { "CmdEnterFeverTimeActivityStageCsReq" } - Self::CmdGetFeverTimeActivityDataCsReq => "CmdGetFeverTimeActivityDataCsReq", Self::CmdFeverTimeActivityBattleEndScNotify => { "CmdFeverTimeActivityBattleEndScNotify" } + Self::CmdEnterFeverTimeActivityStageScRsp => { + "CmdEnterFeverTimeActivityStageScRsp" + } } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdFeverTimeActivityTypeNone" => Some(Self::None), + "CmdGetFeverTimeActivityDataCsReq" => { + Some(Self::CmdGetFeverTimeActivityDataCsReq) + } "CmdGetFeverTimeActivityDataScRsp" => { Some(Self::CmdGetFeverTimeActivityDataScRsp) } - "CmdEnterFeverTimeActivityStageScRsp" => { - Some(Self::CmdEnterFeverTimeActivityStageScRsp) - } "CmdEnterFeverTimeActivityStageCsReq" => { Some(Self::CmdEnterFeverTimeActivityStageCsReq) } - "CmdGetFeverTimeActivityDataCsReq" => { - Some(Self::CmdGetFeverTimeActivityDataCsReq) - } "CmdFeverTimeActivityBattleEndScNotify" => { Some(Self::CmdFeverTimeActivityBattleEndScNotify) } + "CmdEnterFeverTimeActivityStageScRsp" => { + Some(Self::CmdEnterFeverTimeActivityStageScRsp) + } _ => None, } } @@ -49589,16 +51649,16 @@ impl Pmnfdjcllgb { #[repr(i32)] pub enum CmdFightType { None = 0, - CmdFightEnterCsReq = 30095, - CmdFightKickOutScNotify = 30040, - CmdFightHeartBeatScRsp = 30048, - CmdFightSessionStopScNotify = 30071, - CmdFightEnterScRsp = 30032, - CmdFightLeaveScNotify = 30031, - CmdFightHeartBeatCsReq = 30076, - CmdFightGeneralScRsp = 30022, - CmdFightGeneralScNotify = 30056, - CmdFightGeneralCsReq = 30052, + CmdFightKickOutScNotify = 30039, + CmdFightHeartBeatCsReq = 30027, + CmdFightEnterScRsp = 30091, + CmdFightEnterCsReq = 30020, + CmdFightSessionStopScNotify = 30070, + CmdFightGeneralScRsp = 30054, + CmdFightGeneralCsReq = 30059, + CmdFightGeneralScNotify = 30077, + CmdFightLeaveScNotify = 30067, + CmdFightHeartBeatScRsp = 30021, } impl CmdFightType { /// String value of the enum field names used in the ProtoBuf definition. @@ -49608,32 +51668,32 @@ impl CmdFightType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdFightTypeNone", - Self::CmdFightEnterCsReq => "CmdFightEnterCsReq", Self::CmdFightKickOutScNotify => "CmdFightKickOutScNotify", - Self::CmdFightHeartBeatScRsp => "CmdFightHeartBeatScRsp", - Self::CmdFightSessionStopScNotify => "CmdFightSessionStopScNotify", - Self::CmdFightEnterScRsp => "CmdFightEnterScRsp", - Self::CmdFightLeaveScNotify => "CmdFightLeaveScNotify", Self::CmdFightHeartBeatCsReq => "CmdFightHeartBeatCsReq", + Self::CmdFightEnterScRsp => "CmdFightEnterScRsp", + Self::CmdFightEnterCsReq => "CmdFightEnterCsReq", + Self::CmdFightSessionStopScNotify => "CmdFightSessionStopScNotify", Self::CmdFightGeneralScRsp => "CmdFightGeneralScRsp", - Self::CmdFightGeneralScNotify => "CmdFightGeneralScNotify", Self::CmdFightGeneralCsReq => "CmdFightGeneralCsReq", + Self::CmdFightGeneralScNotify => "CmdFightGeneralScNotify", + Self::CmdFightLeaveScNotify => "CmdFightLeaveScNotify", + Self::CmdFightHeartBeatScRsp => "CmdFightHeartBeatScRsp", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdFightTypeNone" => Some(Self::None), - "CmdFightEnterCsReq" => Some(Self::CmdFightEnterCsReq), "CmdFightKickOutScNotify" => Some(Self::CmdFightKickOutScNotify), - "CmdFightHeartBeatScRsp" => Some(Self::CmdFightHeartBeatScRsp), - "CmdFightSessionStopScNotify" => Some(Self::CmdFightSessionStopScNotify), - "CmdFightEnterScRsp" => Some(Self::CmdFightEnterScRsp), - "CmdFightLeaveScNotify" => Some(Self::CmdFightLeaveScNotify), "CmdFightHeartBeatCsReq" => Some(Self::CmdFightHeartBeatCsReq), + "CmdFightEnterScRsp" => Some(Self::CmdFightEnterScRsp), + "CmdFightEnterCsReq" => Some(Self::CmdFightEnterCsReq), + "CmdFightSessionStopScNotify" => Some(Self::CmdFightSessionStopScNotify), "CmdFightGeneralScRsp" => Some(Self::CmdFightGeneralScRsp), - "CmdFightGeneralScNotify" => Some(Self::CmdFightGeneralScNotify), "CmdFightGeneralCsReq" => Some(Self::CmdFightGeneralCsReq), + "CmdFightGeneralScNotify" => Some(Self::CmdFightGeneralScNotify), + "CmdFightLeaveScNotify" => Some(Self::CmdFightLeaveScNotify), + "CmdFightHeartBeatScRsp" => Some(Self::CmdFightHeartBeatScRsp), _ => None, } } @@ -49644,13 +51704,13 @@ impl CmdFightType { #[repr(i32)] pub enum CmdFightActivityType { None = 0, - CmdEnterFightActivityStageScRsp = 3676, - CmdFightActivityDataChangeScNotify = 3631, - CmdGetFightActivityDataCsReq = 3695, - CmdTakeFightActivityRewardScRsp = 3671, - CmdGetFightActivityDataScRsp = 3632, - CmdEnterFightActivityStageCsReq = 3640, - CmdTakeFightActivityRewardCsReq = 3648, + CmdTakeFightActivityRewardCsReq = 3621, + CmdEnterFightActivityStageCsReq = 3639, + CmdGetFightActivityDataScRsp = 3691, + CmdEnterFightActivityStageScRsp = 3627, + CmdTakeFightActivityRewardScRsp = 3670, + CmdFightActivityDataChangeScNotify = 3667, + CmdGetFightActivityDataCsReq = 3620, } impl CmdFightActivityType { /// String value of the enum field names used in the ProtoBuf definition. @@ -49660,38 +51720,38 @@ impl CmdFightActivityType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdFightActivityTypeNone", + Self::CmdTakeFightActivityRewardCsReq => "CmdTakeFightActivityRewardCsReq", + Self::CmdEnterFightActivityStageCsReq => "CmdEnterFightActivityStageCsReq", + Self::CmdGetFightActivityDataScRsp => "CmdGetFightActivityDataScRsp", Self::CmdEnterFightActivityStageScRsp => "CmdEnterFightActivityStageScRsp", + Self::CmdTakeFightActivityRewardScRsp => "CmdTakeFightActivityRewardScRsp", Self::CmdFightActivityDataChangeScNotify => { "CmdFightActivityDataChangeScNotify" } Self::CmdGetFightActivityDataCsReq => "CmdGetFightActivityDataCsReq", - Self::CmdTakeFightActivityRewardScRsp => "CmdTakeFightActivityRewardScRsp", - Self::CmdGetFightActivityDataScRsp => "CmdGetFightActivityDataScRsp", - Self::CmdEnterFightActivityStageCsReq => "CmdEnterFightActivityStageCsReq", - Self::CmdTakeFightActivityRewardCsReq => "CmdTakeFightActivityRewardCsReq", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdFightActivityTypeNone" => Some(Self::None), + "CmdTakeFightActivityRewardCsReq" => { + Some(Self::CmdTakeFightActivityRewardCsReq) + } + "CmdEnterFightActivityStageCsReq" => { + Some(Self::CmdEnterFightActivityStageCsReq) + } + "CmdGetFightActivityDataScRsp" => Some(Self::CmdGetFightActivityDataScRsp), "CmdEnterFightActivityStageScRsp" => { Some(Self::CmdEnterFightActivityStageScRsp) } + "CmdTakeFightActivityRewardScRsp" => { + Some(Self::CmdTakeFightActivityRewardScRsp) + } "CmdFightActivityDataChangeScNotify" => { Some(Self::CmdFightActivityDataChangeScNotify) } "CmdGetFightActivityDataCsReq" => Some(Self::CmdGetFightActivityDataCsReq), - "CmdTakeFightActivityRewardScRsp" => { - Some(Self::CmdTakeFightActivityRewardScRsp) - } - "CmdGetFightActivityDataScRsp" => Some(Self::CmdGetFightActivityDataScRsp), - "CmdEnterFightActivityStageCsReq" => { - Some(Self::CmdEnterFightActivityStageCsReq) - } - "CmdTakeFightActivityRewardCsReq" => { - Some(Self::CmdTakeFightActivityRewardCsReq) - } _ => None, } } @@ -49702,14 +51762,14 @@ impl CmdFightActivityType { #[repr(i32)] pub enum CmdFightFestType { None = 0, - CmdStartFightFestScRsp = 7287, - CmdStartFightFestCsReq = 7252, - CmdFightFestUpdateCoinNotify = 7265, - CmdGetFightFestDataScRsp = 7296, - CmdFightFestScoreUpdateNotify = 7286, - CmdFightFestUnlockSkillNotify = 7267, - CmdFightFestUpdateChallengeRecordNotify = 7277, - CmdGetFightFestDataCsReq = 7254, + CmdStartFightFestCsReq = 7268, + CmdFightFestUnlockSkillNotify = 7287, + CmdGetFightFestDataScRsp = 7277, + CmdFightFestScoreUpdateNotify = 7261, + CmdGetFightFestDataCsReq = 7299, + CmdFightFestUpdateCoinNotify = 7289, + CmdStartFightFestScRsp = 7286, + CmdFightFestUpdateChallengeRecordNotify = 7267, } impl CmdFightFestType { /// String value of the enum field names used in the ProtoBuf definition. @@ -49719,32 +51779,32 @@ impl CmdFightFestType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdFightFestTypeNone", - Self::CmdStartFightFestScRsp => "CmdStartFightFestScRsp", Self::CmdStartFightFestCsReq => "CmdStartFightFestCsReq", - Self::CmdFightFestUpdateCoinNotify => "CmdFightFestUpdateCoinNotify", + Self::CmdFightFestUnlockSkillNotify => "CmdFightFestUnlockSkillNotify", Self::CmdGetFightFestDataScRsp => "CmdGetFightFestDataScRsp", Self::CmdFightFestScoreUpdateNotify => "CmdFightFestScoreUpdateNotify", - Self::CmdFightFestUnlockSkillNotify => "CmdFightFestUnlockSkillNotify", + Self::CmdGetFightFestDataCsReq => "CmdGetFightFestDataCsReq", + Self::CmdFightFestUpdateCoinNotify => "CmdFightFestUpdateCoinNotify", + Self::CmdStartFightFestScRsp => "CmdStartFightFestScRsp", Self::CmdFightFestUpdateChallengeRecordNotify => { "CmdFightFestUpdateChallengeRecordNotify" } - Self::CmdGetFightFestDataCsReq => "CmdGetFightFestDataCsReq", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdFightFestTypeNone" => Some(Self::None), - "CmdStartFightFestScRsp" => Some(Self::CmdStartFightFestScRsp), "CmdStartFightFestCsReq" => Some(Self::CmdStartFightFestCsReq), - "CmdFightFestUpdateCoinNotify" => Some(Self::CmdFightFestUpdateCoinNotify), + "CmdFightFestUnlockSkillNotify" => Some(Self::CmdFightFestUnlockSkillNotify), "CmdGetFightFestDataScRsp" => Some(Self::CmdGetFightFestDataScRsp), "CmdFightFestScoreUpdateNotify" => Some(Self::CmdFightFestScoreUpdateNotify), - "CmdFightFestUnlockSkillNotify" => Some(Self::CmdFightFestUnlockSkillNotify), + "CmdGetFightFestDataCsReq" => Some(Self::CmdGetFightFestDataCsReq), + "CmdFightFestUpdateCoinNotify" => Some(Self::CmdFightFestUpdateCoinNotify), + "CmdStartFightFestScRsp" => Some(Self::CmdStartFightFestScRsp), "CmdFightFestUpdateChallengeRecordNotify" => { Some(Self::CmdFightFestUpdateChallengeRecordNotify) } - "CmdGetFightFestDataCsReq" => Some(Self::CmdGetFightFestDataCsReq), _ => None, } } @@ -50236,18 +52296,29 @@ impl Ppiffkjejja { #[repr(i32)] pub enum CmdFightMathc3Type { None = 0, - CmdFightMatch3SwapScRsp = 30171, - CmdFightMatch3TurnStartScNotify = 30140, - CmdFightMatch3DataScRsp = 30132, - CmdFightMatch3DataCsReq = 30195, - CmdFightMatch3ChatScNotify = 30172, - CmdFightMatch3ChatScRsp = 30156, - CmdFightMatch3ChatCsReq = 30122, - CmdFightMatch3TurnEndScNotify = 30176, - CmdFightMatch3ForceUpdateNotify = 30185, - CmdFightMatch3SwapCsReq = 30148, - CmdFightMatch3OpponentDataScNotify = 30152, - CmdFightMatch3StartCountDownScNotify = 30131, + CmdFightMatch3SoloDataUpdateNotify = 30152, + CmdFightMatch3ChatScRsp = 30177, + CmdFightMatch3SwapScRsp = 30170, + CmdFightMatch3SoloPreTurnEndCsReq = 30136, + CmdFightMatch3UseItemCsReq = 30105, + CmdFightMatch3SoloAnimEndCsReq = 30185, + CmdFightMatch3SwapCsReq = 30121, + CmdFightMatch3StartCountDownScNotify = 30167, + CmdFightMatch3SoloPreTurnEndScRsp = 30187, + CmdFightMatch3ForceUpdateNotify = 30102, + CmdFightMatch3TurnStartScNotify = 30139, + CmdFightMatch3SoloDataScRsp = 30198, + CmdFightMatch3SoloSwapNotify = 30168, + CmdFightMatch3SoloUseItemNotify = 30194, + CmdFightMatch3SoloDataCsReq = 30173, + CmdFightMatch3ChatScNotify = 30180, + CmdFightMatch3DataScRsp = 30191, + CmdFightMatch3UseItemScRsp = 30174, + CmdFightMatch3SoloAnimEndScRsp = 30138, + CmdFightMatch3OpponentDataScNotify = 30159, + CmdFightMatch3TurnEndScNotify = 30127, + CmdFightMatch3DataCsReq = 30120, + CmdFightMatch3ChatCsReq = 30154, } impl CmdFightMathc3Type { /// String value of the enum field names used in the ProtoBuf definition. @@ -50257,48 +52328,88 @@ impl CmdFightMathc3Type { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdFightMathc3TypeNone", - Self::CmdFightMatch3SwapScRsp => "CmdFightMatch3SwapScRsp", - Self::CmdFightMatch3TurnStartScNotify => "CmdFightMatch3TurnStartScNotify", - Self::CmdFightMatch3DataScRsp => "CmdFightMatch3DataScRsp", - Self::CmdFightMatch3DataCsReq => "CmdFightMatch3DataCsReq", - Self::CmdFightMatch3ChatScNotify => "CmdFightMatch3ChatScNotify", - Self::CmdFightMatch3ChatScRsp => "CmdFightMatch3ChatScRsp", - Self::CmdFightMatch3ChatCsReq => "CmdFightMatch3ChatCsReq", - Self::CmdFightMatch3TurnEndScNotify => "CmdFightMatch3TurnEndScNotify", - Self::CmdFightMatch3ForceUpdateNotify => "CmdFightMatch3ForceUpdateNotify", - Self::CmdFightMatch3SwapCsReq => "CmdFightMatch3SwapCsReq", - Self::CmdFightMatch3OpponentDataScNotify => { - "CmdFightMatch3OpponentDataScNotify" + Self::CmdFightMatch3SoloDataUpdateNotify => { + "CmdFightMatch3SoloDataUpdateNotify" } + Self::CmdFightMatch3ChatScRsp => "CmdFightMatch3ChatScRsp", + Self::CmdFightMatch3SwapScRsp => "CmdFightMatch3SwapScRsp", + Self::CmdFightMatch3SoloPreTurnEndCsReq => { + "CmdFightMatch3SoloPreTurnEndCsReq" + } + Self::CmdFightMatch3UseItemCsReq => "CmdFightMatch3UseItemCsReq", + Self::CmdFightMatch3SoloAnimEndCsReq => "CmdFightMatch3SoloAnimEndCsReq", + Self::CmdFightMatch3SwapCsReq => "CmdFightMatch3SwapCsReq", Self::CmdFightMatch3StartCountDownScNotify => { "CmdFightMatch3StartCountDownScNotify" } + Self::CmdFightMatch3SoloPreTurnEndScRsp => { + "CmdFightMatch3SoloPreTurnEndScRsp" + } + Self::CmdFightMatch3ForceUpdateNotify => "CmdFightMatch3ForceUpdateNotify", + Self::CmdFightMatch3TurnStartScNotify => "CmdFightMatch3TurnStartScNotify", + Self::CmdFightMatch3SoloDataScRsp => "CmdFightMatch3SoloDataScRsp", + Self::CmdFightMatch3SoloSwapNotify => "CmdFightMatch3SoloSwapNotify", + Self::CmdFightMatch3SoloUseItemNotify => "CmdFightMatch3SoloUseItemNotify", + Self::CmdFightMatch3SoloDataCsReq => "CmdFightMatch3SoloDataCsReq", + Self::CmdFightMatch3ChatScNotify => "CmdFightMatch3ChatScNotify", + Self::CmdFightMatch3DataScRsp => "CmdFightMatch3DataScRsp", + Self::CmdFightMatch3UseItemScRsp => "CmdFightMatch3UseItemScRsp", + Self::CmdFightMatch3SoloAnimEndScRsp => "CmdFightMatch3SoloAnimEndScRsp", + Self::CmdFightMatch3OpponentDataScNotify => { + "CmdFightMatch3OpponentDataScNotify" + } + Self::CmdFightMatch3TurnEndScNotify => "CmdFightMatch3TurnEndScNotify", + Self::CmdFightMatch3DataCsReq => "CmdFightMatch3DataCsReq", + Self::CmdFightMatch3ChatCsReq => "CmdFightMatch3ChatCsReq", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdFightMathc3TypeNone" => Some(Self::None), - "CmdFightMatch3SwapScRsp" => Some(Self::CmdFightMatch3SwapScRsp), - "CmdFightMatch3TurnStartScNotify" => { - Some(Self::CmdFightMatch3TurnStartScNotify) + "CmdFightMatch3SoloDataUpdateNotify" => { + Some(Self::CmdFightMatch3SoloDataUpdateNotify) } - "CmdFightMatch3DataScRsp" => Some(Self::CmdFightMatch3DataScRsp), - "CmdFightMatch3DataCsReq" => Some(Self::CmdFightMatch3DataCsReq), - "CmdFightMatch3ChatScNotify" => Some(Self::CmdFightMatch3ChatScNotify), "CmdFightMatch3ChatScRsp" => Some(Self::CmdFightMatch3ChatScRsp), - "CmdFightMatch3ChatCsReq" => Some(Self::CmdFightMatch3ChatCsReq), - "CmdFightMatch3TurnEndScNotify" => Some(Self::CmdFightMatch3TurnEndScNotify), - "CmdFightMatch3ForceUpdateNotify" => { - Some(Self::CmdFightMatch3ForceUpdateNotify) + "CmdFightMatch3SwapScRsp" => Some(Self::CmdFightMatch3SwapScRsp), + "CmdFightMatch3SoloPreTurnEndCsReq" => { + Some(Self::CmdFightMatch3SoloPreTurnEndCsReq) + } + "CmdFightMatch3UseItemCsReq" => Some(Self::CmdFightMatch3UseItemCsReq), + "CmdFightMatch3SoloAnimEndCsReq" => { + Some(Self::CmdFightMatch3SoloAnimEndCsReq) } "CmdFightMatch3SwapCsReq" => Some(Self::CmdFightMatch3SwapCsReq), - "CmdFightMatch3OpponentDataScNotify" => { - Some(Self::CmdFightMatch3OpponentDataScNotify) - } "CmdFightMatch3StartCountDownScNotify" => { Some(Self::CmdFightMatch3StartCountDownScNotify) } + "CmdFightMatch3SoloPreTurnEndScRsp" => { + Some(Self::CmdFightMatch3SoloPreTurnEndScRsp) + } + "CmdFightMatch3ForceUpdateNotify" => { + Some(Self::CmdFightMatch3ForceUpdateNotify) + } + "CmdFightMatch3TurnStartScNotify" => { + Some(Self::CmdFightMatch3TurnStartScNotify) + } + "CmdFightMatch3SoloDataScRsp" => Some(Self::CmdFightMatch3SoloDataScRsp), + "CmdFightMatch3SoloSwapNotify" => Some(Self::CmdFightMatch3SoloSwapNotify), + "CmdFightMatch3SoloUseItemNotify" => { + Some(Self::CmdFightMatch3SoloUseItemNotify) + } + "CmdFightMatch3SoloDataCsReq" => Some(Self::CmdFightMatch3SoloDataCsReq), + "CmdFightMatch3ChatScNotify" => Some(Self::CmdFightMatch3ChatScNotify), + "CmdFightMatch3DataScRsp" => Some(Self::CmdFightMatch3DataScRsp), + "CmdFightMatch3UseItemScRsp" => Some(Self::CmdFightMatch3UseItemScRsp), + "CmdFightMatch3SoloAnimEndScRsp" => { + Some(Self::CmdFightMatch3SoloAnimEndScRsp) + } + "CmdFightMatch3OpponentDataScNotify" => { + Some(Self::CmdFightMatch3OpponentDataScNotify) + } + "CmdFightMatch3TurnEndScNotify" => Some(Self::CmdFightMatch3TurnEndScNotify), + "CmdFightMatch3DataCsReq" => Some(Self::CmdFightMatch3DataCsReq), + "CmdFightMatch3ChatCsReq" => Some(Self::CmdFightMatch3ChatCsReq), _ => None, } } @@ -50384,9 +52495,7 @@ pub enum Bfilliobmfn { EventFall = 2, EventRefresh = 3, EventBirdSkill = 4, - EventEnv = 5, - EventShuffle = 6, - EventSettleTag = 7, + EventShuffle = 5, } impl Bfilliobmfn { /// String value of the enum field names used in the ProtoBuf definition. @@ -50400,9 +52509,7 @@ impl Bfilliobmfn { Self::EventFall => "EVENT_FALL", Self::EventRefresh => "EVENT_REFRESH", Self::EventBirdSkill => "EVENT_BIRD_SKILL", - Self::EventEnv => "EVENT_ENV", Self::EventShuffle => "EVENT_SHUFFLE", - Self::EventSettleTag => "EVENT_SETTLE_TAG", } } /// Creates an enum from field names used in the ProtoBuf definition. @@ -50413,9 +52520,172 @@ impl Bfilliobmfn { "EVENT_FALL" => Some(Self::EventFall), "EVENT_REFRESH" => Some(Self::EventRefresh), "EVENT_BIRD_SKILL" => Some(Self::EventBirdSkill), - "EVENT_ENV" => Some(Self::EventEnv), "EVENT_SHUFFLE" => Some(Self::EventShuffle), - "EVENT_SETTLE_TAG" => Some(Self::EventSettleTag), + _ => None, + } + } +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] +#[repr(i32)] +pub enum Kjjldimbgmm { + Match3SoloStateIdle = 0, + Match3SoloStateStart = 1, + Match3SoloStateGame = 2, + Match3SoloStateAnim = 3, + Match3SoloStateOver = 4, + Match3SoloStateDel = 5, +} +impl Kjjldimbgmm { + /// String value of the enum field names used in the ProtoBuf definition. + /// + /// The values are not transformed in any way and thus are considered stable + /// (if the ProtoBuf definition does not change) and safe for programmatic use. + pub fn as_str_name(&self) -> &'static str { + match self { + Self::Match3SoloStateIdle => "MATCH3_SOLO_STATE_IDLE", + Self::Match3SoloStateStart => "MATCH3_SOLO_STATE_START", + Self::Match3SoloStateGame => "MATCH3_SOLO_STATE_GAME", + Self::Match3SoloStateAnim => "MATCH3_SOLO_STATE_ANIM", + Self::Match3SoloStateOver => "MATCH3_SOLO_STATE_OVER", + Self::Match3SoloStateDel => "MATCH3_SOLO_STATE_DEL", + } + } + /// Creates an enum from field names used in the ProtoBuf definition. + pub fn from_str_name(value: &str) -> ::core::option::Option { + match value { + "MATCH3_SOLO_STATE_IDLE" => Some(Self::Match3SoloStateIdle), + "MATCH3_SOLO_STATE_START" => Some(Self::Match3SoloStateStart), + "MATCH3_SOLO_STATE_GAME" => Some(Self::Match3SoloStateGame), + "MATCH3_SOLO_STATE_ANIM" => Some(Self::Match3SoloStateAnim), + "MATCH3_SOLO_STATE_OVER" => Some(Self::Match3SoloStateOver), + "MATCH3_SOLO_STATE_DEL" => Some(Self::Match3SoloStateDel), + _ => None, + } + } +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] +#[repr(i32)] +pub enum Nlaamogoobe { + Match3BattleOpTypeNone = 0, + Match3BattleOpTypeSwap = 1, + Match3BattleOpTypeUseItem = 2, +} +impl Nlaamogoobe { + /// String value of the enum field names used in the ProtoBuf definition. + /// + /// The values are not transformed in any way and thus are considered stable + /// (if the ProtoBuf definition does not change) and safe for programmatic use. + pub fn as_str_name(&self) -> &'static str { + match self { + Self::Match3BattleOpTypeNone => "MATCH3_BATTLE_OP_TYPE_NONE", + Self::Match3BattleOpTypeSwap => "MATCH3_BATTLE_OP_TYPE_SWAP", + Self::Match3BattleOpTypeUseItem => "MATCH3_BATTLE_OP_TYPE_USE_ITEM", + } + } + /// Creates an enum from field names used in the ProtoBuf definition. + pub fn from_str_name(value: &str) -> ::core::option::Option { + match value { + "MATCH3_BATTLE_OP_TYPE_NONE" => Some(Self::Match3BattleOpTypeNone), + "MATCH3_BATTLE_OP_TYPE_SWAP" => Some(Self::Match3BattleOpTypeSwap), + "MATCH3_BATTLE_OP_TYPE_USE_ITEM" => Some(Self::Match3BattleOpTypeUseItem), + _ => None, + } + } +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] +#[repr(i32)] +pub enum Ganmcijcoki { + Match3BattleBuffTypeNone = 0, + Match3BattleBuffTypeDetonateBombRecur = 1, + Match3BattleBuffTypeActivization = 2, + Match3BattleBuffTypeScoreBonus = 3, +} +impl Ganmcijcoki { + /// String value of the enum field names used in the ProtoBuf definition. + /// + /// The values are not transformed in any way and thus are considered stable + /// (if the ProtoBuf definition does not change) and safe for programmatic use. + pub fn as_str_name(&self) -> &'static str { + match self { + Self::Match3BattleBuffTypeNone => "MATCH3_BATTLE_BUFF_TYPE_NONE", + Self::Match3BattleBuffTypeDetonateBombRecur => { + "MATCH3_BATTLE_BUFF_TYPE_DETONATE_BOMB_RECUR" + } + Self::Match3BattleBuffTypeActivization => { + "MATCH3_BATTLE_BUFF_TYPE_ACTIVIZATION" + } + Self::Match3BattleBuffTypeScoreBonus => "MATCH3_BATTLE_BUFF_TYPE_SCORE_BONUS", + } + } + /// Creates an enum from field names used in the ProtoBuf definition. + pub fn from_str_name(value: &str) -> ::core::option::Option { + match value { + "MATCH3_BATTLE_BUFF_TYPE_NONE" => Some(Self::Match3BattleBuffTypeNone), + "MATCH3_BATTLE_BUFF_TYPE_DETONATE_BOMB_RECUR" => { + Some(Self::Match3BattleBuffTypeDetonateBombRecur) + } + "MATCH3_BATTLE_BUFF_TYPE_ACTIVIZATION" => { + Some(Self::Match3BattleBuffTypeActivization) + } + "MATCH3_BATTLE_BUFF_TYPE_SCORE_BONUS" => { + Some(Self::Match3BattleBuffTypeScoreBonus) + } + _ => None, + } + } +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] +#[repr(i32)] +pub enum Abbdjbmiibe { + Match3SoloUpdateReasonDefault = 0, + Match3SoloUpdateReasonTurnStart = 1, + Match3SoloUpdateReasonTurnEnd = 2, + Match3SoloUpdateReasonGameStart = 3, + Match3SoloUpdateReasonGameEnd = 4, + Match3SoloUpdateReasonGm = 5, +} +impl Abbdjbmiibe { + /// String value of the enum field names used in the ProtoBuf definition. + /// + /// The values are not transformed in any way and thus are considered stable + /// (if the ProtoBuf definition does not change) and safe for programmatic use. + pub fn as_str_name(&self) -> &'static str { + match self { + Self::Match3SoloUpdateReasonDefault => "MATCH3_SOLO_UPDATE_REASON_DEFAULT", + Self::Match3SoloUpdateReasonTurnStart => { + "MATCH3_SOLO_UPDATE_REASON_TURN_START" + } + Self::Match3SoloUpdateReasonTurnEnd => "MATCH3_SOLO_UPDATE_REASON_TURN_END", + Self::Match3SoloUpdateReasonGameStart => { + "MATCH3_SOLO_UPDATE_REASON_GAME_START" + } + Self::Match3SoloUpdateReasonGameEnd => "MATCH3_SOLO_UPDATE_REASON_GAME_END", + Self::Match3SoloUpdateReasonGm => "MATCH3_SOLO_UPDATE_REASON_GM", + } + } + /// Creates an enum from field names used in the ProtoBuf definition. + pub fn from_str_name(value: &str) -> ::core::option::Option { + match value { + "MATCH3_SOLO_UPDATE_REASON_DEFAULT" => { + Some(Self::Match3SoloUpdateReasonDefault) + } + "MATCH3_SOLO_UPDATE_REASON_TURN_START" => { + Some(Self::Match3SoloUpdateReasonTurnStart) + } + "MATCH3_SOLO_UPDATE_REASON_TURN_END" => { + Some(Self::Match3SoloUpdateReasonTurnEnd) + } + "MATCH3_SOLO_UPDATE_REASON_GAME_START" => { + Some(Self::Match3SoloUpdateReasonGameStart) + } + "MATCH3_SOLO_UPDATE_REASON_GAME_END" => { + Some(Self::Match3SoloUpdateReasonGameEnd) + } + "MATCH3_SOLO_UPDATE_REASON_GM" => Some(Self::Match3SoloUpdateReasonGm), _ => None, } } @@ -50426,68 +52696,68 @@ impl Bfilliobmfn { #[repr(i32)] pub enum CmdFriendType { None = 0, - CmdGetPlayerDetailInfoCsReq = 2931, - CmdDeleteBlacklistScRsp = 2963, - CmdGetFriendRecommendLineupCsReq = 2936, - CmdGetAssistHistoryCsReq = 2951, - CmdGetCurAssistScRsp = 2975, - CmdGetFriendBattleRecordDetailCsReq = 2934, - CmdNewAssistHistoryNotify = 2924, - CmdGetFriendRecommendLineupDetailScRsp = 2974, - CmdSearchPlayerCsReq = 2911, - CmdSetFriendRemarkNameScRsp = 2977, - CmdSyncDeleteFriendScNotify = 2983, - CmdSetAssistCsReq = 2984, - CmdSearchPlayerScRsp = 2993, - CmdGetFriendDevelopmentInfoScRsp = 2953, - CmdCurAssistChangedNotify = 2998, - CmdSetFriendRemarkNameCsReq = 2942, - CmdGetFriendAssistListScRsp = 2954, - CmdSetAssistScRsp = 2937, - CmdGetAssistListCsReq = 2925, - CmdDeleteBlacklistCsReq = 2929, - CmdGetFriendChallengeDetailCsReq = 2908, - CmdGetFriendChallengeDetailScRsp = 2935, - CmdHandleFriendCsReq = 2956, - CmdGetFriendRecommendLineupDetailCsReq = 2927, - CmdGetFriendLoginInfoScRsp = 2913, - CmdGetPlayerDetailInfoScRsp = 2940, - CmdGetFriendChallengeLineupCsReq = 2999, - CmdSyncAddBlacklistScNotify = 2939, - CmdGetFriendListInfoCsReq = 2995, - CmdAddBlacklistScRsp = 2902, - CmdGetFriendListInfoScRsp = 2932, - CmdTakeAssistRewardCsReq = 2957, - CmdGetFriendAssistListCsReq = 2909, - CmdApplyFriendScRsp = 2952, - CmdGetFriendRecommendListInfoCsReq = 2943, - CmdGetCurAssistCsReq = 2930, - CmdGetFriendApplyListInfoCsReq = 2976, - CmdSetFriendMarkCsReq = 2986, - CmdGetFriendRecommendListInfoScRsp = 2933, - CmdGetAssistHistoryScRsp = 2991, - CmdSyncApplyFriendScNotify = 2922, - CmdSetForbidOtherApplyFriendCsReq = 2978, - CmdGetFriendApplyListInfoScRsp = 2948, - CmdGetFriendDevelopmentInfoCsReq = 2901, - CmdGetFriendChallengeLineupScRsp = 2987, - CmdGetFriendBattleRecordDetailScRsp = 2968, - CmdHandleFriendScRsp = 2972, - CmdReportPlayerScRsp = 2921, - CmdSyncHandleFriendScNotify = 2985, - CmdDeleteFriendScRsp = 2946, - CmdAddBlacklistCsReq = 2960, - CmdApplyFriendCsReq = 2971, - CmdTakeAssistRewardScRsp = 2907, - CmdSetFriendMarkScRsp = 3000, - CmdGetFriendRecommendLineupScRsp = 2994, - CmdGetPlatformPlayerInfoCsReq = 2964, - CmdDeleteFriendCsReq = 2916, - CmdGetAssistListScRsp = 2914, - CmdReportPlayerCsReq = 2958, - CmdGetFriendLoginInfoCsReq = 2945, - CmdSetForbidOtherApplyFriendScRsp = 2920, - CmdGetPlatformPlayerInfoScRsp = 2906, + CmdSetFriendMarkScRsp = 2995, + CmdSyncAddBlacklistScNotify = 2938, + CmdGetFriendDevelopmentInfoScRsp = 2937, + CmdGetFriendRecommendListInfoCsReq = 2952, + CmdGetFriendChallengeLineupScRsp = 2993, + CmdNewAssistHistoryNotify = 2928, + CmdDeleteFriendScRsp = 2974, + CmdSetForbidOtherApplyFriendCsReq = 2971, + CmdGetPlayerDetailInfoCsReq = 2967, + CmdGetFriendRecommendListInfoScRsp = 2968, + CmdGetFriendLoginInfoScRsp = 2955, + CmdSetFriendRemarkNameScRsp = 2936, + CmdGetFriendListInfoCsReq = 2920, + CmdTakeAssistRewardCsReq = 2923, + CmdGetFriendChallengeDetailScRsp = 2957, + CmdGetPlatformPlayerInfoScRsp = 2947, + CmdGetFriendRecommendLineupDetailCsReq = 2953, + CmdDeleteBlacklistCsReq = 2906, + CmdGetFriendLoginInfoCsReq = 2919, + CmdGetCurAssistCsReq = 2945, + CmdGetFriendAssistListScRsp = 2996, + CmdApplyFriendScRsp = 2959, + CmdSyncDeleteFriendScNotify = 2973, + CmdTakeAssistRewardScRsp = 2922, + CmdGetPlatformPlayerInfoCsReq = 2918, + CmdHandleFriendCsReq = 2977, + CmdGetAssistListCsReq = 2941, + CmdGetFriendBattleRecordDetailScRsp = 2990, + CmdGetAssistListScRsp = 2984, + CmdSetFriendMarkCsReq = 2950, + CmdGetFriendBattleRecordDetailCsReq = 2926, + CmdGetAssistHistoryCsReq = 2903, + CmdGetFriendAssistListCsReq = 2960, + CmdAddBlacklistCsReq = 2998, + CmdSetAssistScRsp = 2934, + CmdSyncHandleFriendScNotify = 2902, + CmdReportPlayerCsReq = 2987, + CmdGetFriendRecommendLineupDetailScRsp = 2933, + CmdGetCurAssistScRsp = 2969, + CmdDeleteBlacklistScRsp = 2931, + CmdGetFriendChallengeLineupCsReq = 2916, + CmdSearchPlayerCsReq = 2944, + CmdApplyFriendCsReq = 2970, + CmdSetFriendRemarkNameCsReq = 2994, + CmdSetForbidOtherApplyFriendScRsp = 2963, + CmdGetFriendChallengeDetailCsReq = 2964, + CmdReportPlayerScRsp = 2909, + CmdGetPlayerDetailInfoScRsp = 2939, + CmdGetFriendApplyListInfoCsReq = 2927, + CmdDeleteFriendCsReq = 2905, + CmdGetFriendApplyListInfoScRsp = 2921, + CmdCurAssistChangedNotify = 2940, + CmdGetFriendListInfoScRsp = 2991, + CmdGetAssistHistoryScRsp = 2924, + CmdGetFriendRecommendLineupScRsp = 2935, + CmdGetFriendDevelopmentInfoCsReq = 2989, + CmdSetAssistCsReq = 2978, + CmdHandleFriendScRsp = 2980, + CmdSearchPlayerScRsp = 2949, + CmdAddBlacklistScRsp = 2985, + CmdSyncApplyFriendScNotify = 2954, + CmdGetFriendRecommendLineupCsReq = 2972, } impl CmdFriendType { /// String value of the enum field names used in the ProtoBuf definition. @@ -50497,188 +52767,188 @@ impl CmdFriendType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdFriendTypeNone", - Self::CmdGetPlayerDetailInfoCsReq => "CmdGetPlayerDetailInfoCsReq", - Self::CmdDeleteBlacklistScRsp => "CmdDeleteBlacklistScRsp", - Self::CmdGetFriendRecommendLineupCsReq => "CmdGetFriendRecommendLineupCsReq", - Self::CmdGetAssistHistoryCsReq => "CmdGetAssistHistoryCsReq", - Self::CmdGetCurAssistScRsp => "CmdGetCurAssistScRsp", - Self::CmdGetFriendBattleRecordDetailCsReq => { - "CmdGetFriendBattleRecordDetailCsReq" - } - Self::CmdNewAssistHistoryNotify => "CmdNewAssistHistoryNotify", - Self::CmdGetFriendRecommendLineupDetailScRsp => { - "CmdGetFriendRecommendLineupDetailScRsp" - } - Self::CmdSearchPlayerCsReq => "CmdSearchPlayerCsReq", - Self::CmdSetFriendRemarkNameScRsp => "CmdSetFriendRemarkNameScRsp", - Self::CmdSyncDeleteFriendScNotify => "CmdSyncDeleteFriendScNotify", - Self::CmdSetAssistCsReq => "CmdSetAssistCsReq", - Self::CmdSearchPlayerScRsp => "CmdSearchPlayerScRsp", - Self::CmdGetFriendDevelopmentInfoScRsp => "CmdGetFriendDevelopmentInfoScRsp", - Self::CmdCurAssistChangedNotify => "CmdCurAssistChangedNotify", - Self::CmdSetFriendRemarkNameCsReq => "CmdSetFriendRemarkNameCsReq", - Self::CmdGetFriendAssistListScRsp => "CmdGetFriendAssistListScRsp", - Self::CmdSetAssistScRsp => "CmdSetAssistScRsp", - Self::CmdGetAssistListCsReq => "CmdGetAssistListCsReq", - Self::CmdDeleteBlacklistCsReq => "CmdDeleteBlacklistCsReq", - Self::CmdGetFriendChallengeDetailCsReq => "CmdGetFriendChallengeDetailCsReq", - Self::CmdGetFriendChallengeDetailScRsp => "CmdGetFriendChallengeDetailScRsp", - Self::CmdHandleFriendCsReq => "CmdHandleFriendCsReq", - Self::CmdGetFriendRecommendLineupDetailCsReq => { - "CmdGetFriendRecommendLineupDetailCsReq" - } - Self::CmdGetFriendLoginInfoScRsp => "CmdGetFriendLoginInfoScRsp", - Self::CmdGetPlayerDetailInfoScRsp => "CmdGetPlayerDetailInfoScRsp", - Self::CmdGetFriendChallengeLineupCsReq => "CmdGetFriendChallengeLineupCsReq", + Self::CmdSetFriendMarkScRsp => "CmdSetFriendMarkScRsp", Self::CmdSyncAddBlacklistScNotify => "CmdSyncAddBlacklistScNotify", - Self::CmdGetFriendListInfoCsReq => "CmdGetFriendListInfoCsReq", - Self::CmdAddBlacklistScRsp => "CmdAddBlacklistScRsp", - Self::CmdGetFriendListInfoScRsp => "CmdGetFriendListInfoScRsp", - Self::CmdTakeAssistRewardCsReq => "CmdTakeAssistRewardCsReq", - Self::CmdGetFriendAssistListCsReq => "CmdGetFriendAssistListCsReq", - Self::CmdApplyFriendScRsp => "CmdApplyFriendScRsp", + Self::CmdGetFriendDevelopmentInfoScRsp => "CmdGetFriendDevelopmentInfoScRsp", Self::CmdGetFriendRecommendListInfoCsReq => { "CmdGetFriendRecommendListInfoCsReq" } - Self::CmdGetCurAssistCsReq => "CmdGetCurAssistCsReq", - Self::CmdGetFriendApplyListInfoCsReq => "CmdGetFriendApplyListInfoCsReq", - Self::CmdSetFriendMarkCsReq => "CmdSetFriendMarkCsReq", - Self::CmdGetFriendRecommendListInfoScRsp => { - "CmdGetFriendRecommendListInfoScRsp" - } - Self::CmdGetAssistHistoryScRsp => "CmdGetAssistHistoryScRsp", - Self::CmdSyncApplyFriendScNotify => "CmdSyncApplyFriendScNotify", + Self::CmdGetFriendChallengeLineupScRsp => "CmdGetFriendChallengeLineupScRsp", + Self::CmdNewAssistHistoryNotify => "CmdNewAssistHistoryNotify", + Self::CmdDeleteFriendScRsp => "CmdDeleteFriendScRsp", Self::CmdSetForbidOtherApplyFriendCsReq => { "CmdSetForbidOtherApplyFriendCsReq" } - Self::CmdGetFriendApplyListInfoScRsp => "CmdGetFriendApplyListInfoScRsp", - Self::CmdGetFriendDevelopmentInfoCsReq => "CmdGetFriendDevelopmentInfoCsReq", - Self::CmdGetFriendChallengeLineupScRsp => "CmdGetFriendChallengeLineupScRsp", + Self::CmdGetPlayerDetailInfoCsReq => "CmdGetPlayerDetailInfoCsReq", + Self::CmdGetFriendRecommendListInfoScRsp => { + "CmdGetFriendRecommendListInfoScRsp" + } + Self::CmdGetFriendLoginInfoScRsp => "CmdGetFriendLoginInfoScRsp", + Self::CmdSetFriendRemarkNameScRsp => "CmdSetFriendRemarkNameScRsp", + Self::CmdGetFriendListInfoCsReq => "CmdGetFriendListInfoCsReq", + Self::CmdTakeAssistRewardCsReq => "CmdTakeAssistRewardCsReq", + Self::CmdGetFriendChallengeDetailScRsp => "CmdGetFriendChallengeDetailScRsp", + Self::CmdGetPlatformPlayerInfoScRsp => "CmdGetPlatformPlayerInfoScRsp", + Self::CmdGetFriendRecommendLineupDetailCsReq => { + "CmdGetFriendRecommendLineupDetailCsReq" + } + Self::CmdDeleteBlacklistCsReq => "CmdDeleteBlacklistCsReq", + Self::CmdGetFriendLoginInfoCsReq => "CmdGetFriendLoginInfoCsReq", + Self::CmdGetCurAssistCsReq => "CmdGetCurAssistCsReq", + Self::CmdGetFriendAssistListScRsp => "CmdGetFriendAssistListScRsp", + Self::CmdApplyFriendScRsp => "CmdApplyFriendScRsp", + Self::CmdSyncDeleteFriendScNotify => "CmdSyncDeleteFriendScNotify", + Self::CmdTakeAssistRewardScRsp => "CmdTakeAssistRewardScRsp", + Self::CmdGetPlatformPlayerInfoCsReq => "CmdGetPlatformPlayerInfoCsReq", + Self::CmdHandleFriendCsReq => "CmdHandleFriendCsReq", + Self::CmdGetAssistListCsReq => "CmdGetAssistListCsReq", Self::CmdGetFriendBattleRecordDetailScRsp => { "CmdGetFriendBattleRecordDetailScRsp" } - Self::CmdHandleFriendScRsp => "CmdHandleFriendScRsp", - Self::CmdReportPlayerScRsp => "CmdReportPlayerScRsp", - Self::CmdSyncHandleFriendScNotify => "CmdSyncHandleFriendScNotify", - Self::CmdDeleteFriendScRsp => "CmdDeleteFriendScRsp", - Self::CmdAddBlacklistCsReq => "CmdAddBlacklistCsReq", - Self::CmdApplyFriendCsReq => "CmdApplyFriendCsReq", - Self::CmdTakeAssistRewardScRsp => "CmdTakeAssistRewardScRsp", - Self::CmdSetFriendMarkScRsp => "CmdSetFriendMarkScRsp", - Self::CmdGetFriendRecommendLineupScRsp => "CmdGetFriendRecommendLineupScRsp", - Self::CmdGetPlatformPlayerInfoCsReq => "CmdGetPlatformPlayerInfoCsReq", - Self::CmdDeleteFriendCsReq => "CmdDeleteFriendCsReq", Self::CmdGetAssistListScRsp => "CmdGetAssistListScRsp", + Self::CmdSetFriendMarkCsReq => "CmdSetFriendMarkCsReq", + Self::CmdGetFriendBattleRecordDetailCsReq => { + "CmdGetFriendBattleRecordDetailCsReq" + } + Self::CmdGetAssistHistoryCsReq => "CmdGetAssistHistoryCsReq", + Self::CmdGetFriendAssistListCsReq => "CmdGetFriendAssistListCsReq", + Self::CmdAddBlacklistCsReq => "CmdAddBlacklistCsReq", + Self::CmdSetAssistScRsp => "CmdSetAssistScRsp", + Self::CmdSyncHandleFriendScNotify => "CmdSyncHandleFriendScNotify", Self::CmdReportPlayerCsReq => "CmdReportPlayerCsReq", - Self::CmdGetFriendLoginInfoCsReq => "CmdGetFriendLoginInfoCsReq", + Self::CmdGetFriendRecommendLineupDetailScRsp => { + "CmdGetFriendRecommendLineupDetailScRsp" + } + Self::CmdGetCurAssistScRsp => "CmdGetCurAssistScRsp", + Self::CmdDeleteBlacklistScRsp => "CmdDeleteBlacklistScRsp", + Self::CmdGetFriendChallengeLineupCsReq => "CmdGetFriendChallengeLineupCsReq", + Self::CmdSearchPlayerCsReq => "CmdSearchPlayerCsReq", + Self::CmdApplyFriendCsReq => "CmdApplyFriendCsReq", + Self::CmdSetFriendRemarkNameCsReq => "CmdSetFriendRemarkNameCsReq", Self::CmdSetForbidOtherApplyFriendScRsp => { "CmdSetForbidOtherApplyFriendScRsp" } - Self::CmdGetPlatformPlayerInfoScRsp => "CmdGetPlatformPlayerInfoScRsp", + Self::CmdGetFriendChallengeDetailCsReq => "CmdGetFriendChallengeDetailCsReq", + Self::CmdReportPlayerScRsp => "CmdReportPlayerScRsp", + Self::CmdGetPlayerDetailInfoScRsp => "CmdGetPlayerDetailInfoScRsp", + Self::CmdGetFriendApplyListInfoCsReq => "CmdGetFriendApplyListInfoCsReq", + Self::CmdDeleteFriendCsReq => "CmdDeleteFriendCsReq", + Self::CmdGetFriendApplyListInfoScRsp => "CmdGetFriendApplyListInfoScRsp", + Self::CmdCurAssistChangedNotify => "CmdCurAssistChangedNotify", + Self::CmdGetFriendListInfoScRsp => "CmdGetFriendListInfoScRsp", + Self::CmdGetAssistHistoryScRsp => "CmdGetAssistHistoryScRsp", + Self::CmdGetFriendRecommendLineupScRsp => "CmdGetFriendRecommendLineupScRsp", + Self::CmdGetFriendDevelopmentInfoCsReq => "CmdGetFriendDevelopmentInfoCsReq", + Self::CmdSetAssistCsReq => "CmdSetAssistCsReq", + Self::CmdHandleFriendScRsp => "CmdHandleFriendScRsp", + Self::CmdSearchPlayerScRsp => "CmdSearchPlayerScRsp", + Self::CmdAddBlacklistScRsp => "CmdAddBlacklistScRsp", + Self::CmdSyncApplyFriendScNotify => "CmdSyncApplyFriendScNotify", + Self::CmdGetFriendRecommendLineupCsReq => "CmdGetFriendRecommendLineupCsReq", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdFriendTypeNone" => Some(Self::None), - "CmdGetPlayerDetailInfoCsReq" => Some(Self::CmdGetPlayerDetailInfoCsReq), - "CmdDeleteBlacklistScRsp" => Some(Self::CmdDeleteBlacklistScRsp), - "CmdGetFriendRecommendLineupCsReq" => { - Some(Self::CmdGetFriendRecommendLineupCsReq) - } - "CmdGetAssistHistoryCsReq" => Some(Self::CmdGetAssistHistoryCsReq), - "CmdGetCurAssistScRsp" => Some(Self::CmdGetCurAssistScRsp), - "CmdGetFriendBattleRecordDetailCsReq" => { - Some(Self::CmdGetFriendBattleRecordDetailCsReq) - } - "CmdNewAssistHistoryNotify" => Some(Self::CmdNewAssistHistoryNotify), - "CmdGetFriendRecommendLineupDetailScRsp" => { - Some(Self::CmdGetFriendRecommendLineupDetailScRsp) - } - "CmdSearchPlayerCsReq" => Some(Self::CmdSearchPlayerCsReq), - "CmdSetFriendRemarkNameScRsp" => Some(Self::CmdSetFriendRemarkNameScRsp), - "CmdSyncDeleteFriendScNotify" => Some(Self::CmdSyncDeleteFriendScNotify), - "CmdSetAssistCsReq" => Some(Self::CmdSetAssistCsReq), - "CmdSearchPlayerScRsp" => Some(Self::CmdSearchPlayerScRsp), + "CmdSetFriendMarkScRsp" => Some(Self::CmdSetFriendMarkScRsp), + "CmdSyncAddBlacklistScNotify" => Some(Self::CmdSyncAddBlacklistScNotify), "CmdGetFriendDevelopmentInfoScRsp" => { Some(Self::CmdGetFriendDevelopmentInfoScRsp) } - "CmdCurAssistChangedNotify" => Some(Self::CmdCurAssistChangedNotify), - "CmdSetFriendRemarkNameCsReq" => Some(Self::CmdSetFriendRemarkNameCsReq), - "CmdGetFriendAssistListScRsp" => Some(Self::CmdGetFriendAssistListScRsp), - "CmdSetAssistScRsp" => Some(Self::CmdSetAssistScRsp), - "CmdGetAssistListCsReq" => Some(Self::CmdGetAssistListCsReq), - "CmdDeleteBlacklistCsReq" => Some(Self::CmdDeleteBlacklistCsReq), - "CmdGetFriendChallengeDetailCsReq" => { - Some(Self::CmdGetFriendChallengeDetailCsReq) - } - "CmdGetFriendChallengeDetailScRsp" => { - Some(Self::CmdGetFriendChallengeDetailScRsp) - } - "CmdHandleFriendCsReq" => Some(Self::CmdHandleFriendCsReq), - "CmdGetFriendRecommendLineupDetailCsReq" => { - Some(Self::CmdGetFriendRecommendLineupDetailCsReq) - } - "CmdGetFriendLoginInfoScRsp" => Some(Self::CmdGetFriendLoginInfoScRsp), - "CmdGetPlayerDetailInfoScRsp" => Some(Self::CmdGetPlayerDetailInfoScRsp), - "CmdGetFriendChallengeLineupCsReq" => { - Some(Self::CmdGetFriendChallengeLineupCsReq) - } - "CmdSyncAddBlacklistScNotify" => Some(Self::CmdSyncAddBlacklistScNotify), - "CmdGetFriendListInfoCsReq" => Some(Self::CmdGetFriendListInfoCsReq), - "CmdAddBlacklistScRsp" => Some(Self::CmdAddBlacklistScRsp), - "CmdGetFriendListInfoScRsp" => Some(Self::CmdGetFriendListInfoScRsp), - "CmdTakeAssistRewardCsReq" => Some(Self::CmdTakeAssistRewardCsReq), - "CmdGetFriendAssistListCsReq" => Some(Self::CmdGetFriendAssistListCsReq), - "CmdApplyFriendScRsp" => Some(Self::CmdApplyFriendScRsp), "CmdGetFriendRecommendListInfoCsReq" => { Some(Self::CmdGetFriendRecommendListInfoCsReq) } - "CmdGetCurAssistCsReq" => Some(Self::CmdGetCurAssistCsReq), - "CmdGetFriendApplyListInfoCsReq" => { - Some(Self::CmdGetFriendApplyListInfoCsReq) - } - "CmdSetFriendMarkCsReq" => Some(Self::CmdSetFriendMarkCsReq), - "CmdGetFriendRecommendListInfoScRsp" => { - Some(Self::CmdGetFriendRecommendListInfoScRsp) - } - "CmdGetAssistHistoryScRsp" => Some(Self::CmdGetAssistHistoryScRsp), - "CmdSyncApplyFriendScNotify" => Some(Self::CmdSyncApplyFriendScNotify), - "CmdSetForbidOtherApplyFriendCsReq" => { - Some(Self::CmdSetForbidOtherApplyFriendCsReq) - } - "CmdGetFriendApplyListInfoScRsp" => { - Some(Self::CmdGetFriendApplyListInfoScRsp) - } - "CmdGetFriendDevelopmentInfoCsReq" => { - Some(Self::CmdGetFriendDevelopmentInfoCsReq) - } "CmdGetFriendChallengeLineupScRsp" => { Some(Self::CmdGetFriendChallengeLineupScRsp) } + "CmdNewAssistHistoryNotify" => Some(Self::CmdNewAssistHistoryNotify), + "CmdDeleteFriendScRsp" => Some(Self::CmdDeleteFriendScRsp), + "CmdSetForbidOtherApplyFriendCsReq" => { + Some(Self::CmdSetForbidOtherApplyFriendCsReq) + } + "CmdGetPlayerDetailInfoCsReq" => Some(Self::CmdGetPlayerDetailInfoCsReq), + "CmdGetFriendRecommendListInfoScRsp" => { + Some(Self::CmdGetFriendRecommendListInfoScRsp) + } + "CmdGetFriendLoginInfoScRsp" => Some(Self::CmdGetFriendLoginInfoScRsp), + "CmdSetFriendRemarkNameScRsp" => Some(Self::CmdSetFriendRemarkNameScRsp), + "CmdGetFriendListInfoCsReq" => Some(Self::CmdGetFriendListInfoCsReq), + "CmdTakeAssistRewardCsReq" => Some(Self::CmdTakeAssistRewardCsReq), + "CmdGetFriendChallengeDetailScRsp" => { + Some(Self::CmdGetFriendChallengeDetailScRsp) + } + "CmdGetPlatformPlayerInfoScRsp" => Some(Self::CmdGetPlatformPlayerInfoScRsp), + "CmdGetFriendRecommendLineupDetailCsReq" => { + Some(Self::CmdGetFriendRecommendLineupDetailCsReq) + } + "CmdDeleteBlacklistCsReq" => Some(Self::CmdDeleteBlacklistCsReq), + "CmdGetFriendLoginInfoCsReq" => Some(Self::CmdGetFriendLoginInfoCsReq), + "CmdGetCurAssistCsReq" => Some(Self::CmdGetCurAssistCsReq), + "CmdGetFriendAssistListScRsp" => Some(Self::CmdGetFriendAssistListScRsp), + "CmdApplyFriendScRsp" => Some(Self::CmdApplyFriendScRsp), + "CmdSyncDeleteFriendScNotify" => Some(Self::CmdSyncDeleteFriendScNotify), + "CmdTakeAssistRewardScRsp" => Some(Self::CmdTakeAssistRewardScRsp), + "CmdGetPlatformPlayerInfoCsReq" => Some(Self::CmdGetPlatformPlayerInfoCsReq), + "CmdHandleFriendCsReq" => Some(Self::CmdHandleFriendCsReq), + "CmdGetAssistListCsReq" => Some(Self::CmdGetAssistListCsReq), "CmdGetFriendBattleRecordDetailScRsp" => { Some(Self::CmdGetFriendBattleRecordDetailScRsp) } - "CmdHandleFriendScRsp" => Some(Self::CmdHandleFriendScRsp), - "CmdReportPlayerScRsp" => Some(Self::CmdReportPlayerScRsp), - "CmdSyncHandleFriendScNotify" => Some(Self::CmdSyncHandleFriendScNotify), - "CmdDeleteFriendScRsp" => Some(Self::CmdDeleteFriendScRsp), - "CmdAddBlacklistCsReq" => Some(Self::CmdAddBlacklistCsReq), - "CmdApplyFriendCsReq" => Some(Self::CmdApplyFriendCsReq), - "CmdTakeAssistRewardScRsp" => Some(Self::CmdTakeAssistRewardScRsp), - "CmdSetFriendMarkScRsp" => Some(Self::CmdSetFriendMarkScRsp), - "CmdGetFriendRecommendLineupScRsp" => { - Some(Self::CmdGetFriendRecommendLineupScRsp) - } - "CmdGetPlatformPlayerInfoCsReq" => Some(Self::CmdGetPlatformPlayerInfoCsReq), - "CmdDeleteFriendCsReq" => Some(Self::CmdDeleteFriendCsReq), "CmdGetAssistListScRsp" => Some(Self::CmdGetAssistListScRsp), + "CmdSetFriendMarkCsReq" => Some(Self::CmdSetFriendMarkCsReq), + "CmdGetFriendBattleRecordDetailCsReq" => { + Some(Self::CmdGetFriendBattleRecordDetailCsReq) + } + "CmdGetAssistHistoryCsReq" => Some(Self::CmdGetAssistHistoryCsReq), + "CmdGetFriendAssistListCsReq" => Some(Self::CmdGetFriendAssistListCsReq), + "CmdAddBlacklistCsReq" => Some(Self::CmdAddBlacklistCsReq), + "CmdSetAssistScRsp" => Some(Self::CmdSetAssistScRsp), + "CmdSyncHandleFriendScNotify" => Some(Self::CmdSyncHandleFriendScNotify), "CmdReportPlayerCsReq" => Some(Self::CmdReportPlayerCsReq), - "CmdGetFriendLoginInfoCsReq" => Some(Self::CmdGetFriendLoginInfoCsReq), + "CmdGetFriendRecommendLineupDetailScRsp" => { + Some(Self::CmdGetFriendRecommendLineupDetailScRsp) + } + "CmdGetCurAssistScRsp" => Some(Self::CmdGetCurAssistScRsp), + "CmdDeleteBlacklistScRsp" => Some(Self::CmdDeleteBlacklistScRsp), + "CmdGetFriendChallengeLineupCsReq" => { + Some(Self::CmdGetFriendChallengeLineupCsReq) + } + "CmdSearchPlayerCsReq" => Some(Self::CmdSearchPlayerCsReq), + "CmdApplyFriendCsReq" => Some(Self::CmdApplyFriendCsReq), + "CmdSetFriendRemarkNameCsReq" => Some(Self::CmdSetFriendRemarkNameCsReq), "CmdSetForbidOtherApplyFriendScRsp" => { Some(Self::CmdSetForbidOtherApplyFriendScRsp) } - "CmdGetPlatformPlayerInfoScRsp" => Some(Self::CmdGetPlatformPlayerInfoScRsp), + "CmdGetFriendChallengeDetailCsReq" => { + Some(Self::CmdGetFriendChallengeDetailCsReq) + } + "CmdReportPlayerScRsp" => Some(Self::CmdReportPlayerScRsp), + "CmdGetPlayerDetailInfoScRsp" => Some(Self::CmdGetPlayerDetailInfoScRsp), + "CmdGetFriendApplyListInfoCsReq" => { + Some(Self::CmdGetFriendApplyListInfoCsReq) + } + "CmdDeleteFriendCsReq" => Some(Self::CmdDeleteFriendCsReq), + "CmdGetFriendApplyListInfoScRsp" => { + Some(Self::CmdGetFriendApplyListInfoScRsp) + } + "CmdCurAssistChangedNotify" => Some(Self::CmdCurAssistChangedNotify), + "CmdGetFriendListInfoScRsp" => Some(Self::CmdGetFriendListInfoScRsp), + "CmdGetAssistHistoryScRsp" => Some(Self::CmdGetAssistHistoryScRsp), + "CmdGetFriendRecommendLineupScRsp" => { + Some(Self::CmdGetFriendRecommendLineupScRsp) + } + "CmdGetFriendDevelopmentInfoCsReq" => { + Some(Self::CmdGetFriendDevelopmentInfoCsReq) + } + "CmdSetAssistCsReq" => Some(Self::CmdSetAssistCsReq), + "CmdHandleFriendScRsp" => Some(Self::CmdHandleFriendScRsp), + "CmdSearchPlayerScRsp" => Some(Self::CmdSearchPlayerScRsp), + "CmdAddBlacklistScRsp" => Some(Self::CmdAddBlacklistScRsp), + "CmdSyncApplyFriendScNotify" => Some(Self::CmdSyncApplyFriendScNotify), + "CmdGetFriendRecommendLineupCsReq" => { + Some(Self::CmdGetFriendRecommendLineupCsReq) + } _ => None, } } @@ -50758,17 +53028,17 @@ impl FriendApplySource { #[repr(i32)] pub enum CmdGachaType { None = 0, - CmdDoGachaCsReq = 1931, - CmdGetGachaCeilingScRsp = 1948, - CmdGetGachaInfoScRsp = 1932, - CmdGachaDecideItemChangeScNotify = 1972, - CmdDoGachaScRsp = 1940, - CmdExchangeGachaCeilingCsReq = 1971, - CmdGetGachaInfoCsReq = 1995, - CmdExchangeGachaCeilingScRsp = 1952, - CmdSetGachaDecideItemCsReq = 1922, - CmdGetGachaCeilingCsReq = 1976, - CmdSetGachaDecideItemScRsp = 1956, + CmdGachaDecideItemChangeScNotify = 1980, + CmdGetGachaCeilingCsReq = 1927, + CmdDoGachaScRsp = 1939, + CmdGetGachaInfoCsReq = 1920, + CmdExchangeGachaCeilingCsReq = 1970, + CmdSetGachaDecideItemScRsp = 1977, + CmdGetGachaCeilingScRsp = 1921, + CmdGetGachaInfoScRsp = 1991, + CmdDoGachaCsReq = 1967, + CmdSetGachaDecideItemCsReq = 1954, + CmdExchangeGachaCeilingScRsp = 1959, } impl CmdGachaType { /// String value of the enum field names used in the ProtoBuf definition. @@ -50778,36 +53048,36 @@ impl CmdGachaType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdGachaTypeNone", - Self::CmdDoGachaCsReq => "CmdDoGachaCsReq", + Self::CmdGachaDecideItemChangeScNotify => "CmdGachaDecideItemChangeScNotify", + Self::CmdGetGachaCeilingCsReq => "CmdGetGachaCeilingCsReq", + Self::CmdDoGachaScRsp => "CmdDoGachaScRsp", + Self::CmdGetGachaInfoCsReq => "CmdGetGachaInfoCsReq", + Self::CmdExchangeGachaCeilingCsReq => "CmdExchangeGachaCeilingCsReq", + Self::CmdSetGachaDecideItemScRsp => "CmdSetGachaDecideItemScRsp", Self::CmdGetGachaCeilingScRsp => "CmdGetGachaCeilingScRsp", Self::CmdGetGachaInfoScRsp => "CmdGetGachaInfoScRsp", - Self::CmdGachaDecideItemChangeScNotify => "CmdGachaDecideItemChangeScNotify", - Self::CmdDoGachaScRsp => "CmdDoGachaScRsp", - Self::CmdExchangeGachaCeilingCsReq => "CmdExchangeGachaCeilingCsReq", - Self::CmdGetGachaInfoCsReq => "CmdGetGachaInfoCsReq", - Self::CmdExchangeGachaCeilingScRsp => "CmdExchangeGachaCeilingScRsp", + Self::CmdDoGachaCsReq => "CmdDoGachaCsReq", Self::CmdSetGachaDecideItemCsReq => "CmdSetGachaDecideItemCsReq", - Self::CmdGetGachaCeilingCsReq => "CmdGetGachaCeilingCsReq", - Self::CmdSetGachaDecideItemScRsp => "CmdSetGachaDecideItemScRsp", + Self::CmdExchangeGachaCeilingScRsp => "CmdExchangeGachaCeilingScRsp", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdGachaTypeNone" => Some(Self::None), - "CmdDoGachaCsReq" => Some(Self::CmdDoGachaCsReq), - "CmdGetGachaCeilingScRsp" => Some(Self::CmdGetGachaCeilingScRsp), - "CmdGetGachaInfoScRsp" => Some(Self::CmdGetGachaInfoScRsp), "CmdGachaDecideItemChangeScNotify" => { Some(Self::CmdGachaDecideItemChangeScNotify) } - "CmdDoGachaScRsp" => Some(Self::CmdDoGachaScRsp), - "CmdExchangeGachaCeilingCsReq" => Some(Self::CmdExchangeGachaCeilingCsReq), - "CmdGetGachaInfoCsReq" => Some(Self::CmdGetGachaInfoCsReq), - "CmdExchangeGachaCeilingScRsp" => Some(Self::CmdExchangeGachaCeilingScRsp), - "CmdSetGachaDecideItemCsReq" => Some(Self::CmdSetGachaDecideItemCsReq), "CmdGetGachaCeilingCsReq" => Some(Self::CmdGetGachaCeilingCsReq), + "CmdDoGachaScRsp" => Some(Self::CmdDoGachaScRsp), + "CmdGetGachaInfoCsReq" => Some(Self::CmdGetGachaInfoCsReq), + "CmdExchangeGachaCeilingCsReq" => Some(Self::CmdExchangeGachaCeilingCsReq), "CmdSetGachaDecideItemScRsp" => Some(Self::CmdSetGachaDecideItemScRsp), + "CmdGetGachaCeilingScRsp" => Some(Self::CmdGetGachaCeilingScRsp), + "CmdGetGachaInfoScRsp" => Some(Self::CmdGetGachaInfoScRsp), + "CmdDoGachaCsReq" => Some(Self::CmdDoGachaCsReq), + "CmdSetGachaDecideItemCsReq" => Some(Self::CmdSetGachaDecideItemCsReq), + "CmdExchangeGachaCeilingScRsp" => Some(Self::CmdExchangeGachaCeilingScRsp), _ => None, } } @@ -50818,17 +53088,17 @@ impl CmdGachaType { #[repr(i32)] pub enum CmdHeartdialType { None = 0, - CmdChangeScriptEmotionCsReq = 6331, - CmdFinishEmotionDialoguePerformanceCsReq = 6371, - CmdHeartDialTraceScriptCsReq = 6356, - CmdGetHeartDialInfoCsReq = 6395, - CmdFinishEmotionDialoguePerformanceScRsp = 6352, - CmdHeartDialScriptChangeScNotify = 6322, - CmdGetHeartDialInfoScRsp = 6332, - CmdSubmitEmotionItemCsReq = 6376, - CmdSubmitEmotionItemScRsp = 6348, - CmdHeartDialTraceScriptScRsp = 6372, - CmdChangeScriptEmotionScRsp = 6340, + CmdFinishEmotionDialoguePerformanceScRsp = 6359, + CmdHeartDialTraceScriptScRsp = 6380, + CmdFinishEmotionDialoguePerformanceCsReq = 6370, + CmdGetHeartDialInfoCsReq = 6320, + CmdSubmitEmotionItemCsReq = 6327, + CmdChangeScriptEmotionScRsp = 6339, + CmdSubmitEmotionItemScRsp = 6321, + CmdGetHeartDialInfoScRsp = 6391, + CmdHeartDialTraceScriptCsReq = 6377, + CmdHeartDialScriptChangeScNotify = 6354, + CmdChangeScriptEmotionCsReq = 6367, } impl CmdHeartdialType { /// String value of the enum field names used in the ProtoBuf definition. @@ -50838,44 +53108,44 @@ impl CmdHeartdialType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdHeartdialTypeNone", - Self::CmdChangeScriptEmotionCsReq => "CmdChangeScriptEmotionCsReq", - Self::CmdFinishEmotionDialoguePerformanceCsReq => { - "CmdFinishEmotionDialoguePerformanceCsReq" - } - Self::CmdHeartDialTraceScriptCsReq => "CmdHeartDialTraceScriptCsReq", - Self::CmdGetHeartDialInfoCsReq => "CmdGetHeartDialInfoCsReq", Self::CmdFinishEmotionDialoguePerformanceScRsp => { "CmdFinishEmotionDialoguePerformanceScRsp" } - Self::CmdHeartDialScriptChangeScNotify => "CmdHeartDialScriptChangeScNotify", - Self::CmdGetHeartDialInfoScRsp => "CmdGetHeartDialInfoScRsp", - Self::CmdSubmitEmotionItemCsReq => "CmdSubmitEmotionItemCsReq", - Self::CmdSubmitEmotionItemScRsp => "CmdSubmitEmotionItemScRsp", Self::CmdHeartDialTraceScriptScRsp => "CmdHeartDialTraceScriptScRsp", + Self::CmdFinishEmotionDialoguePerformanceCsReq => { + "CmdFinishEmotionDialoguePerformanceCsReq" + } + Self::CmdGetHeartDialInfoCsReq => "CmdGetHeartDialInfoCsReq", + Self::CmdSubmitEmotionItemCsReq => "CmdSubmitEmotionItemCsReq", Self::CmdChangeScriptEmotionScRsp => "CmdChangeScriptEmotionScRsp", + Self::CmdSubmitEmotionItemScRsp => "CmdSubmitEmotionItemScRsp", + Self::CmdGetHeartDialInfoScRsp => "CmdGetHeartDialInfoScRsp", + Self::CmdHeartDialTraceScriptCsReq => "CmdHeartDialTraceScriptCsReq", + Self::CmdHeartDialScriptChangeScNotify => "CmdHeartDialScriptChangeScNotify", + Self::CmdChangeScriptEmotionCsReq => "CmdChangeScriptEmotionCsReq", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdHeartdialTypeNone" => Some(Self::None), - "CmdChangeScriptEmotionCsReq" => Some(Self::CmdChangeScriptEmotionCsReq), - "CmdFinishEmotionDialoguePerformanceCsReq" => { - Some(Self::CmdFinishEmotionDialoguePerformanceCsReq) - } - "CmdHeartDialTraceScriptCsReq" => Some(Self::CmdHeartDialTraceScriptCsReq), - "CmdGetHeartDialInfoCsReq" => Some(Self::CmdGetHeartDialInfoCsReq), "CmdFinishEmotionDialoguePerformanceScRsp" => { Some(Self::CmdFinishEmotionDialoguePerformanceScRsp) } + "CmdHeartDialTraceScriptScRsp" => Some(Self::CmdHeartDialTraceScriptScRsp), + "CmdFinishEmotionDialoguePerformanceCsReq" => { + Some(Self::CmdFinishEmotionDialoguePerformanceCsReq) + } + "CmdGetHeartDialInfoCsReq" => Some(Self::CmdGetHeartDialInfoCsReq), + "CmdSubmitEmotionItemCsReq" => Some(Self::CmdSubmitEmotionItemCsReq), + "CmdChangeScriptEmotionScRsp" => Some(Self::CmdChangeScriptEmotionScRsp), + "CmdSubmitEmotionItemScRsp" => Some(Self::CmdSubmitEmotionItemScRsp), + "CmdGetHeartDialInfoScRsp" => Some(Self::CmdGetHeartDialInfoScRsp), + "CmdHeartDialTraceScriptCsReq" => Some(Self::CmdHeartDialTraceScriptCsReq), "CmdHeartDialScriptChangeScNotify" => { Some(Self::CmdHeartDialScriptChangeScNotify) } - "CmdGetHeartDialInfoScRsp" => Some(Self::CmdGetHeartDialInfoScRsp), - "CmdSubmitEmotionItemCsReq" => Some(Self::CmdSubmitEmotionItemCsReq), - "CmdSubmitEmotionItemScRsp" => Some(Self::CmdSubmitEmotionItemScRsp), - "CmdHeartDialTraceScriptScRsp" => Some(Self::CmdHeartDialTraceScriptScRsp), - "CmdChangeScriptEmotionScRsp" => Some(Self::CmdChangeScriptEmotionScRsp), + "CmdChangeScriptEmotionCsReq" => Some(Self::CmdChangeScriptEmotionCsReq), _ => None, } } @@ -50994,29 +53264,29 @@ impl Ooehgmemkoi { #[repr(i32)] pub enum CmdHeliobusType { None = 0, - CmdHeliobusSelectSkillCsReq = 5860, - CmdHeliobusChallengeUpdateScNotify = 5821, - CmdHeliobusSnsUpdateScNotify = 5872, - CmdHeliobusSnsLikeCsReq = 5871, - CmdHeliobusUnlockSkillScNotify = 5883, - CmdHeliobusSnsCommentScRsp = 5856, - CmdHeliobusEnterBattleCsReq = 5833, - CmdHeliobusActivityDataScRsp = 5832, - CmdHeliobusStartRaidCsReq = 5877, - CmdHeliobusStartRaidScRsp = 5858, - CmdHeliobusLineupUpdateScNotify = 5829, - CmdHeliobusUpgradeLevelScRsp = 5846, - CmdHeliobusSnsReadScRsp = 5840, - CmdHeliobusSnsPostScRsp = 5848, - CmdHeliobusSnsPostCsReq = 5876, - CmdHeliobusSnsLikeScRsp = 5852, - CmdHeliobusSnsCommentCsReq = 5822, - CmdHeliobusSnsReadCsReq = 5831, - CmdHeliobusInfoChangedScNotify = 5885, - CmdHeliobusSelectSkillScRsp = 5802, - CmdHeliobusUpgradeLevelCsReq = 5816, - CmdHeliobusActivityDataCsReq = 5895, - CmdHeliobusEnterBattleScRsp = 5842, + CmdHeliobusSelectSkillScRsp = 5885, + CmdHeliobusSnsUpdateScNotify = 5880, + CmdHeliobusActivityDataCsReq = 5820, + CmdHeliobusSnsReadCsReq = 5867, + CmdHeliobusUpgradeLevelCsReq = 5805, + CmdHeliobusActivityDataScRsp = 5891, + CmdHeliobusUpgradeLevelScRsp = 5874, + CmdHeliobusLineupUpdateScNotify = 5806, + CmdHeliobusSnsPostCsReq = 5827, + CmdHeliobusSelectSkillCsReq = 5898, + CmdHeliobusUnlockSkillScNotify = 5873, + CmdHeliobusSnsLikeCsReq = 5870, + CmdHeliobusInfoChangedScNotify = 5802, + CmdHeliobusSnsCommentScRsp = 5877, + CmdHeliobusSnsPostScRsp = 5821, + CmdHeliobusEnterBattleScRsp = 5894, + CmdHeliobusChallengeUpdateScNotify = 5809, + CmdHeliobusStartRaidCsReq = 5836, + CmdHeliobusStartRaidScRsp = 5887, + CmdHeliobusEnterBattleCsReq = 5868, + CmdHeliobusSnsCommentCsReq = 5854, + CmdHeliobusSnsLikeScRsp = 5859, + CmdHeliobusSnsReadScRsp = 5839, } impl CmdHeliobusType { /// String value of the enum field names used in the ProtoBuf definition. @@ -51026,68 +53296,68 @@ impl CmdHeliobusType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdHeliobusTypeNone", + Self::CmdHeliobusSelectSkillScRsp => "CmdHeliobusSelectSkillScRsp", + Self::CmdHeliobusSnsUpdateScNotify => "CmdHeliobusSnsUpdateScNotify", + Self::CmdHeliobusActivityDataCsReq => "CmdHeliobusActivityDataCsReq", + Self::CmdHeliobusSnsReadCsReq => "CmdHeliobusSnsReadCsReq", + Self::CmdHeliobusUpgradeLevelCsReq => "CmdHeliobusUpgradeLevelCsReq", + Self::CmdHeliobusActivityDataScRsp => "CmdHeliobusActivityDataScRsp", + Self::CmdHeliobusUpgradeLevelScRsp => "CmdHeliobusUpgradeLevelScRsp", + Self::CmdHeliobusLineupUpdateScNotify => "CmdHeliobusLineupUpdateScNotify", + Self::CmdHeliobusSnsPostCsReq => "CmdHeliobusSnsPostCsReq", Self::CmdHeliobusSelectSkillCsReq => "CmdHeliobusSelectSkillCsReq", + Self::CmdHeliobusUnlockSkillScNotify => "CmdHeliobusUnlockSkillScNotify", + Self::CmdHeliobusSnsLikeCsReq => "CmdHeliobusSnsLikeCsReq", + Self::CmdHeliobusInfoChangedScNotify => "CmdHeliobusInfoChangedScNotify", + Self::CmdHeliobusSnsCommentScRsp => "CmdHeliobusSnsCommentScRsp", + Self::CmdHeliobusSnsPostScRsp => "CmdHeliobusSnsPostScRsp", + Self::CmdHeliobusEnterBattleScRsp => "CmdHeliobusEnterBattleScRsp", Self::CmdHeliobusChallengeUpdateScNotify => { "CmdHeliobusChallengeUpdateScNotify" } - Self::CmdHeliobusSnsUpdateScNotify => "CmdHeliobusSnsUpdateScNotify", - Self::CmdHeliobusSnsLikeCsReq => "CmdHeliobusSnsLikeCsReq", - Self::CmdHeliobusUnlockSkillScNotify => "CmdHeliobusUnlockSkillScNotify", - Self::CmdHeliobusSnsCommentScRsp => "CmdHeliobusSnsCommentScRsp", - Self::CmdHeliobusEnterBattleCsReq => "CmdHeliobusEnterBattleCsReq", - Self::CmdHeliobusActivityDataScRsp => "CmdHeliobusActivityDataScRsp", Self::CmdHeliobusStartRaidCsReq => "CmdHeliobusStartRaidCsReq", Self::CmdHeliobusStartRaidScRsp => "CmdHeliobusStartRaidScRsp", - Self::CmdHeliobusLineupUpdateScNotify => "CmdHeliobusLineupUpdateScNotify", - Self::CmdHeliobusUpgradeLevelScRsp => "CmdHeliobusUpgradeLevelScRsp", - Self::CmdHeliobusSnsReadScRsp => "CmdHeliobusSnsReadScRsp", - Self::CmdHeliobusSnsPostScRsp => "CmdHeliobusSnsPostScRsp", - Self::CmdHeliobusSnsPostCsReq => "CmdHeliobusSnsPostCsReq", - Self::CmdHeliobusSnsLikeScRsp => "CmdHeliobusSnsLikeScRsp", + Self::CmdHeliobusEnterBattleCsReq => "CmdHeliobusEnterBattleCsReq", Self::CmdHeliobusSnsCommentCsReq => "CmdHeliobusSnsCommentCsReq", - Self::CmdHeliobusSnsReadCsReq => "CmdHeliobusSnsReadCsReq", - Self::CmdHeliobusInfoChangedScNotify => "CmdHeliobusInfoChangedScNotify", - Self::CmdHeliobusSelectSkillScRsp => "CmdHeliobusSelectSkillScRsp", - Self::CmdHeliobusUpgradeLevelCsReq => "CmdHeliobusUpgradeLevelCsReq", - Self::CmdHeliobusActivityDataCsReq => "CmdHeliobusActivityDataCsReq", - Self::CmdHeliobusEnterBattleScRsp => "CmdHeliobusEnterBattleScRsp", + Self::CmdHeliobusSnsLikeScRsp => "CmdHeliobusSnsLikeScRsp", + Self::CmdHeliobusSnsReadScRsp => "CmdHeliobusSnsReadScRsp", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdHeliobusTypeNone" => Some(Self::None), - "CmdHeliobusSelectSkillCsReq" => Some(Self::CmdHeliobusSelectSkillCsReq), - "CmdHeliobusChallengeUpdateScNotify" => { - Some(Self::CmdHeliobusChallengeUpdateScNotify) - } + "CmdHeliobusSelectSkillScRsp" => Some(Self::CmdHeliobusSelectSkillScRsp), "CmdHeliobusSnsUpdateScNotify" => Some(Self::CmdHeliobusSnsUpdateScNotify), - "CmdHeliobusSnsLikeCsReq" => Some(Self::CmdHeliobusSnsLikeCsReq), - "CmdHeliobusUnlockSkillScNotify" => { - Some(Self::CmdHeliobusUnlockSkillScNotify) - } - "CmdHeliobusSnsCommentScRsp" => Some(Self::CmdHeliobusSnsCommentScRsp), - "CmdHeliobusEnterBattleCsReq" => Some(Self::CmdHeliobusEnterBattleCsReq), + "CmdHeliobusActivityDataCsReq" => Some(Self::CmdHeliobusActivityDataCsReq), + "CmdHeliobusSnsReadCsReq" => Some(Self::CmdHeliobusSnsReadCsReq), + "CmdHeliobusUpgradeLevelCsReq" => Some(Self::CmdHeliobusUpgradeLevelCsReq), "CmdHeliobusActivityDataScRsp" => Some(Self::CmdHeliobusActivityDataScRsp), - "CmdHeliobusStartRaidCsReq" => Some(Self::CmdHeliobusStartRaidCsReq), - "CmdHeliobusStartRaidScRsp" => Some(Self::CmdHeliobusStartRaidScRsp), + "CmdHeliobusUpgradeLevelScRsp" => Some(Self::CmdHeliobusUpgradeLevelScRsp), "CmdHeliobusLineupUpdateScNotify" => { Some(Self::CmdHeliobusLineupUpdateScNotify) } - "CmdHeliobusUpgradeLevelScRsp" => Some(Self::CmdHeliobusUpgradeLevelScRsp), - "CmdHeliobusSnsReadScRsp" => Some(Self::CmdHeliobusSnsReadScRsp), - "CmdHeliobusSnsPostScRsp" => Some(Self::CmdHeliobusSnsPostScRsp), "CmdHeliobusSnsPostCsReq" => Some(Self::CmdHeliobusSnsPostCsReq), - "CmdHeliobusSnsLikeScRsp" => Some(Self::CmdHeliobusSnsLikeScRsp), - "CmdHeliobusSnsCommentCsReq" => Some(Self::CmdHeliobusSnsCommentCsReq), - "CmdHeliobusSnsReadCsReq" => Some(Self::CmdHeliobusSnsReadCsReq), + "CmdHeliobusSelectSkillCsReq" => Some(Self::CmdHeliobusSelectSkillCsReq), + "CmdHeliobusUnlockSkillScNotify" => { + Some(Self::CmdHeliobusUnlockSkillScNotify) + } + "CmdHeliobusSnsLikeCsReq" => Some(Self::CmdHeliobusSnsLikeCsReq), "CmdHeliobusInfoChangedScNotify" => { Some(Self::CmdHeliobusInfoChangedScNotify) } - "CmdHeliobusSelectSkillScRsp" => Some(Self::CmdHeliobusSelectSkillScRsp), - "CmdHeliobusUpgradeLevelCsReq" => Some(Self::CmdHeliobusUpgradeLevelCsReq), - "CmdHeliobusActivityDataCsReq" => Some(Self::CmdHeliobusActivityDataCsReq), + "CmdHeliobusSnsCommentScRsp" => Some(Self::CmdHeliobusSnsCommentScRsp), + "CmdHeliobusSnsPostScRsp" => Some(Self::CmdHeliobusSnsPostScRsp), "CmdHeliobusEnterBattleScRsp" => Some(Self::CmdHeliobusEnterBattleScRsp), + "CmdHeliobusChallengeUpdateScNotify" => { + Some(Self::CmdHeliobusChallengeUpdateScNotify) + } + "CmdHeliobusStartRaidCsReq" => Some(Self::CmdHeliobusStartRaidCsReq), + "CmdHeliobusStartRaidScRsp" => Some(Self::CmdHeliobusStartRaidScRsp), + "CmdHeliobusEnterBattleCsReq" => Some(Self::CmdHeliobusEnterBattleCsReq), + "CmdHeliobusSnsCommentCsReq" => Some(Self::CmdHeliobusSnsCommentCsReq), + "CmdHeliobusSnsLikeScRsp" => Some(Self::CmdHeliobusSnsLikeScRsp), + "CmdHeliobusSnsReadScRsp" => Some(Self::CmdHeliobusSnsReadScRsp), _ => None, } } @@ -51098,66 +53368,66 @@ impl CmdHeliobusType { #[repr(i32)] pub enum CmdItemType { None = 0, - CmdComposeSelectedRelicScRsp = 529, - CmdSellItemScRsp = 533, - CmdGetMarkItemListScRsp = 575, - CmdDeleteRelicFilterPlanCsReq = 535, - CmdBatchRankUpEquipmentScRsp = 517, - CmdGetRelicFilterPlanCsReq = 600, - CmdRelicReforgeConfirmCsReq = 527, - CmdComposeLimitNumCompleteNotify = 525, - CmdRelicFilterPlanClearNameScNotify = 553, - CmdComposeSelectedRelicCsReq = 521, - CmdDestroyItemScRsp = 537, - CmdGetBagScRsp = 532, - CmdAddRelicFilterPlanScRsp = 599, - CmdComposeLimitNumUpdateNotify = 514, - CmdCancelMarkItemNotify = 524, - CmdGetRecyleTimeCsReq = 511, - CmdBatchRankUpEquipmentCsReq = 590, - CmdRechargeSuccNotify = 542, - CmdModifyRelicFilterPlanCsReq = 587, - CmdDestroyItemCsReq = 584, - CmdLockEquipmentCsReq = 576, - CmdExpUpRelicScRsp = 560, - CmdGetRecyleTimeScRsp = 593, - CmdGetRelicFilterPlanScRsp = 509, - CmdUseItemCsReq = 571, - CmdMarkItemScRsp = 591, - CmdExchangeHcoinCsReq = 577, - CmdRelicReforgeCsReq = 536, - CmdLockRelicScRsp = 539, - CmdRankUpEquipmentScRsp = 556, - CmdUseItemScRsp = 552, - CmdLockRelicCsReq = 502, - CmdGetBagCsReq = 595, - CmdSellItemCsReq = 543, - CmdExpUpEquipmentCsReq = 572, - CmdSetTurnFoodSwitchScRsp = 598, - CmdSyncTurnFoodNotify = 557, - CmdModifyRelicFilterPlanScRsp = 508, - CmdMarkRelicFilterPlanScRsp = 501, - CmdAddEquipmentScNotify = 563, - CmdExpUpEquipmentScRsp = 585, - CmdExchangeHcoinScRsp = 558, - CmdDiscardRelicScRsp = 545, - CmdGeneralVirtualItemDataNotify = 564, - CmdSetTurnFoodSwitchCsReq = 507, - CmdLockEquipmentScRsp = 548, - CmdRelicReforgeScRsp = 594, - CmdMarkItemCsReq = 551, - CmdComposeItemCsReq = 516, - CmdExpUpRelicCsReq = 583, - CmdRankUpEquipmentCsReq = 522, - CmdComposeItemScRsp = 546, - CmdPromoteEquipmentScRsp = 540, - CmdPromoteEquipmentCsReq = 531, - CmdRelicReforgeConfirmScRsp = 574, - CmdMarkRelicFilterPlanCsReq = 568, - CmdDiscardRelicCsReq = 506, - CmdDeleteRelicFilterPlanScRsp = 534, - CmdAddRelicFilterPlanCsReq = 554, - CmdGetMarkItemListCsReq = 530, + CmdRelicFilterPlanClearNameScNotify = 537, + CmdDeleteRelicFilterPlanCsReq = 557, + CmdRechargeSuccNotify = 594, + CmdBatchRankUpEquipmentScRsp = 548, + CmdLockEquipmentScRsp = 521, + CmdRelicReforgeConfirmCsReq = 553, + CmdSetTurnFoodSwitchScRsp = 540, + CmdComposeItemScRsp = 574, + CmdMarkRelicFilterPlanCsReq = 590, + CmdModifyRelicFilterPlanCsReq = 593, + CmdComposeLimitNumCompleteNotify = 541, + CmdAddRelicFilterPlanScRsp = 516, + CmdLockRelicCsReq = 585, + CmdMarkItemScRsp = 524, + CmdGeneralVirtualItemDataNotify = 518, + CmdUseItemCsReq = 570, + CmdMarkItemCsReq = 503, + CmdDestroyItemCsReq = 578, + CmdExchangeHcoinCsReq = 536, + CmdSyncTurnFoodNotify = 523, + CmdGetRecyleTimeCsReq = 544, + CmdCancelMarkItemNotify = 528, + CmdGetRelicFilterPlanScRsp = 560, + CmdSellItemCsReq = 552, + CmdComposeSelectedRelicScRsp = 506, + CmdAddRelicFilterPlanCsReq = 596, + CmdExpUpEquipmentScRsp = 502, + CmdExpUpRelicCsReq = 573, + CmdAddEquipmentScNotify = 531, + CmdPromoteEquipmentScRsp = 539, + CmdGetBagCsReq = 520, + CmdLockEquipmentCsReq = 527, + CmdMarkRelicFilterPlanScRsp = 589, + CmdExchangeHcoinScRsp = 587, + CmdPromoteEquipmentCsReq = 567, + CmdRelicReforgeCsReq = 572, + CmdDeleteRelicFilterPlanScRsp = 526, + CmdModifyRelicFilterPlanScRsp = 564, + CmdComposeLimitNumUpdateNotify = 584, + CmdDestroyItemScRsp = 534, + CmdSellItemScRsp = 568, + CmdRelicReforgeConfirmScRsp = 533, + CmdDiscardRelicCsReq = 547, + CmdComposeItemCsReq = 505, + CmdGetMarkItemListScRsp = 569, + CmdSetTurnFoodSwitchCsReq = 522, + CmdRelicReforgeScRsp = 535, + CmdGetRelicFilterPlanCsReq = 595, + CmdDiscardRelicScRsp = 519, + CmdRankUpEquipmentCsReq = 554, + CmdBatchRankUpEquipmentCsReq = 507, + CmdGetBagScRsp = 591, + CmdRankUpEquipmentScRsp = 577, + CmdExpUpEquipmentCsReq = 580, + CmdGetMarkItemListCsReq = 545, + CmdGetRecyleTimeScRsp = 549, + CmdComposeSelectedRelicCsReq = 509, + CmdLockRelicScRsp = 538, + CmdExpUpRelicScRsp = 598, + CmdUseItemScRsp = 559, } impl CmdItemType { /// String value of the enum field names used in the ProtoBuf definition. @@ -51167,142 +53437,142 @@ impl CmdItemType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdItemTypeNone", - Self::CmdComposeSelectedRelicScRsp => "CmdComposeSelectedRelicScRsp", - Self::CmdSellItemScRsp => "CmdSellItemScRsp", - Self::CmdGetMarkItemListScRsp => "CmdGetMarkItemListScRsp", - Self::CmdDeleteRelicFilterPlanCsReq => "CmdDeleteRelicFilterPlanCsReq", - Self::CmdBatchRankUpEquipmentScRsp => "CmdBatchRankUpEquipmentScRsp", - Self::CmdGetRelicFilterPlanCsReq => "CmdGetRelicFilterPlanCsReq", - Self::CmdRelicReforgeConfirmCsReq => "CmdRelicReforgeConfirmCsReq", - Self::CmdComposeLimitNumCompleteNotify => "CmdComposeLimitNumCompleteNotify", Self::CmdRelicFilterPlanClearNameScNotify => { "CmdRelicFilterPlanClearNameScNotify" } - Self::CmdComposeSelectedRelicCsReq => "CmdComposeSelectedRelicCsReq", - Self::CmdDestroyItemScRsp => "CmdDestroyItemScRsp", - Self::CmdGetBagScRsp => "CmdGetBagScRsp", - Self::CmdAddRelicFilterPlanScRsp => "CmdAddRelicFilterPlanScRsp", - Self::CmdComposeLimitNumUpdateNotify => "CmdComposeLimitNumUpdateNotify", - Self::CmdCancelMarkItemNotify => "CmdCancelMarkItemNotify", - Self::CmdGetRecyleTimeCsReq => "CmdGetRecyleTimeCsReq", - Self::CmdBatchRankUpEquipmentCsReq => "CmdBatchRankUpEquipmentCsReq", + Self::CmdDeleteRelicFilterPlanCsReq => "CmdDeleteRelicFilterPlanCsReq", Self::CmdRechargeSuccNotify => "CmdRechargeSuccNotify", - Self::CmdModifyRelicFilterPlanCsReq => "CmdModifyRelicFilterPlanCsReq", - Self::CmdDestroyItemCsReq => "CmdDestroyItemCsReq", - Self::CmdLockEquipmentCsReq => "CmdLockEquipmentCsReq", - Self::CmdExpUpRelicScRsp => "CmdExpUpRelicScRsp", - Self::CmdGetRecyleTimeScRsp => "CmdGetRecyleTimeScRsp", - Self::CmdGetRelicFilterPlanScRsp => "CmdGetRelicFilterPlanScRsp", - Self::CmdUseItemCsReq => "CmdUseItemCsReq", - Self::CmdMarkItemScRsp => "CmdMarkItemScRsp", - Self::CmdExchangeHcoinCsReq => "CmdExchangeHcoinCsReq", - Self::CmdRelicReforgeCsReq => "CmdRelicReforgeCsReq", - Self::CmdLockRelicScRsp => "CmdLockRelicScRsp", - Self::CmdRankUpEquipmentScRsp => "CmdRankUpEquipmentScRsp", - Self::CmdUseItemScRsp => "CmdUseItemScRsp", - Self::CmdLockRelicCsReq => "CmdLockRelicCsReq", - Self::CmdGetBagCsReq => "CmdGetBagCsReq", - Self::CmdSellItemCsReq => "CmdSellItemCsReq", - Self::CmdExpUpEquipmentCsReq => "CmdExpUpEquipmentCsReq", - Self::CmdSetTurnFoodSwitchScRsp => "CmdSetTurnFoodSwitchScRsp", - Self::CmdSyncTurnFoodNotify => "CmdSyncTurnFoodNotify", - Self::CmdModifyRelicFilterPlanScRsp => "CmdModifyRelicFilterPlanScRsp", - Self::CmdMarkRelicFilterPlanScRsp => "CmdMarkRelicFilterPlanScRsp", - Self::CmdAddEquipmentScNotify => "CmdAddEquipmentScNotify", - Self::CmdExpUpEquipmentScRsp => "CmdExpUpEquipmentScRsp", - Self::CmdExchangeHcoinScRsp => "CmdExchangeHcoinScRsp", - Self::CmdDiscardRelicScRsp => "CmdDiscardRelicScRsp", - Self::CmdGeneralVirtualItemDataNotify => "CmdGeneralVirtualItemDataNotify", - Self::CmdSetTurnFoodSwitchCsReq => "CmdSetTurnFoodSwitchCsReq", + Self::CmdBatchRankUpEquipmentScRsp => "CmdBatchRankUpEquipmentScRsp", Self::CmdLockEquipmentScRsp => "CmdLockEquipmentScRsp", - Self::CmdRelicReforgeScRsp => "CmdRelicReforgeScRsp", - Self::CmdMarkItemCsReq => "CmdMarkItemCsReq", - Self::CmdComposeItemCsReq => "CmdComposeItemCsReq", - Self::CmdExpUpRelicCsReq => "CmdExpUpRelicCsReq", - Self::CmdRankUpEquipmentCsReq => "CmdRankUpEquipmentCsReq", + Self::CmdRelicReforgeConfirmCsReq => "CmdRelicReforgeConfirmCsReq", + Self::CmdSetTurnFoodSwitchScRsp => "CmdSetTurnFoodSwitchScRsp", Self::CmdComposeItemScRsp => "CmdComposeItemScRsp", - Self::CmdPromoteEquipmentScRsp => "CmdPromoteEquipmentScRsp", - Self::CmdPromoteEquipmentCsReq => "CmdPromoteEquipmentCsReq", - Self::CmdRelicReforgeConfirmScRsp => "CmdRelicReforgeConfirmScRsp", Self::CmdMarkRelicFilterPlanCsReq => "CmdMarkRelicFilterPlanCsReq", - Self::CmdDiscardRelicCsReq => "CmdDiscardRelicCsReq", - Self::CmdDeleteRelicFilterPlanScRsp => "CmdDeleteRelicFilterPlanScRsp", + Self::CmdModifyRelicFilterPlanCsReq => "CmdModifyRelicFilterPlanCsReq", + Self::CmdComposeLimitNumCompleteNotify => "CmdComposeLimitNumCompleteNotify", + Self::CmdAddRelicFilterPlanScRsp => "CmdAddRelicFilterPlanScRsp", + Self::CmdLockRelicCsReq => "CmdLockRelicCsReq", + Self::CmdMarkItemScRsp => "CmdMarkItemScRsp", + Self::CmdGeneralVirtualItemDataNotify => "CmdGeneralVirtualItemDataNotify", + Self::CmdUseItemCsReq => "CmdUseItemCsReq", + Self::CmdMarkItemCsReq => "CmdMarkItemCsReq", + Self::CmdDestroyItemCsReq => "CmdDestroyItemCsReq", + Self::CmdExchangeHcoinCsReq => "CmdExchangeHcoinCsReq", + Self::CmdSyncTurnFoodNotify => "CmdSyncTurnFoodNotify", + Self::CmdGetRecyleTimeCsReq => "CmdGetRecyleTimeCsReq", + Self::CmdCancelMarkItemNotify => "CmdCancelMarkItemNotify", + Self::CmdGetRelicFilterPlanScRsp => "CmdGetRelicFilterPlanScRsp", + Self::CmdSellItemCsReq => "CmdSellItemCsReq", + Self::CmdComposeSelectedRelicScRsp => "CmdComposeSelectedRelicScRsp", Self::CmdAddRelicFilterPlanCsReq => "CmdAddRelicFilterPlanCsReq", + Self::CmdExpUpEquipmentScRsp => "CmdExpUpEquipmentScRsp", + Self::CmdExpUpRelicCsReq => "CmdExpUpRelicCsReq", + Self::CmdAddEquipmentScNotify => "CmdAddEquipmentScNotify", + Self::CmdPromoteEquipmentScRsp => "CmdPromoteEquipmentScRsp", + Self::CmdGetBagCsReq => "CmdGetBagCsReq", + Self::CmdLockEquipmentCsReq => "CmdLockEquipmentCsReq", + Self::CmdMarkRelicFilterPlanScRsp => "CmdMarkRelicFilterPlanScRsp", + Self::CmdExchangeHcoinScRsp => "CmdExchangeHcoinScRsp", + Self::CmdPromoteEquipmentCsReq => "CmdPromoteEquipmentCsReq", + Self::CmdRelicReforgeCsReq => "CmdRelicReforgeCsReq", + Self::CmdDeleteRelicFilterPlanScRsp => "CmdDeleteRelicFilterPlanScRsp", + Self::CmdModifyRelicFilterPlanScRsp => "CmdModifyRelicFilterPlanScRsp", + Self::CmdComposeLimitNumUpdateNotify => "CmdComposeLimitNumUpdateNotify", + Self::CmdDestroyItemScRsp => "CmdDestroyItemScRsp", + Self::CmdSellItemScRsp => "CmdSellItemScRsp", + Self::CmdRelicReforgeConfirmScRsp => "CmdRelicReforgeConfirmScRsp", + Self::CmdDiscardRelicCsReq => "CmdDiscardRelicCsReq", + Self::CmdComposeItemCsReq => "CmdComposeItemCsReq", + Self::CmdGetMarkItemListScRsp => "CmdGetMarkItemListScRsp", + Self::CmdSetTurnFoodSwitchCsReq => "CmdSetTurnFoodSwitchCsReq", + Self::CmdRelicReforgeScRsp => "CmdRelicReforgeScRsp", + Self::CmdGetRelicFilterPlanCsReq => "CmdGetRelicFilterPlanCsReq", + Self::CmdDiscardRelicScRsp => "CmdDiscardRelicScRsp", + Self::CmdRankUpEquipmentCsReq => "CmdRankUpEquipmentCsReq", + Self::CmdBatchRankUpEquipmentCsReq => "CmdBatchRankUpEquipmentCsReq", + Self::CmdGetBagScRsp => "CmdGetBagScRsp", + Self::CmdRankUpEquipmentScRsp => "CmdRankUpEquipmentScRsp", + Self::CmdExpUpEquipmentCsReq => "CmdExpUpEquipmentCsReq", Self::CmdGetMarkItemListCsReq => "CmdGetMarkItemListCsReq", + Self::CmdGetRecyleTimeScRsp => "CmdGetRecyleTimeScRsp", + Self::CmdComposeSelectedRelicCsReq => "CmdComposeSelectedRelicCsReq", + Self::CmdLockRelicScRsp => "CmdLockRelicScRsp", + Self::CmdExpUpRelicScRsp => "CmdExpUpRelicScRsp", + Self::CmdUseItemScRsp => "CmdUseItemScRsp", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdItemTypeNone" => Some(Self::None), - "CmdComposeSelectedRelicScRsp" => Some(Self::CmdComposeSelectedRelicScRsp), - "CmdSellItemScRsp" => Some(Self::CmdSellItemScRsp), - "CmdGetMarkItemListScRsp" => Some(Self::CmdGetMarkItemListScRsp), - "CmdDeleteRelicFilterPlanCsReq" => Some(Self::CmdDeleteRelicFilterPlanCsReq), - "CmdBatchRankUpEquipmentScRsp" => Some(Self::CmdBatchRankUpEquipmentScRsp), - "CmdGetRelicFilterPlanCsReq" => Some(Self::CmdGetRelicFilterPlanCsReq), - "CmdRelicReforgeConfirmCsReq" => Some(Self::CmdRelicReforgeConfirmCsReq), - "CmdComposeLimitNumCompleteNotify" => { - Some(Self::CmdComposeLimitNumCompleteNotify) - } "CmdRelicFilterPlanClearNameScNotify" => { Some(Self::CmdRelicFilterPlanClearNameScNotify) } - "CmdComposeSelectedRelicCsReq" => Some(Self::CmdComposeSelectedRelicCsReq), - "CmdDestroyItemScRsp" => Some(Self::CmdDestroyItemScRsp), - "CmdGetBagScRsp" => Some(Self::CmdGetBagScRsp), - "CmdAddRelicFilterPlanScRsp" => Some(Self::CmdAddRelicFilterPlanScRsp), - "CmdComposeLimitNumUpdateNotify" => { - Some(Self::CmdComposeLimitNumUpdateNotify) - } - "CmdCancelMarkItemNotify" => Some(Self::CmdCancelMarkItemNotify), - "CmdGetRecyleTimeCsReq" => Some(Self::CmdGetRecyleTimeCsReq), - "CmdBatchRankUpEquipmentCsReq" => Some(Self::CmdBatchRankUpEquipmentCsReq), + "CmdDeleteRelicFilterPlanCsReq" => Some(Self::CmdDeleteRelicFilterPlanCsReq), "CmdRechargeSuccNotify" => Some(Self::CmdRechargeSuccNotify), - "CmdModifyRelicFilterPlanCsReq" => Some(Self::CmdModifyRelicFilterPlanCsReq), - "CmdDestroyItemCsReq" => Some(Self::CmdDestroyItemCsReq), - "CmdLockEquipmentCsReq" => Some(Self::CmdLockEquipmentCsReq), - "CmdExpUpRelicScRsp" => Some(Self::CmdExpUpRelicScRsp), - "CmdGetRecyleTimeScRsp" => Some(Self::CmdGetRecyleTimeScRsp), - "CmdGetRelicFilterPlanScRsp" => Some(Self::CmdGetRelicFilterPlanScRsp), - "CmdUseItemCsReq" => Some(Self::CmdUseItemCsReq), - "CmdMarkItemScRsp" => Some(Self::CmdMarkItemScRsp), - "CmdExchangeHcoinCsReq" => Some(Self::CmdExchangeHcoinCsReq), - "CmdRelicReforgeCsReq" => Some(Self::CmdRelicReforgeCsReq), - "CmdLockRelicScRsp" => Some(Self::CmdLockRelicScRsp), - "CmdRankUpEquipmentScRsp" => Some(Self::CmdRankUpEquipmentScRsp), - "CmdUseItemScRsp" => Some(Self::CmdUseItemScRsp), - "CmdLockRelicCsReq" => Some(Self::CmdLockRelicCsReq), - "CmdGetBagCsReq" => Some(Self::CmdGetBagCsReq), - "CmdSellItemCsReq" => Some(Self::CmdSellItemCsReq), - "CmdExpUpEquipmentCsReq" => Some(Self::CmdExpUpEquipmentCsReq), + "CmdBatchRankUpEquipmentScRsp" => Some(Self::CmdBatchRankUpEquipmentScRsp), + "CmdLockEquipmentScRsp" => Some(Self::CmdLockEquipmentScRsp), + "CmdRelicReforgeConfirmCsReq" => Some(Self::CmdRelicReforgeConfirmCsReq), "CmdSetTurnFoodSwitchScRsp" => Some(Self::CmdSetTurnFoodSwitchScRsp), - "CmdSyncTurnFoodNotify" => Some(Self::CmdSyncTurnFoodNotify), - "CmdModifyRelicFilterPlanScRsp" => Some(Self::CmdModifyRelicFilterPlanScRsp), - "CmdMarkRelicFilterPlanScRsp" => Some(Self::CmdMarkRelicFilterPlanScRsp), - "CmdAddEquipmentScNotify" => Some(Self::CmdAddEquipmentScNotify), - "CmdExpUpEquipmentScRsp" => Some(Self::CmdExpUpEquipmentScRsp), - "CmdExchangeHcoinScRsp" => Some(Self::CmdExchangeHcoinScRsp), - "CmdDiscardRelicScRsp" => Some(Self::CmdDiscardRelicScRsp), + "CmdComposeItemScRsp" => Some(Self::CmdComposeItemScRsp), + "CmdMarkRelicFilterPlanCsReq" => Some(Self::CmdMarkRelicFilterPlanCsReq), + "CmdModifyRelicFilterPlanCsReq" => Some(Self::CmdModifyRelicFilterPlanCsReq), + "CmdComposeLimitNumCompleteNotify" => { + Some(Self::CmdComposeLimitNumCompleteNotify) + } + "CmdAddRelicFilterPlanScRsp" => Some(Self::CmdAddRelicFilterPlanScRsp), + "CmdLockRelicCsReq" => Some(Self::CmdLockRelicCsReq), + "CmdMarkItemScRsp" => Some(Self::CmdMarkItemScRsp), "CmdGeneralVirtualItemDataNotify" => { Some(Self::CmdGeneralVirtualItemDataNotify) } - "CmdSetTurnFoodSwitchCsReq" => Some(Self::CmdSetTurnFoodSwitchCsReq), - "CmdLockEquipmentScRsp" => Some(Self::CmdLockEquipmentScRsp), - "CmdRelicReforgeScRsp" => Some(Self::CmdRelicReforgeScRsp), + "CmdUseItemCsReq" => Some(Self::CmdUseItemCsReq), "CmdMarkItemCsReq" => Some(Self::CmdMarkItemCsReq), - "CmdComposeItemCsReq" => Some(Self::CmdComposeItemCsReq), - "CmdExpUpRelicCsReq" => Some(Self::CmdExpUpRelicCsReq), - "CmdRankUpEquipmentCsReq" => Some(Self::CmdRankUpEquipmentCsReq), - "CmdComposeItemScRsp" => Some(Self::CmdComposeItemScRsp), - "CmdPromoteEquipmentScRsp" => Some(Self::CmdPromoteEquipmentScRsp), - "CmdPromoteEquipmentCsReq" => Some(Self::CmdPromoteEquipmentCsReq), - "CmdRelicReforgeConfirmScRsp" => Some(Self::CmdRelicReforgeConfirmScRsp), - "CmdMarkRelicFilterPlanCsReq" => Some(Self::CmdMarkRelicFilterPlanCsReq), - "CmdDiscardRelicCsReq" => Some(Self::CmdDiscardRelicCsReq), - "CmdDeleteRelicFilterPlanScRsp" => Some(Self::CmdDeleteRelicFilterPlanScRsp), + "CmdDestroyItemCsReq" => Some(Self::CmdDestroyItemCsReq), + "CmdExchangeHcoinCsReq" => Some(Self::CmdExchangeHcoinCsReq), + "CmdSyncTurnFoodNotify" => Some(Self::CmdSyncTurnFoodNotify), + "CmdGetRecyleTimeCsReq" => Some(Self::CmdGetRecyleTimeCsReq), + "CmdCancelMarkItemNotify" => Some(Self::CmdCancelMarkItemNotify), + "CmdGetRelicFilterPlanScRsp" => Some(Self::CmdGetRelicFilterPlanScRsp), + "CmdSellItemCsReq" => Some(Self::CmdSellItemCsReq), + "CmdComposeSelectedRelicScRsp" => Some(Self::CmdComposeSelectedRelicScRsp), "CmdAddRelicFilterPlanCsReq" => Some(Self::CmdAddRelicFilterPlanCsReq), + "CmdExpUpEquipmentScRsp" => Some(Self::CmdExpUpEquipmentScRsp), + "CmdExpUpRelicCsReq" => Some(Self::CmdExpUpRelicCsReq), + "CmdAddEquipmentScNotify" => Some(Self::CmdAddEquipmentScNotify), + "CmdPromoteEquipmentScRsp" => Some(Self::CmdPromoteEquipmentScRsp), + "CmdGetBagCsReq" => Some(Self::CmdGetBagCsReq), + "CmdLockEquipmentCsReq" => Some(Self::CmdLockEquipmentCsReq), + "CmdMarkRelicFilterPlanScRsp" => Some(Self::CmdMarkRelicFilterPlanScRsp), + "CmdExchangeHcoinScRsp" => Some(Self::CmdExchangeHcoinScRsp), + "CmdPromoteEquipmentCsReq" => Some(Self::CmdPromoteEquipmentCsReq), + "CmdRelicReforgeCsReq" => Some(Self::CmdRelicReforgeCsReq), + "CmdDeleteRelicFilterPlanScRsp" => Some(Self::CmdDeleteRelicFilterPlanScRsp), + "CmdModifyRelicFilterPlanScRsp" => Some(Self::CmdModifyRelicFilterPlanScRsp), + "CmdComposeLimitNumUpdateNotify" => { + Some(Self::CmdComposeLimitNumUpdateNotify) + } + "CmdDestroyItemScRsp" => Some(Self::CmdDestroyItemScRsp), + "CmdSellItemScRsp" => Some(Self::CmdSellItemScRsp), + "CmdRelicReforgeConfirmScRsp" => Some(Self::CmdRelicReforgeConfirmScRsp), + "CmdDiscardRelicCsReq" => Some(Self::CmdDiscardRelicCsReq), + "CmdComposeItemCsReq" => Some(Self::CmdComposeItemCsReq), + "CmdGetMarkItemListScRsp" => Some(Self::CmdGetMarkItemListScRsp), + "CmdSetTurnFoodSwitchCsReq" => Some(Self::CmdSetTurnFoodSwitchCsReq), + "CmdRelicReforgeScRsp" => Some(Self::CmdRelicReforgeScRsp), + "CmdGetRelicFilterPlanCsReq" => Some(Self::CmdGetRelicFilterPlanCsReq), + "CmdDiscardRelicScRsp" => Some(Self::CmdDiscardRelicScRsp), + "CmdRankUpEquipmentCsReq" => Some(Self::CmdRankUpEquipmentCsReq), + "CmdBatchRankUpEquipmentCsReq" => Some(Self::CmdBatchRankUpEquipmentCsReq), + "CmdGetBagScRsp" => Some(Self::CmdGetBagScRsp), + "CmdRankUpEquipmentScRsp" => Some(Self::CmdRankUpEquipmentScRsp), + "CmdExpUpEquipmentCsReq" => Some(Self::CmdExpUpEquipmentCsReq), "CmdGetMarkItemListCsReq" => Some(Self::CmdGetMarkItemListCsReq), + "CmdGetRecyleTimeScRsp" => Some(Self::CmdGetRecyleTimeScRsp), + "CmdComposeSelectedRelicCsReq" => Some(Self::CmdComposeSelectedRelicCsReq), + "CmdLockRelicScRsp" => Some(Self::CmdLockRelicScRsp), + "CmdExpUpRelicScRsp" => Some(Self::CmdExpUpRelicScRsp), + "CmdUseItemScRsp" => Some(Self::CmdUseItemScRsp), _ => None, } } @@ -51373,14 +53643,14 @@ impl TurnFoodSwitch { #[repr(i32)] pub enum CmdJukeboxType { None = 0, - CmdPlayBackGroundMusicCsReq = 3131, - CmdGetJukeboxDataScRsp = 3132, - CmdPlayBackGroundMusicScRsp = 3140, - CmdUnlockBackGroundMusicCsReq = 3176, - CmdTrialBackGroundMusicScRsp = 3152, - CmdGetJukeboxDataCsReq = 3195, - CmdUnlockBackGroundMusicScRsp = 3148, - CmdTrialBackGroundMusicCsReq = 3171, + CmdUnlockBackGroundMusicScRsp = 3121, + CmdTrialBackGroundMusicCsReq = 3170, + CmdGetJukeboxDataScRsp = 3191, + CmdGetJukeboxDataCsReq = 3120, + CmdTrialBackGroundMusicScRsp = 3159, + CmdUnlockBackGroundMusicCsReq = 3127, + CmdPlayBackGroundMusicScRsp = 3139, + CmdPlayBackGroundMusicCsReq = 3167, } impl CmdJukeboxType { /// String value of the enum field names used in the ProtoBuf definition. @@ -51390,28 +53660,28 @@ impl CmdJukeboxType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdJukeboxTypeNone", - Self::CmdPlayBackGroundMusicCsReq => "CmdPlayBackGroundMusicCsReq", - Self::CmdGetJukeboxDataScRsp => "CmdGetJukeboxDataScRsp", - Self::CmdPlayBackGroundMusicScRsp => "CmdPlayBackGroundMusicScRsp", - Self::CmdUnlockBackGroundMusicCsReq => "CmdUnlockBackGroundMusicCsReq", - Self::CmdTrialBackGroundMusicScRsp => "CmdTrialBackGroundMusicScRsp", - Self::CmdGetJukeboxDataCsReq => "CmdGetJukeboxDataCsReq", Self::CmdUnlockBackGroundMusicScRsp => "CmdUnlockBackGroundMusicScRsp", Self::CmdTrialBackGroundMusicCsReq => "CmdTrialBackGroundMusicCsReq", + Self::CmdGetJukeboxDataScRsp => "CmdGetJukeboxDataScRsp", + Self::CmdGetJukeboxDataCsReq => "CmdGetJukeboxDataCsReq", + Self::CmdTrialBackGroundMusicScRsp => "CmdTrialBackGroundMusicScRsp", + Self::CmdUnlockBackGroundMusicCsReq => "CmdUnlockBackGroundMusicCsReq", + Self::CmdPlayBackGroundMusicScRsp => "CmdPlayBackGroundMusicScRsp", + Self::CmdPlayBackGroundMusicCsReq => "CmdPlayBackGroundMusicCsReq", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdJukeboxTypeNone" => Some(Self::None), - "CmdPlayBackGroundMusicCsReq" => Some(Self::CmdPlayBackGroundMusicCsReq), - "CmdGetJukeboxDataScRsp" => Some(Self::CmdGetJukeboxDataScRsp), - "CmdPlayBackGroundMusicScRsp" => Some(Self::CmdPlayBackGroundMusicScRsp), - "CmdUnlockBackGroundMusicCsReq" => Some(Self::CmdUnlockBackGroundMusicCsReq), - "CmdTrialBackGroundMusicScRsp" => Some(Self::CmdTrialBackGroundMusicScRsp), - "CmdGetJukeboxDataCsReq" => Some(Self::CmdGetJukeboxDataCsReq), "CmdUnlockBackGroundMusicScRsp" => Some(Self::CmdUnlockBackGroundMusicScRsp), "CmdTrialBackGroundMusicCsReq" => Some(Self::CmdTrialBackGroundMusicCsReq), + "CmdGetJukeboxDataScRsp" => Some(Self::CmdGetJukeboxDataScRsp), + "CmdGetJukeboxDataCsReq" => Some(Self::CmdGetJukeboxDataCsReq), + "CmdTrialBackGroundMusicScRsp" => Some(Self::CmdTrialBackGroundMusicScRsp), + "CmdUnlockBackGroundMusicCsReq" => Some(Self::CmdUnlockBackGroundMusicCsReq), + "CmdPlayBackGroundMusicScRsp" => Some(Self::CmdPlayBackGroundMusicScRsp), + "CmdPlayBackGroundMusicCsReq" => Some(Self::CmdPlayBackGroundMusicCsReq), _ => None, } } @@ -51422,32 +53692,32 @@ impl CmdJukeboxType { #[repr(i32)] pub enum CmdLineupType { None = 0, - CmdSwapLineupScRsp = 756, - CmdJoinLineupScRsp = 748, - CmdQuitLineupCsReq = 771, - CmdGetStageLineupScRsp = 732, - CmdGetCurLineupDataScRsp = 740, - CmdExtraLineupDestroyNotify = 729, - CmdGetLineupAvatarDataScRsp = 716, - CmdSwitchLineupIndexScRsp = 702, - CmdGetLineupAvatarDataCsReq = 785, - CmdSwitchLineupIndexCsReq = 760, - CmdGetStageLineupCsReq = 795, - CmdVirtualLineupDestroyNotify = 777, - CmdReplaceLineupScRsp = 721, - CmdChangeLineupLeaderScRsp = 783, - CmdSwapLineupCsReq = 722, - CmdGetAllLineupDataCsReq = 733, - CmdSyncLineupNotify = 772, - CmdVirtualLineupTrialAvatarChangeScNotify = 763, - CmdSetLineupNameScRsp = 743, - CmdReplaceLineupCsReq = 758, - CmdQuitLineupScRsp = 752, - CmdSetLineupNameCsReq = 739, - CmdJoinLineupCsReq = 776, - CmdGetCurLineupDataCsReq = 731, - CmdGetAllLineupDataScRsp = 742, - CmdChangeLineupLeaderCsReq = 746, + CmdReplaceLineupCsReq = 787, + CmdSwapLineupCsReq = 754, + CmdChangeLineupLeaderScRsp = 773, + CmdJoinLineupCsReq = 727, + CmdVirtualLineupDestroyNotify = 736, + CmdChangeLineupLeaderCsReq = 774, + CmdVirtualLineupTrialAvatarChangeScNotify = 731, + CmdSwapLineupScRsp = 777, + CmdGetCurLineupDataCsReq = 767, + CmdSwitchLineupIndexCsReq = 798, + CmdGetAllLineupDataCsReq = 768, + CmdGetLineupAvatarDataScRsp = 705, + CmdSwitchLineupIndexScRsp = 785, + CmdQuitLineupCsReq = 770, + CmdExtraLineupDestroyNotify = 706, + CmdQuitLineupScRsp = 759, + CmdGetLineupAvatarDataCsReq = 702, + CmdJoinLineupScRsp = 721, + CmdSyncLineupNotify = 780, + CmdGetStageLineupScRsp = 791, + CmdSetLineupNameScRsp = 752, + CmdGetCurLineupDataScRsp = 739, + CmdGetStageLineupCsReq = 720, + CmdReplaceLineupScRsp = 709, + CmdSetLineupNameCsReq = 738, + CmdGetAllLineupDataScRsp = 794, } impl CmdLineupType { /// String value of the enum field names used in the ProtoBuf definition. @@ -51457,68 +53727,68 @@ impl CmdLineupType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdLineupTypeNone", - Self::CmdSwapLineupScRsp => "CmdSwapLineupScRsp", - Self::CmdJoinLineupScRsp => "CmdJoinLineupScRsp", - Self::CmdQuitLineupCsReq => "CmdQuitLineupCsReq", - Self::CmdGetStageLineupScRsp => "CmdGetStageLineupScRsp", - Self::CmdGetCurLineupDataScRsp => "CmdGetCurLineupDataScRsp", - Self::CmdExtraLineupDestroyNotify => "CmdExtraLineupDestroyNotify", - Self::CmdGetLineupAvatarDataScRsp => "CmdGetLineupAvatarDataScRsp", - Self::CmdSwitchLineupIndexScRsp => "CmdSwitchLineupIndexScRsp", - Self::CmdGetLineupAvatarDataCsReq => "CmdGetLineupAvatarDataCsReq", - Self::CmdSwitchLineupIndexCsReq => "CmdSwitchLineupIndexCsReq", - Self::CmdGetStageLineupCsReq => "CmdGetStageLineupCsReq", - Self::CmdVirtualLineupDestroyNotify => "CmdVirtualLineupDestroyNotify", - Self::CmdReplaceLineupScRsp => "CmdReplaceLineupScRsp", - Self::CmdChangeLineupLeaderScRsp => "CmdChangeLineupLeaderScRsp", + Self::CmdReplaceLineupCsReq => "CmdReplaceLineupCsReq", Self::CmdSwapLineupCsReq => "CmdSwapLineupCsReq", - Self::CmdGetAllLineupDataCsReq => "CmdGetAllLineupDataCsReq", - Self::CmdSyncLineupNotify => "CmdSyncLineupNotify", + Self::CmdChangeLineupLeaderScRsp => "CmdChangeLineupLeaderScRsp", + Self::CmdJoinLineupCsReq => "CmdJoinLineupCsReq", + Self::CmdVirtualLineupDestroyNotify => "CmdVirtualLineupDestroyNotify", + Self::CmdChangeLineupLeaderCsReq => "CmdChangeLineupLeaderCsReq", Self::CmdVirtualLineupTrialAvatarChangeScNotify => { "CmdVirtualLineupTrialAvatarChangeScNotify" } - Self::CmdSetLineupNameScRsp => "CmdSetLineupNameScRsp", - Self::CmdReplaceLineupCsReq => "CmdReplaceLineupCsReq", - Self::CmdQuitLineupScRsp => "CmdQuitLineupScRsp", - Self::CmdSetLineupNameCsReq => "CmdSetLineupNameCsReq", - Self::CmdJoinLineupCsReq => "CmdJoinLineupCsReq", + Self::CmdSwapLineupScRsp => "CmdSwapLineupScRsp", Self::CmdGetCurLineupDataCsReq => "CmdGetCurLineupDataCsReq", + Self::CmdSwitchLineupIndexCsReq => "CmdSwitchLineupIndexCsReq", + Self::CmdGetAllLineupDataCsReq => "CmdGetAllLineupDataCsReq", + Self::CmdGetLineupAvatarDataScRsp => "CmdGetLineupAvatarDataScRsp", + Self::CmdSwitchLineupIndexScRsp => "CmdSwitchLineupIndexScRsp", + Self::CmdQuitLineupCsReq => "CmdQuitLineupCsReq", + Self::CmdExtraLineupDestroyNotify => "CmdExtraLineupDestroyNotify", + Self::CmdQuitLineupScRsp => "CmdQuitLineupScRsp", + Self::CmdGetLineupAvatarDataCsReq => "CmdGetLineupAvatarDataCsReq", + Self::CmdJoinLineupScRsp => "CmdJoinLineupScRsp", + Self::CmdSyncLineupNotify => "CmdSyncLineupNotify", + Self::CmdGetStageLineupScRsp => "CmdGetStageLineupScRsp", + Self::CmdSetLineupNameScRsp => "CmdSetLineupNameScRsp", + Self::CmdGetCurLineupDataScRsp => "CmdGetCurLineupDataScRsp", + Self::CmdGetStageLineupCsReq => "CmdGetStageLineupCsReq", + Self::CmdReplaceLineupScRsp => "CmdReplaceLineupScRsp", + Self::CmdSetLineupNameCsReq => "CmdSetLineupNameCsReq", Self::CmdGetAllLineupDataScRsp => "CmdGetAllLineupDataScRsp", - Self::CmdChangeLineupLeaderCsReq => "CmdChangeLineupLeaderCsReq", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdLineupTypeNone" => Some(Self::None), - "CmdSwapLineupScRsp" => Some(Self::CmdSwapLineupScRsp), - "CmdJoinLineupScRsp" => Some(Self::CmdJoinLineupScRsp), - "CmdQuitLineupCsReq" => Some(Self::CmdQuitLineupCsReq), - "CmdGetStageLineupScRsp" => Some(Self::CmdGetStageLineupScRsp), - "CmdGetCurLineupDataScRsp" => Some(Self::CmdGetCurLineupDataScRsp), - "CmdExtraLineupDestroyNotify" => Some(Self::CmdExtraLineupDestroyNotify), - "CmdGetLineupAvatarDataScRsp" => Some(Self::CmdGetLineupAvatarDataScRsp), - "CmdSwitchLineupIndexScRsp" => Some(Self::CmdSwitchLineupIndexScRsp), - "CmdGetLineupAvatarDataCsReq" => Some(Self::CmdGetLineupAvatarDataCsReq), - "CmdSwitchLineupIndexCsReq" => Some(Self::CmdSwitchLineupIndexCsReq), - "CmdGetStageLineupCsReq" => Some(Self::CmdGetStageLineupCsReq), - "CmdVirtualLineupDestroyNotify" => Some(Self::CmdVirtualLineupDestroyNotify), - "CmdReplaceLineupScRsp" => Some(Self::CmdReplaceLineupScRsp), - "CmdChangeLineupLeaderScRsp" => Some(Self::CmdChangeLineupLeaderScRsp), + "CmdReplaceLineupCsReq" => Some(Self::CmdReplaceLineupCsReq), "CmdSwapLineupCsReq" => Some(Self::CmdSwapLineupCsReq), - "CmdGetAllLineupDataCsReq" => Some(Self::CmdGetAllLineupDataCsReq), - "CmdSyncLineupNotify" => Some(Self::CmdSyncLineupNotify), + "CmdChangeLineupLeaderScRsp" => Some(Self::CmdChangeLineupLeaderScRsp), + "CmdJoinLineupCsReq" => Some(Self::CmdJoinLineupCsReq), + "CmdVirtualLineupDestroyNotify" => Some(Self::CmdVirtualLineupDestroyNotify), + "CmdChangeLineupLeaderCsReq" => Some(Self::CmdChangeLineupLeaderCsReq), "CmdVirtualLineupTrialAvatarChangeScNotify" => { Some(Self::CmdVirtualLineupTrialAvatarChangeScNotify) } - "CmdSetLineupNameScRsp" => Some(Self::CmdSetLineupNameScRsp), - "CmdReplaceLineupCsReq" => Some(Self::CmdReplaceLineupCsReq), - "CmdQuitLineupScRsp" => Some(Self::CmdQuitLineupScRsp), - "CmdSetLineupNameCsReq" => Some(Self::CmdSetLineupNameCsReq), - "CmdJoinLineupCsReq" => Some(Self::CmdJoinLineupCsReq), + "CmdSwapLineupScRsp" => Some(Self::CmdSwapLineupScRsp), "CmdGetCurLineupDataCsReq" => Some(Self::CmdGetCurLineupDataCsReq), + "CmdSwitchLineupIndexCsReq" => Some(Self::CmdSwitchLineupIndexCsReq), + "CmdGetAllLineupDataCsReq" => Some(Self::CmdGetAllLineupDataCsReq), + "CmdGetLineupAvatarDataScRsp" => Some(Self::CmdGetLineupAvatarDataScRsp), + "CmdSwitchLineupIndexScRsp" => Some(Self::CmdSwitchLineupIndexScRsp), + "CmdQuitLineupCsReq" => Some(Self::CmdQuitLineupCsReq), + "CmdExtraLineupDestroyNotify" => Some(Self::CmdExtraLineupDestroyNotify), + "CmdQuitLineupScRsp" => Some(Self::CmdQuitLineupScRsp), + "CmdGetLineupAvatarDataCsReq" => Some(Self::CmdGetLineupAvatarDataCsReq), + "CmdJoinLineupScRsp" => Some(Self::CmdJoinLineupScRsp), + "CmdSyncLineupNotify" => Some(Self::CmdSyncLineupNotify), + "CmdGetStageLineupScRsp" => Some(Self::CmdGetStageLineupScRsp), + "CmdSetLineupNameScRsp" => Some(Self::CmdSetLineupNameScRsp), + "CmdGetCurLineupDataScRsp" => Some(Self::CmdGetCurLineupDataScRsp), + "CmdGetStageLineupCsReq" => Some(Self::CmdGetStageLineupCsReq), + "CmdReplaceLineupScRsp" => Some(Self::CmdReplaceLineupScRsp), + "CmdSetLineupNameCsReq" => Some(Self::CmdSetLineupNameCsReq), "CmdGetAllLineupDataScRsp" => Some(Self::CmdGetAllLineupDataScRsp), - "CmdChangeLineupLeaderCsReq" => Some(Self::CmdChangeLineupLeaderCsReq), _ => None, } } @@ -51580,6 +53850,7 @@ pub enum ExtraLineupType { LineupRelicRogue = 15, LineupArcadeRogue = 16, LineupMagicRogue = 17, + LineupFate = 18, } impl ExtraLineupType { /// String value of the enum field names used in the ProtoBuf definition. @@ -51605,6 +53876,7 @@ impl ExtraLineupType { Self::LineupRelicRogue => "LINEUP_RELIC_ROGUE", Self::LineupArcadeRogue => "LINEUP_ARCADE_ROGUE", Self::LineupMagicRogue => "LINEUP_MAGIC_ROGUE", + Self::LineupFate => "LINEUP_FATE", } } /// Creates an enum from field names used in the ProtoBuf definition. @@ -51627,6 +53899,7 @@ impl ExtraLineupType { "LINEUP_RELIC_ROGUE" => Some(Self::LineupRelicRogue), "LINEUP_ARCADE_ROGUE" => Some(Self::LineupArcadeRogue), "LINEUP_MAGIC_ROGUE" => Some(Self::LineupMagicRogue), + "LINEUP_FATE" => Some(Self::LineupFate), _ => None, } } @@ -51640,6 +53913,8 @@ pub enum SyncReason { MpAddPropHit = 2, HpAdd = 3, HpAddPropHit = 4, + MpMaxChangedPermanent = 5, + MpMaxChangedByModifier = 6, } impl SyncReason { /// String value of the enum field names used in the ProtoBuf definition. @@ -51653,6 +53928,8 @@ impl SyncReason { Self::MpAddPropHit => "SYNC_REASON_MP_ADD_PROP_HIT", Self::HpAdd => "SYNC_REASON_HP_ADD", Self::HpAddPropHit => "SYNC_REASON_HP_ADD_PROP_HIT", + Self::MpMaxChangedPermanent => "SYNC_REASON_MP_MAX_CHANGED_PERMANENT", + Self::MpMaxChangedByModifier => "SYNC_REASON_MP_MAX_CHANGED_BY_MODIFIER", } } /// Creates an enum from field names used in the ProtoBuf definition. @@ -51663,6 +53940,10 @@ impl SyncReason { "SYNC_REASON_MP_ADD_PROP_HIT" => Some(Self::MpAddPropHit), "SYNC_REASON_HP_ADD" => Some(Self::HpAdd), "SYNC_REASON_HP_ADD_PROP_HIT" => Some(Self::HpAddPropHit), + "SYNC_REASON_MP_MAX_CHANGED_PERMANENT" => Some(Self::MpMaxChangedPermanent), + "SYNC_REASON_MP_MAX_CHANGED_BY_MODIFIER" => { + Some(Self::MpMaxChangedByModifier) + } _ => None, } } @@ -51673,27 +53954,27 @@ impl SyncReason { #[repr(i32)] pub enum CmdLobbyType { None = 0, - CmdLobbyInviteCsReq = 7357, + CmdLobbyCreateCsReq = 7399, + CmdLobbyStartFightCsReq = 7361, + CmdLobbyInteractCsReq = 7375, + CmdLobbyKickOutCsReq = 7362, + CmdLobbyGetInfoCsReq = 7396, + CmdLobbyJoinScRsp = 7386, + CmdLobbyInviteScRsp = 7378, CmdLobbySyncInfoScNotify = 7395, - CmdLobbyJoinCsReq = 7352, - CmdLobbyStartFightCsReq = 7386, - CmdLobbyInteractCsReq = 7376, - CmdLobbyKickOutCsReq = 7393, - CmdLobbyStartFightScRsp = 7367, - CmdLobbyJoinScRsp = 7387, - CmdLobbyGetInfoCsReq = 7382, - CmdLobbyGetInfoScRsp = 7373, - CmdLobbyKickOutScRsp = 7359, - CmdLobbyQuitCsReq = 7390, - CmdLobbyCreateCsReq = 7354, - CmdLobbyModifyPlayerInfoCsReq = 7377, - CmdLobbyInteractScRsp = 7372, - CmdLobbyInviteScRsp = 7400, - CmdLobbyInviteScNotify = 7394, - CmdLobbyQuitScRsp = 7370, - CmdLobbyCreateScRsp = 7396, - CmdLobbyModifyPlayerInfoScRsp = 7365, - CmdLobbyInteractScNotify = 7366, + CmdLobbyGetInfoScRsp = 7372, + CmdLobbyInteractScRsp = 7393, + CmdLobbyInviteScNotify = 7384, + CmdLobbyQuitCsReq = 7369, + CmdLobbyModifyPlayerInfoCsReq = 7367, + CmdLobbyQuitScRsp = 7376, + CmdLobbyInteractScNotify = 7380, + CmdLobbyCreateScRsp = 7377, + CmdLobbyKickOutScRsp = 7360, + CmdLobbyModifyPlayerInfoScRsp = 7389, + CmdLobbyInviteCsReq = 7356, + CmdLobbyStartFightScRsp = 7387, + CmdLobbyJoinCsReq = 7368, } impl CmdLobbyType { /// String value of the enum field names used in the ProtoBuf definition. @@ -51703,54 +53984,54 @@ impl CmdLobbyType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdLobbyTypeNone", - Self::CmdLobbyInviteCsReq => "CmdLobbyInviteCsReq", - Self::CmdLobbySyncInfoScNotify => "CmdLobbySyncInfoScNotify", - Self::CmdLobbyJoinCsReq => "CmdLobbyJoinCsReq", + Self::CmdLobbyCreateCsReq => "CmdLobbyCreateCsReq", Self::CmdLobbyStartFightCsReq => "CmdLobbyStartFightCsReq", Self::CmdLobbyInteractCsReq => "CmdLobbyInteractCsReq", Self::CmdLobbyKickOutCsReq => "CmdLobbyKickOutCsReq", - Self::CmdLobbyStartFightScRsp => "CmdLobbyStartFightScRsp", - Self::CmdLobbyJoinScRsp => "CmdLobbyJoinScRsp", Self::CmdLobbyGetInfoCsReq => "CmdLobbyGetInfoCsReq", - Self::CmdLobbyGetInfoScRsp => "CmdLobbyGetInfoScRsp", - Self::CmdLobbyKickOutScRsp => "CmdLobbyKickOutScRsp", - Self::CmdLobbyQuitCsReq => "CmdLobbyQuitCsReq", - Self::CmdLobbyCreateCsReq => "CmdLobbyCreateCsReq", - Self::CmdLobbyModifyPlayerInfoCsReq => "CmdLobbyModifyPlayerInfoCsReq", - Self::CmdLobbyInteractScRsp => "CmdLobbyInteractScRsp", + Self::CmdLobbyJoinScRsp => "CmdLobbyJoinScRsp", Self::CmdLobbyInviteScRsp => "CmdLobbyInviteScRsp", + Self::CmdLobbySyncInfoScNotify => "CmdLobbySyncInfoScNotify", + Self::CmdLobbyGetInfoScRsp => "CmdLobbyGetInfoScRsp", + Self::CmdLobbyInteractScRsp => "CmdLobbyInteractScRsp", Self::CmdLobbyInviteScNotify => "CmdLobbyInviteScNotify", + Self::CmdLobbyQuitCsReq => "CmdLobbyQuitCsReq", + Self::CmdLobbyModifyPlayerInfoCsReq => "CmdLobbyModifyPlayerInfoCsReq", Self::CmdLobbyQuitScRsp => "CmdLobbyQuitScRsp", - Self::CmdLobbyCreateScRsp => "CmdLobbyCreateScRsp", - Self::CmdLobbyModifyPlayerInfoScRsp => "CmdLobbyModifyPlayerInfoScRsp", Self::CmdLobbyInteractScNotify => "CmdLobbyInteractScNotify", + Self::CmdLobbyCreateScRsp => "CmdLobbyCreateScRsp", + Self::CmdLobbyKickOutScRsp => "CmdLobbyKickOutScRsp", + Self::CmdLobbyModifyPlayerInfoScRsp => "CmdLobbyModifyPlayerInfoScRsp", + Self::CmdLobbyInviteCsReq => "CmdLobbyInviteCsReq", + Self::CmdLobbyStartFightScRsp => "CmdLobbyStartFightScRsp", + Self::CmdLobbyJoinCsReq => "CmdLobbyJoinCsReq", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdLobbyTypeNone" => Some(Self::None), - "CmdLobbyInviteCsReq" => Some(Self::CmdLobbyInviteCsReq), - "CmdLobbySyncInfoScNotify" => Some(Self::CmdLobbySyncInfoScNotify), - "CmdLobbyJoinCsReq" => Some(Self::CmdLobbyJoinCsReq), + "CmdLobbyCreateCsReq" => Some(Self::CmdLobbyCreateCsReq), "CmdLobbyStartFightCsReq" => Some(Self::CmdLobbyStartFightCsReq), "CmdLobbyInteractCsReq" => Some(Self::CmdLobbyInteractCsReq), "CmdLobbyKickOutCsReq" => Some(Self::CmdLobbyKickOutCsReq), - "CmdLobbyStartFightScRsp" => Some(Self::CmdLobbyStartFightScRsp), - "CmdLobbyJoinScRsp" => Some(Self::CmdLobbyJoinScRsp), "CmdLobbyGetInfoCsReq" => Some(Self::CmdLobbyGetInfoCsReq), - "CmdLobbyGetInfoScRsp" => Some(Self::CmdLobbyGetInfoScRsp), - "CmdLobbyKickOutScRsp" => Some(Self::CmdLobbyKickOutScRsp), - "CmdLobbyQuitCsReq" => Some(Self::CmdLobbyQuitCsReq), - "CmdLobbyCreateCsReq" => Some(Self::CmdLobbyCreateCsReq), - "CmdLobbyModifyPlayerInfoCsReq" => Some(Self::CmdLobbyModifyPlayerInfoCsReq), - "CmdLobbyInteractScRsp" => Some(Self::CmdLobbyInteractScRsp), + "CmdLobbyJoinScRsp" => Some(Self::CmdLobbyJoinScRsp), "CmdLobbyInviteScRsp" => Some(Self::CmdLobbyInviteScRsp), + "CmdLobbySyncInfoScNotify" => Some(Self::CmdLobbySyncInfoScNotify), + "CmdLobbyGetInfoScRsp" => Some(Self::CmdLobbyGetInfoScRsp), + "CmdLobbyInteractScRsp" => Some(Self::CmdLobbyInteractScRsp), "CmdLobbyInviteScNotify" => Some(Self::CmdLobbyInviteScNotify), + "CmdLobbyQuitCsReq" => Some(Self::CmdLobbyQuitCsReq), + "CmdLobbyModifyPlayerInfoCsReq" => Some(Self::CmdLobbyModifyPlayerInfoCsReq), "CmdLobbyQuitScRsp" => Some(Self::CmdLobbyQuitScRsp), - "CmdLobbyCreateScRsp" => Some(Self::CmdLobbyCreateScRsp), - "CmdLobbyModifyPlayerInfoScRsp" => Some(Self::CmdLobbyModifyPlayerInfoScRsp), "CmdLobbyInteractScNotify" => Some(Self::CmdLobbyInteractScNotify), + "CmdLobbyCreateScRsp" => Some(Self::CmdLobbyCreateScRsp), + "CmdLobbyKickOutScRsp" => Some(Self::CmdLobbyKickOutScRsp), + "CmdLobbyModifyPlayerInfoScRsp" => Some(Self::CmdLobbyModifyPlayerInfoScRsp), + "CmdLobbyInviteCsReq" => Some(Self::CmdLobbyInviteCsReq), + "CmdLobbyStartFightScRsp" => Some(Self::CmdLobbyStartFightScRsp), + "CmdLobbyJoinCsReq" => Some(Self::CmdLobbyJoinCsReq), _ => None, } } @@ -51761,15 +54042,15 @@ impl CmdLobbyType { #[repr(i32)] pub enum CmdMailType { None = 0, - CmdMarkReadMailCsReq = 831, - CmdMarkReadMailScRsp = 840, - CmdDelMailScRsp = 848, - CmdTakeMailAttachmentScRsp = 852, - CmdNewMailScNotify = 822, - CmdGetMailScRsp = 832, - CmdGetMailCsReq = 895, - CmdDelMailCsReq = 876, - CmdTakeMailAttachmentCsReq = 871, + CmdGetMailScRsp = 891, + CmdDelMailScRsp = 821, + CmdDelMailCsReq = 827, + CmdTakeMailAttachmentScRsp = 859, + CmdGetMailCsReq = 820, + CmdNewMailScNotify = 854, + CmdMarkReadMailScRsp = 839, + CmdTakeMailAttachmentCsReq = 870, + CmdMarkReadMailCsReq = 867, } impl CmdMailType { /// String value of the enum field names used in the ProtoBuf definition. @@ -51779,30 +54060,30 @@ impl CmdMailType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdMailTypeNone", - Self::CmdMarkReadMailCsReq => "CmdMarkReadMailCsReq", - Self::CmdMarkReadMailScRsp => "CmdMarkReadMailScRsp", - Self::CmdDelMailScRsp => "CmdDelMailScRsp", - Self::CmdTakeMailAttachmentScRsp => "CmdTakeMailAttachmentScRsp", - Self::CmdNewMailScNotify => "CmdNewMailScNotify", Self::CmdGetMailScRsp => "CmdGetMailScRsp", - Self::CmdGetMailCsReq => "CmdGetMailCsReq", + Self::CmdDelMailScRsp => "CmdDelMailScRsp", Self::CmdDelMailCsReq => "CmdDelMailCsReq", + Self::CmdTakeMailAttachmentScRsp => "CmdTakeMailAttachmentScRsp", + Self::CmdGetMailCsReq => "CmdGetMailCsReq", + Self::CmdNewMailScNotify => "CmdNewMailScNotify", + Self::CmdMarkReadMailScRsp => "CmdMarkReadMailScRsp", Self::CmdTakeMailAttachmentCsReq => "CmdTakeMailAttachmentCsReq", + Self::CmdMarkReadMailCsReq => "CmdMarkReadMailCsReq", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdMailTypeNone" => Some(Self::None), - "CmdMarkReadMailCsReq" => Some(Self::CmdMarkReadMailCsReq), - "CmdMarkReadMailScRsp" => Some(Self::CmdMarkReadMailScRsp), - "CmdDelMailScRsp" => Some(Self::CmdDelMailScRsp), - "CmdTakeMailAttachmentScRsp" => Some(Self::CmdTakeMailAttachmentScRsp), - "CmdNewMailScNotify" => Some(Self::CmdNewMailScNotify), "CmdGetMailScRsp" => Some(Self::CmdGetMailScRsp), - "CmdGetMailCsReq" => Some(Self::CmdGetMailCsReq), + "CmdDelMailScRsp" => Some(Self::CmdDelMailScRsp), "CmdDelMailCsReq" => Some(Self::CmdDelMailCsReq), + "CmdTakeMailAttachmentScRsp" => Some(Self::CmdTakeMailAttachmentScRsp), + "CmdGetMailCsReq" => Some(Self::CmdGetMailCsReq), + "CmdNewMailScNotify" => Some(Self::CmdNewMailScNotify), + "CmdMarkReadMailScRsp" => Some(Self::CmdMarkReadMailScRsp), "CmdTakeMailAttachmentCsReq" => Some(Self::CmdTakeMailAttachmentCsReq), + "CmdMarkReadMailCsReq" => Some(Self::CmdMarkReadMailCsReq), _ => None, } } @@ -51840,26 +54121,26 @@ impl MailType { #[repr(i32)] pub enum CmdMapRotationType { None = 0, - CmdGetMapRotationDataCsReq = 6872, - CmdDeployRotaterScRsp = 6848, - CmdLeaveMapRotationRegionScNotify = 6883, - CmdEnterMapRotationRegionCsReq = 6895, - CmdResetMapRotationRegionCsReq = 6816, - CmdGetMapRotationDataScRsp = 6885, - CmdRotateMapScRsp = 6852, - CmdEnterMapRotationRegionScRsp = 6832, - CmdLeaveMapRotationRegionCsReq = 6822, - CmdLeaveMapRotationRegionScRsp = 6856, - CmdUpdateRotaterScNotify = 6833, - CmdRotateMapCsReq = 6871, - CmdResetMapRotationRegionScRsp = 6846, - CmdInteractChargerCsReq = 6831, - CmdUpdateEnergyScNotify = 6860, - CmdRemoveRotaterCsReq = 6839, - CmdUpdateMapRotationDataScNotify = 6802, - CmdDeployRotaterCsReq = 6876, - CmdInteractChargerScRsp = 6840, - CmdRemoveRotaterScRsp = 6843, + CmdInteractChargerScRsp = 6839, + CmdLeaveMapRotationRegionScNotify = 6873, + CmdResetMapRotationRegionCsReq = 6805, + CmdRemoveRotaterScRsp = 6852, + CmdEnterMapRotationRegionCsReq = 6820, + CmdUpdateRotaterScNotify = 6868, + CmdGetMapRotationDataCsReq = 6880, + CmdGetMapRotationDataScRsp = 6802, + CmdInteractChargerCsReq = 6867, + CmdResetMapRotationRegionScRsp = 6874, + CmdDeployRotaterCsReq = 6827, + CmdRemoveRotaterCsReq = 6838, + CmdUpdateEnergyScNotify = 6898, + CmdUpdateMapRotationDataScNotify = 6885, + CmdLeaveMapRotationRegionCsReq = 6854, + CmdLeaveMapRotationRegionScRsp = 6877, + CmdEnterMapRotationRegionScRsp = 6891, + CmdRotateMapCsReq = 6870, + CmdRotateMapScRsp = 6859, + CmdDeployRotaterScRsp = 6821, } impl CmdMapRotationType { /// String value of the enum field names used in the ProtoBuf definition. @@ -51869,49 +54150,57 @@ impl CmdMapRotationType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdMapRotationTypeNone", - Self::CmdGetMapRotationDataCsReq => "CmdGetMapRotationDataCsReq", - Self::CmdDeployRotaterScRsp => "CmdDeployRotaterScRsp", + Self::CmdInteractChargerScRsp => "CmdInteractChargerScRsp", Self::CmdLeaveMapRotationRegionScNotify => { "CmdLeaveMapRotationRegionScNotify" } - Self::CmdEnterMapRotationRegionCsReq => "CmdEnterMapRotationRegionCsReq", Self::CmdResetMapRotationRegionCsReq => "CmdResetMapRotationRegionCsReq", + Self::CmdRemoveRotaterScRsp => "CmdRemoveRotaterScRsp", + Self::CmdEnterMapRotationRegionCsReq => "CmdEnterMapRotationRegionCsReq", + Self::CmdUpdateRotaterScNotify => "CmdUpdateRotaterScNotify", + Self::CmdGetMapRotationDataCsReq => "CmdGetMapRotationDataCsReq", Self::CmdGetMapRotationDataScRsp => "CmdGetMapRotationDataScRsp", - Self::CmdRotateMapScRsp => "CmdRotateMapScRsp", - Self::CmdEnterMapRotationRegionScRsp => "CmdEnterMapRotationRegionScRsp", + Self::CmdInteractChargerCsReq => "CmdInteractChargerCsReq", + Self::CmdResetMapRotationRegionScRsp => "CmdResetMapRotationRegionScRsp", + Self::CmdDeployRotaterCsReq => "CmdDeployRotaterCsReq", + Self::CmdRemoveRotaterCsReq => "CmdRemoveRotaterCsReq", + Self::CmdUpdateEnergyScNotify => "CmdUpdateEnergyScNotify", + Self::CmdUpdateMapRotationDataScNotify => "CmdUpdateMapRotationDataScNotify", Self::CmdLeaveMapRotationRegionCsReq => "CmdLeaveMapRotationRegionCsReq", Self::CmdLeaveMapRotationRegionScRsp => "CmdLeaveMapRotationRegionScRsp", - Self::CmdUpdateRotaterScNotify => "CmdUpdateRotaterScNotify", + Self::CmdEnterMapRotationRegionScRsp => "CmdEnterMapRotationRegionScRsp", Self::CmdRotateMapCsReq => "CmdRotateMapCsReq", - Self::CmdResetMapRotationRegionScRsp => "CmdResetMapRotationRegionScRsp", - Self::CmdInteractChargerCsReq => "CmdInteractChargerCsReq", - Self::CmdUpdateEnergyScNotify => "CmdUpdateEnergyScNotify", - Self::CmdRemoveRotaterCsReq => "CmdRemoveRotaterCsReq", - Self::CmdUpdateMapRotationDataScNotify => "CmdUpdateMapRotationDataScNotify", - Self::CmdDeployRotaterCsReq => "CmdDeployRotaterCsReq", - Self::CmdInteractChargerScRsp => "CmdInteractChargerScRsp", - Self::CmdRemoveRotaterScRsp => "CmdRemoveRotaterScRsp", + Self::CmdRotateMapScRsp => "CmdRotateMapScRsp", + Self::CmdDeployRotaterScRsp => "CmdDeployRotaterScRsp", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdMapRotationTypeNone" => Some(Self::None), - "CmdGetMapRotationDataCsReq" => Some(Self::CmdGetMapRotationDataCsReq), - "CmdDeployRotaterScRsp" => Some(Self::CmdDeployRotaterScRsp), + "CmdInteractChargerScRsp" => Some(Self::CmdInteractChargerScRsp), "CmdLeaveMapRotationRegionScNotify" => { Some(Self::CmdLeaveMapRotationRegionScNotify) } - "CmdEnterMapRotationRegionCsReq" => { - Some(Self::CmdEnterMapRotationRegionCsReq) - } "CmdResetMapRotationRegionCsReq" => { Some(Self::CmdResetMapRotationRegionCsReq) } + "CmdRemoveRotaterScRsp" => Some(Self::CmdRemoveRotaterScRsp), + "CmdEnterMapRotationRegionCsReq" => { + Some(Self::CmdEnterMapRotationRegionCsReq) + } + "CmdUpdateRotaterScNotify" => Some(Self::CmdUpdateRotaterScNotify), + "CmdGetMapRotationDataCsReq" => Some(Self::CmdGetMapRotationDataCsReq), "CmdGetMapRotationDataScRsp" => Some(Self::CmdGetMapRotationDataScRsp), - "CmdRotateMapScRsp" => Some(Self::CmdRotateMapScRsp), - "CmdEnterMapRotationRegionScRsp" => { - Some(Self::CmdEnterMapRotationRegionScRsp) + "CmdInteractChargerCsReq" => Some(Self::CmdInteractChargerCsReq), + "CmdResetMapRotationRegionScRsp" => { + Some(Self::CmdResetMapRotationRegionScRsp) + } + "CmdDeployRotaterCsReq" => Some(Self::CmdDeployRotaterCsReq), + "CmdRemoveRotaterCsReq" => Some(Self::CmdRemoveRotaterCsReq), + "CmdUpdateEnergyScNotify" => Some(Self::CmdUpdateEnergyScNotify), + "CmdUpdateMapRotationDataScNotify" => { + Some(Self::CmdUpdateMapRotationDataScNotify) } "CmdLeaveMapRotationRegionCsReq" => { Some(Self::CmdLeaveMapRotationRegionCsReq) @@ -51919,20 +54208,12 @@ impl CmdMapRotationType { "CmdLeaveMapRotationRegionScRsp" => { Some(Self::CmdLeaveMapRotationRegionScRsp) } - "CmdUpdateRotaterScNotify" => Some(Self::CmdUpdateRotaterScNotify), + "CmdEnterMapRotationRegionScRsp" => { + Some(Self::CmdEnterMapRotationRegionScRsp) + } "CmdRotateMapCsReq" => Some(Self::CmdRotateMapCsReq), - "CmdResetMapRotationRegionScRsp" => { - Some(Self::CmdResetMapRotationRegionScRsp) - } - "CmdInteractChargerCsReq" => Some(Self::CmdInteractChargerCsReq), - "CmdUpdateEnergyScNotify" => Some(Self::CmdUpdateEnergyScNotify), - "CmdRemoveRotaterCsReq" => Some(Self::CmdRemoveRotaterCsReq), - "CmdUpdateMapRotationDataScNotify" => { - Some(Self::CmdUpdateMapRotationDataScNotify) - } - "CmdDeployRotaterCsReq" => Some(Self::CmdDeployRotaterCsReq), - "CmdInteractChargerScRsp" => Some(Self::CmdInteractChargerScRsp), - "CmdRemoveRotaterScRsp" => Some(Self::CmdRemoveRotaterScRsp), + "CmdRotateMapScRsp" => Some(Self::CmdRotateMapScRsp), + "CmdDeployRotaterScRsp" => Some(Self::CmdDeployRotaterScRsp), _ => None, } } @@ -51943,16 +54224,16 @@ impl CmdMapRotationType { #[repr(i32)] pub enum CmdMarbleType { None = 0, - CmdMarbleUpdateShownSealCsReq = 8277, - CmdMarbleGetDataScRsp = 8283, - CmdMarbleLevelFinishCsReq = 8278, - CmdMarbleUpdateShownSealScRsp = 8273, - CmdMarbleLevelFinishScRsp = 8280, - CmdMarblePvpDataUpdateScNotify = 8279, - CmdMarbleUnlockSealScNotify = 8290, - CmdMarbleShopBuyCsReq = 8274, - CmdMarbleShopBuyScRsp = 8272, - CmdMarbleGetDataCsReq = 8284, + CmdMarbleLevelFinishScRsp = 8286, + CmdMarbleUpdateShownSealCsReq = 8284, + CmdMarbleShopBuyScRsp = 8281, + CmdMarbleGetDataCsReq = 8288, + CmdMarblePvpDataUpdateScNotify = 8273, + CmdMarbleUnlockSealScNotify = 8275, + CmdMarbleUpdateShownSealScRsp = 8289, + CmdMarbleGetDataScRsp = 8279, + CmdMarbleLevelFinishCsReq = 8280, + CmdMarbleShopBuyCsReq = 8277, } impl CmdMarbleType { /// String value of the enum field names used in the ProtoBuf definition. @@ -51962,34 +54243,34 @@ impl CmdMarbleType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdMarbleTypeNone", - Self::CmdMarbleUpdateShownSealCsReq => "CmdMarbleUpdateShownSealCsReq", - Self::CmdMarbleGetDataScRsp => "CmdMarbleGetDataScRsp", - Self::CmdMarbleLevelFinishCsReq => "CmdMarbleLevelFinishCsReq", - Self::CmdMarbleUpdateShownSealScRsp => "CmdMarbleUpdateShownSealScRsp", Self::CmdMarbleLevelFinishScRsp => "CmdMarbleLevelFinishScRsp", - Self::CmdMarblePvpDataUpdateScNotify => "CmdMarblePvpDataUpdateScNotify", - Self::CmdMarbleUnlockSealScNotify => "CmdMarbleUnlockSealScNotify", - Self::CmdMarbleShopBuyCsReq => "CmdMarbleShopBuyCsReq", + Self::CmdMarbleUpdateShownSealCsReq => "CmdMarbleUpdateShownSealCsReq", Self::CmdMarbleShopBuyScRsp => "CmdMarbleShopBuyScRsp", Self::CmdMarbleGetDataCsReq => "CmdMarbleGetDataCsReq", + Self::CmdMarblePvpDataUpdateScNotify => "CmdMarblePvpDataUpdateScNotify", + Self::CmdMarbleUnlockSealScNotify => "CmdMarbleUnlockSealScNotify", + Self::CmdMarbleUpdateShownSealScRsp => "CmdMarbleUpdateShownSealScRsp", + Self::CmdMarbleGetDataScRsp => "CmdMarbleGetDataScRsp", + Self::CmdMarbleLevelFinishCsReq => "CmdMarbleLevelFinishCsReq", + Self::CmdMarbleShopBuyCsReq => "CmdMarbleShopBuyCsReq", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdMarbleTypeNone" => Some(Self::None), - "CmdMarbleUpdateShownSealCsReq" => Some(Self::CmdMarbleUpdateShownSealCsReq), - "CmdMarbleGetDataScRsp" => Some(Self::CmdMarbleGetDataScRsp), - "CmdMarbleLevelFinishCsReq" => Some(Self::CmdMarbleLevelFinishCsReq), - "CmdMarbleUpdateShownSealScRsp" => Some(Self::CmdMarbleUpdateShownSealScRsp), "CmdMarbleLevelFinishScRsp" => Some(Self::CmdMarbleLevelFinishScRsp), + "CmdMarbleUpdateShownSealCsReq" => Some(Self::CmdMarbleUpdateShownSealCsReq), + "CmdMarbleShopBuyScRsp" => Some(Self::CmdMarbleShopBuyScRsp), + "CmdMarbleGetDataCsReq" => Some(Self::CmdMarbleGetDataCsReq), "CmdMarblePvpDataUpdateScNotify" => { Some(Self::CmdMarblePvpDataUpdateScNotify) } "CmdMarbleUnlockSealScNotify" => Some(Self::CmdMarbleUnlockSealScNotify), + "CmdMarbleUpdateShownSealScRsp" => Some(Self::CmdMarbleUpdateShownSealScRsp), + "CmdMarbleGetDataScRsp" => Some(Self::CmdMarbleGetDataScRsp), + "CmdMarbleLevelFinishCsReq" => Some(Self::CmdMarbleLevelFinishCsReq), "CmdMarbleShopBuyCsReq" => Some(Self::CmdMarbleShopBuyCsReq), - "CmdMarbleShopBuyScRsp" => Some(Self::CmdMarbleShopBuyScRsp), - "CmdMarbleGetDataCsReq" => Some(Self::CmdMarbleGetDataCsReq), _ => None, } } @@ -52000,11 +54281,11 @@ impl CmdMarbleType { #[repr(i32)] pub enum CmdMarkChestType { None = 0, - CmdUpdateMarkChestScRsp = 8190, - CmdGetMarkChestScRsp = 8193, - CmdGetMarkChestCsReq = 8194, - CmdMarkChestChangedScNotify = 8184, - CmdUpdateMarkChestCsReq = 8188, + CmdGetMarkChestScRsp = 8189, + CmdUpdateMarkChestScRsp = 8196, + CmdGetMarkChestCsReq = 8198, + CmdUpdateMarkChestCsReq = 8190, + CmdMarkChestChangedScNotify = 8187, } impl CmdMarkChestType { /// String value of the enum field names used in the ProtoBuf definition. @@ -52014,22 +54295,22 @@ impl CmdMarkChestType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdMarkChestTypeNone", - Self::CmdUpdateMarkChestScRsp => "CmdUpdateMarkChestScRsp", Self::CmdGetMarkChestScRsp => "CmdGetMarkChestScRsp", + Self::CmdUpdateMarkChestScRsp => "CmdUpdateMarkChestScRsp", Self::CmdGetMarkChestCsReq => "CmdGetMarkChestCsReq", - Self::CmdMarkChestChangedScNotify => "CmdMarkChestChangedScNotify", Self::CmdUpdateMarkChestCsReq => "CmdUpdateMarkChestCsReq", + Self::CmdMarkChestChangedScNotify => "CmdMarkChestChangedScNotify", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdMarkChestTypeNone" => Some(Self::None), - "CmdUpdateMarkChestScRsp" => Some(Self::CmdUpdateMarkChestScRsp), "CmdGetMarkChestScRsp" => Some(Self::CmdGetMarkChestScRsp), + "CmdUpdateMarkChestScRsp" => Some(Self::CmdUpdateMarkChestScRsp), "CmdGetMarkChestCsReq" => Some(Self::CmdGetMarkChestCsReq), - "CmdMarkChestChangedScNotify" => Some(Self::CmdMarkChestChangedScNotify), "CmdUpdateMarkChestCsReq" => Some(Self::CmdUpdateMarkChestCsReq), + "CmdMarkChestChangedScNotify" => Some(Self::CmdMarkChestChangedScNotify), _ => None, } } @@ -52040,13 +54321,13 @@ impl CmdMarkChestType { #[repr(i32)] pub enum CmdMatchType { None = 0, - CmdGetCrossInfoCsReq = 7317, - CmdCancelMatchScRsp = 7337, - CmdStartMatchCsReq = 7304, - CmdGetCrossInfoScRsp = 7327, - CmdStartMatchScRsp = 7346, - CmdCancelMatchCsReq = 7302, - CmdMatchResultScNotify = 7336, + CmdCancelMatchScRsp = 7336, + CmdStartMatchScRsp = 7327, + CmdCancelMatchCsReq = 7318, + CmdGetCrossInfoScRsp = 7317, + CmdStartMatchCsReq = 7349, + CmdMatchResultScNotify = 7311, + CmdGetCrossInfoCsReq = 7337, } impl CmdMatchType { /// String value of the enum field names used in the ProtoBuf definition. @@ -52056,26 +54337,26 @@ impl CmdMatchType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdMatchTypeNone", - Self::CmdGetCrossInfoCsReq => "CmdGetCrossInfoCsReq", Self::CmdCancelMatchScRsp => "CmdCancelMatchScRsp", - Self::CmdStartMatchCsReq => "CmdStartMatchCsReq", - Self::CmdGetCrossInfoScRsp => "CmdGetCrossInfoScRsp", Self::CmdStartMatchScRsp => "CmdStartMatchScRsp", Self::CmdCancelMatchCsReq => "CmdCancelMatchCsReq", + Self::CmdGetCrossInfoScRsp => "CmdGetCrossInfoScRsp", + Self::CmdStartMatchCsReq => "CmdStartMatchCsReq", Self::CmdMatchResultScNotify => "CmdMatchResultScNotify", + Self::CmdGetCrossInfoCsReq => "CmdGetCrossInfoCsReq", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdMatchTypeNone" => Some(Self::None), - "CmdGetCrossInfoCsReq" => Some(Self::CmdGetCrossInfoCsReq), "CmdCancelMatchScRsp" => Some(Self::CmdCancelMatchScRsp), - "CmdStartMatchCsReq" => Some(Self::CmdStartMatchCsReq), - "CmdGetCrossInfoScRsp" => Some(Self::CmdGetCrossInfoScRsp), "CmdStartMatchScRsp" => Some(Self::CmdStartMatchScRsp), "CmdCancelMatchCsReq" => Some(Self::CmdCancelMatchCsReq), + "CmdGetCrossInfoScRsp" => Some(Self::CmdGetCrossInfoScRsp), + "CmdStartMatchCsReq" => Some(Self::CmdStartMatchCsReq), "CmdMatchResultScNotify" => Some(Self::CmdMatchResultScNotify), + "CmdGetCrossInfoCsReq" => Some(Self::CmdGetCrossInfoCsReq), _ => None, } } @@ -52086,13 +54367,23 @@ impl CmdMatchType { #[repr(i32)] pub enum CmdMatchThreeModuleType { None = 0, - CmdMatchThreeSetBirdPosCsReq = 7417, - CmdMatchThreeLevelEndScRsp = 7437, - CmdMatchThreeSetBirdPosScRsp = 7427, - CmdMatchThreeSyncDataScNotify = 7436, - CmdMatchThreeGetDataScRsp = 7446, - CmdMatchThreeLevelEndCsReq = 7402, - CmdMatchThreeGetDataCsReq = 7404, + CmdMatchThreeV2ScNotify = 7434, + CmdMatchThreeV2GetDataScRsp = 7412, + CmdMatchThreeV2LevelEndScRsp = 7428, + CmdMatchThreeLevelEndScRsp = 7436, + CmdMatchThreeGetDataCsReq = 7449, + CmdMatchThreeV2LevelEndCsReq = 7406, + CmdMatchThreeSetBirdPosCsReq = 7437, + CmdMatchThreeV2SetBirdPosCsReq = 7419, + CmdMatchThreeLevelEndCsReq = 7418, + CmdMatchThreeV2BattleItemLevelUpScRsp = 7445, + CmdMatchThreeGetDataScRsp = 7427, + CmdMatchThreeV2SetBirdPosScRsp = 7426, + CmdMatchThreeV2PvpFinishScNotify = 7446, + CmdMatchThreeSyncDataScNotify = 7411, + CmdMatchThreeV2BattleItemLevelUpCsReq = 7410, + CmdMatchThreeV2GetDataCsReq = 7439, + CmdMatchThreeSetBirdPosScRsp = 7417, } impl CmdMatchThreeModuleType { /// String value of the enum field names used in the ProtoBuf definition. @@ -52102,26 +54393,60 @@ impl CmdMatchThreeModuleType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdMatchThreeModuleTypeNone", - Self::CmdMatchThreeSetBirdPosCsReq => "CmdMatchThreeSetBirdPosCsReq", + Self::CmdMatchThreeV2ScNotify => "CmdMatchThreeV2ScNotify", + Self::CmdMatchThreeV2GetDataScRsp => "CmdMatchThreeV2GetDataScRsp", + Self::CmdMatchThreeV2LevelEndScRsp => "CmdMatchThreeV2LevelEndScRsp", Self::CmdMatchThreeLevelEndScRsp => "CmdMatchThreeLevelEndScRsp", - Self::CmdMatchThreeSetBirdPosScRsp => "CmdMatchThreeSetBirdPosScRsp", - Self::CmdMatchThreeSyncDataScNotify => "CmdMatchThreeSyncDataScNotify", - Self::CmdMatchThreeGetDataScRsp => "CmdMatchThreeGetDataScRsp", - Self::CmdMatchThreeLevelEndCsReq => "CmdMatchThreeLevelEndCsReq", Self::CmdMatchThreeGetDataCsReq => "CmdMatchThreeGetDataCsReq", + Self::CmdMatchThreeV2LevelEndCsReq => "CmdMatchThreeV2LevelEndCsReq", + Self::CmdMatchThreeSetBirdPosCsReq => "CmdMatchThreeSetBirdPosCsReq", + Self::CmdMatchThreeV2SetBirdPosCsReq => "CmdMatchThreeV2SetBirdPosCsReq", + Self::CmdMatchThreeLevelEndCsReq => "CmdMatchThreeLevelEndCsReq", + Self::CmdMatchThreeV2BattleItemLevelUpScRsp => { + "CmdMatchThreeV2BattleItemLevelUpScRsp" + } + Self::CmdMatchThreeGetDataScRsp => "CmdMatchThreeGetDataScRsp", + Self::CmdMatchThreeV2SetBirdPosScRsp => "CmdMatchThreeV2SetBirdPosScRsp", + Self::CmdMatchThreeV2PvpFinishScNotify => "CmdMatchThreeV2PvpFinishScNotify", + Self::CmdMatchThreeSyncDataScNotify => "CmdMatchThreeSyncDataScNotify", + Self::CmdMatchThreeV2BattleItemLevelUpCsReq => { + "CmdMatchThreeV2BattleItemLevelUpCsReq" + } + Self::CmdMatchThreeV2GetDataCsReq => "CmdMatchThreeV2GetDataCsReq", + Self::CmdMatchThreeSetBirdPosScRsp => "CmdMatchThreeSetBirdPosScRsp", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdMatchThreeModuleTypeNone" => Some(Self::None), - "CmdMatchThreeSetBirdPosCsReq" => Some(Self::CmdMatchThreeSetBirdPosCsReq), + "CmdMatchThreeV2ScNotify" => Some(Self::CmdMatchThreeV2ScNotify), + "CmdMatchThreeV2GetDataScRsp" => Some(Self::CmdMatchThreeV2GetDataScRsp), + "CmdMatchThreeV2LevelEndScRsp" => Some(Self::CmdMatchThreeV2LevelEndScRsp), "CmdMatchThreeLevelEndScRsp" => Some(Self::CmdMatchThreeLevelEndScRsp), - "CmdMatchThreeSetBirdPosScRsp" => Some(Self::CmdMatchThreeSetBirdPosScRsp), - "CmdMatchThreeSyncDataScNotify" => Some(Self::CmdMatchThreeSyncDataScNotify), - "CmdMatchThreeGetDataScRsp" => Some(Self::CmdMatchThreeGetDataScRsp), - "CmdMatchThreeLevelEndCsReq" => Some(Self::CmdMatchThreeLevelEndCsReq), "CmdMatchThreeGetDataCsReq" => Some(Self::CmdMatchThreeGetDataCsReq), + "CmdMatchThreeV2LevelEndCsReq" => Some(Self::CmdMatchThreeV2LevelEndCsReq), + "CmdMatchThreeSetBirdPosCsReq" => Some(Self::CmdMatchThreeSetBirdPosCsReq), + "CmdMatchThreeV2SetBirdPosCsReq" => { + Some(Self::CmdMatchThreeV2SetBirdPosCsReq) + } + "CmdMatchThreeLevelEndCsReq" => Some(Self::CmdMatchThreeLevelEndCsReq), + "CmdMatchThreeV2BattleItemLevelUpScRsp" => { + Some(Self::CmdMatchThreeV2BattleItemLevelUpScRsp) + } + "CmdMatchThreeGetDataScRsp" => Some(Self::CmdMatchThreeGetDataScRsp), + "CmdMatchThreeV2SetBirdPosScRsp" => { + Some(Self::CmdMatchThreeV2SetBirdPosScRsp) + } + "CmdMatchThreeV2PvpFinishScNotify" => { + Some(Self::CmdMatchThreeV2PvpFinishScNotify) + } + "CmdMatchThreeSyncDataScNotify" => Some(Self::CmdMatchThreeSyncDataScNotify), + "CmdMatchThreeV2BattleItemLevelUpCsReq" => { + Some(Self::CmdMatchThreeV2BattleItemLevelUpCsReq) + } + "CmdMatchThreeV2GetDataCsReq" => Some(Self::CmdMatchThreeV2GetDataCsReq), + "CmdMatchThreeSetBirdPosScRsp" => Some(Self::CmdMatchThreeSetBirdPosScRsp), _ => None, } } @@ -52141,6 +54466,9 @@ pub enum Ajddhbhmoof { MatchThreeStatisticsDamage = 8, MatchThreeStatisticsEnergy = 9, MatchThreeStatisticsSwapBomb = 10, + MatchThreeStatisticsUseItem = 11, + MatchThreeStatisticsSoloMaxStep = 12, + MatchThreeStatisticsSoloScore = 13, } impl Ajddhbhmoof { /// String value of the enum field names used in the ProtoBuf definition. @@ -52160,6 +54488,9 @@ impl Ajddhbhmoof { Self::MatchThreeStatisticsDamage => "MatchThreeStatistics_Damage", Self::MatchThreeStatisticsEnergy => "MatchThreeStatistics_Energy", Self::MatchThreeStatisticsSwapBomb => "MatchThreeStatistics_SwapBomb", + Self::MatchThreeStatisticsUseItem => "MatchThreeStatistics_UseItem", + Self::MatchThreeStatisticsSoloMaxStep => "MatchThreeStatistics_SoloMaxStep", + Self::MatchThreeStatisticsSoloScore => "MatchThreeStatistics_SoloScore", } } /// Creates an enum from field names used in the ProtoBuf definition. @@ -52176,6 +54507,11 @@ impl Ajddhbhmoof { "MatchThreeStatistics_Damage" => Some(Self::MatchThreeStatisticsDamage), "MatchThreeStatistics_Energy" => Some(Self::MatchThreeStatisticsEnergy), "MatchThreeStatistics_SwapBomb" => Some(Self::MatchThreeStatisticsSwapBomb), + "MatchThreeStatistics_UseItem" => Some(Self::MatchThreeStatisticsUseItem), + "MatchThreeStatistics_SoloMaxStep" => { + Some(Self::MatchThreeStatisticsSoloMaxStep) + } + "MatchThreeStatistics_SoloScore" => Some(Self::MatchThreeStatisticsSoloScore), _ => None, } } @@ -52186,18 +54522,18 @@ impl Ajddhbhmoof { #[repr(i32)] pub enum CmdMessageType { None = 0, - CmdGetMissionMessageInfoCsReq = 2772, - CmdFinishPerformSectionIdScRsp = 2756, - CmdGetNpcStatusCsReq = 2731, - CmdFinishItemIdCsReq = 2776, - CmdFinishSectionIdScRsp = 2752, - CmdFinishItemIdScRsp = 2748, - CmdGetMissionMessageInfoScRsp = 2785, - CmdFinishSectionIdCsReq = 2771, - CmdFinishPerformSectionIdCsReq = 2722, - CmdGetNpcMessageGroupCsReq = 2795, - CmdGetNpcStatusScRsp = 2740, - CmdGetNpcMessageGroupScRsp = 2732, + CmdGetMissionMessageInfoCsReq = 2780, + CmdGetNpcStatusCsReq = 2767, + CmdFinishItemIdScRsp = 2721, + CmdGetNpcMessageGroupCsReq = 2720, + CmdFinishPerformSectionIdCsReq = 2754, + CmdFinishSectionIdCsReq = 2770, + CmdGetNpcStatusScRsp = 2739, + CmdGetMissionMessageInfoScRsp = 2702, + CmdFinishSectionIdScRsp = 2759, + CmdGetNpcMessageGroupScRsp = 2791, + CmdFinishPerformSectionIdScRsp = 2777, + CmdFinishItemIdCsReq = 2727, } impl CmdMessageType { /// String value of the enum field names used in the ProtoBuf definition. @@ -52208,17 +54544,17 @@ impl CmdMessageType { match self { Self::None => "CmdMessageTypeNone", Self::CmdGetMissionMessageInfoCsReq => "CmdGetMissionMessageInfoCsReq", - Self::CmdFinishPerformSectionIdScRsp => "CmdFinishPerformSectionIdScRsp", Self::CmdGetNpcStatusCsReq => "CmdGetNpcStatusCsReq", - Self::CmdFinishItemIdCsReq => "CmdFinishItemIdCsReq", - Self::CmdFinishSectionIdScRsp => "CmdFinishSectionIdScRsp", Self::CmdFinishItemIdScRsp => "CmdFinishItemIdScRsp", - Self::CmdGetMissionMessageInfoScRsp => "CmdGetMissionMessageInfoScRsp", - Self::CmdFinishSectionIdCsReq => "CmdFinishSectionIdCsReq", - Self::CmdFinishPerformSectionIdCsReq => "CmdFinishPerformSectionIdCsReq", Self::CmdGetNpcMessageGroupCsReq => "CmdGetNpcMessageGroupCsReq", + Self::CmdFinishPerformSectionIdCsReq => "CmdFinishPerformSectionIdCsReq", + Self::CmdFinishSectionIdCsReq => "CmdFinishSectionIdCsReq", Self::CmdGetNpcStatusScRsp => "CmdGetNpcStatusScRsp", + Self::CmdGetMissionMessageInfoScRsp => "CmdGetMissionMessageInfoScRsp", + Self::CmdFinishSectionIdScRsp => "CmdFinishSectionIdScRsp", Self::CmdGetNpcMessageGroupScRsp => "CmdGetNpcMessageGroupScRsp", + Self::CmdFinishPerformSectionIdScRsp => "CmdFinishPerformSectionIdScRsp", + Self::CmdFinishItemIdCsReq => "CmdFinishItemIdCsReq", } } /// Creates an enum from field names used in the ProtoBuf definition. @@ -52226,21 +54562,21 @@ impl CmdMessageType { match value { "CmdMessageTypeNone" => Some(Self::None), "CmdGetMissionMessageInfoCsReq" => Some(Self::CmdGetMissionMessageInfoCsReq), - "CmdFinishPerformSectionIdScRsp" => { - Some(Self::CmdFinishPerformSectionIdScRsp) - } "CmdGetNpcStatusCsReq" => Some(Self::CmdGetNpcStatusCsReq), - "CmdFinishItemIdCsReq" => Some(Self::CmdFinishItemIdCsReq), - "CmdFinishSectionIdScRsp" => Some(Self::CmdFinishSectionIdScRsp), "CmdFinishItemIdScRsp" => Some(Self::CmdFinishItemIdScRsp), - "CmdGetMissionMessageInfoScRsp" => Some(Self::CmdGetMissionMessageInfoScRsp), - "CmdFinishSectionIdCsReq" => Some(Self::CmdFinishSectionIdCsReq), + "CmdGetNpcMessageGroupCsReq" => Some(Self::CmdGetNpcMessageGroupCsReq), "CmdFinishPerformSectionIdCsReq" => { Some(Self::CmdFinishPerformSectionIdCsReq) } - "CmdGetNpcMessageGroupCsReq" => Some(Self::CmdGetNpcMessageGroupCsReq), + "CmdFinishSectionIdCsReq" => Some(Self::CmdFinishSectionIdCsReq), "CmdGetNpcStatusScRsp" => Some(Self::CmdGetNpcStatusScRsp), + "CmdGetMissionMessageInfoScRsp" => Some(Self::CmdGetMissionMessageInfoScRsp), + "CmdFinishSectionIdScRsp" => Some(Self::CmdFinishSectionIdScRsp), "CmdGetNpcMessageGroupScRsp" => Some(Self::CmdGetNpcMessageGroupScRsp), + "CmdFinishPerformSectionIdScRsp" => { + Some(Self::CmdFinishPerformSectionIdScRsp) + } + "CmdFinishItemIdCsReq" => Some(Self::CmdFinishItemIdCsReq), _ => None, } } @@ -52251,36 +54587,39 @@ impl CmdMessageType { #[repr(i32)] pub enum CmdMiscModuleType { None = 0, - CmdDifficultyAdjustmentGetDataScRsp = 4114, - CmdCancelCacheNotifyCsReq = 4122, - CmdCancelCacheNotifyScRsp = 4156, - CmdMazeKillDirectScRsp = 4175, - CmdGetOrigamiPropInfoScRsp = 4139, - CmdDifficultyAdjustmentUpdateDataCsReq = 4184, - CmdGetShareDataCsReq = 4131, - CmdGetMovieRacingDataCsReq = 4142, - CmdUpdateGunPlayDataCsReq = 4111, - CmdTakePictureScRsp = 4148, - CmdGetGunPlayDataCsReq = 4129, - CmdShareCsReq = 4195, - CmdDifficultyAdjustmentUpdateDataScRsp = 4137, - CmdGetShareDataScRsp = 4140, - CmdTakePictureCsReq = 4176, - CmdSubmitOrigamiItemScRsp = 4160, - CmdMazeKillDirectCsReq = 4130, - CmdDifficultyAdjustmentGetDataCsReq = 4125, - CmdSecurityReportScRsp = 4185, - CmdTriggerVoiceScRsp = 4146, - CmdTriggerVoiceCsReq = 4116, - CmdUpdateGunPlayDataScRsp = 4193, - CmdGetOrigamiPropInfoCsReq = 4102, - CmdGetMovieRacingDataScRsp = 4177, - CmdUpdateMovieRacingDataCsReq = 4158, - CmdSecurityReportCsReq = 4172, - CmdGetGunPlayDataScRsp = 4163, - CmdUpdateMovieRacingDataScRsp = 4121, - CmdSubmitOrigamiItemCsReq = 4183, - CmdShareScRsp = 4132, + CmdUpdateMovieRacingDataScRsp = 4109, + CmdUpdateGunPlayDataCsReq = 4144, + CmdTriggerVoiceScRsp = 4174, + CmdGetOrigamiPropInfoCsReq = 4185, + CmdTakePictureCsReq = 4127, + CmdMazeKillDirectScRsp = 4169, + CmdSubmitOrigamiItemScRsp = 4198, + CmdSecurityReportCsReq = 4180, + CmdTriggerVoiceCsReq = 4105, + CmdShareCsReq = 4120, + CmdSubmitOrigamiItemCsReq = 4173, + CmdCancelCacheNotifyScRsp = 4177, + CmdSecurityReportScRsp = 4102, + CmdGetGunPlayDataCsReq = 4106, + CmdCancelDirectDeliveryNoticeCsReq = 4124, + CmdGetShareDataScRsp = 4139, + CmdGetGunPlayDataScRsp = 4131, + CmdGetMovieRacingDataScRsp = 4136, + CmdGetShareDataCsReq = 4167, + CmdGetOrigamiPropInfoScRsp = 4138, + CmdCancelCacheNotifyCsReq = 4154, + CmdShareScRsp = 4191, + CmdDifficultyAdjustmentGetDataScRsp = 4184, + CmdUpdateMovieRacingDataCsReq = 4187, + CmdDifficultyAdjustmentUpdateDataCsReq = 4178, + CmdDirectDeliveryScNotify = 4103, + CmdDifficultyAdjustmentGetDataCsReq = 4141, + CmdDifficultyAdjustmentUpdateDataScRsp = 4134, + CmdUpdateGunPlayDataScRsp = 4149, + CmdTakePictureScRsp = 4121, + CmdCancelDirectDeliveryNoticeScRsp = 4128, + CmdMazeKillDirectCsReq = 4145, + CmdGetMovieRacingDataCsReq = 4194, } impl CmdMiscModuleType { /// String value of the enum field names used in the ProtoBuf definition. @@ -52290,88 +54629,102 @@ impl CmdMiscModuleType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdMiscModuleTypeNone", + Self::CmdUpdateMovieRacingDataScRsp => "CmdUpdateMovieRacingDataScRsp", + Self::CmdUpdateGunPlayDataCsReq => "CmdUpdateGunPlayDataCsReq", + Self::CmdTriggerVoiceScRsp => "CmdTriggerVoiceScRsp", + Self::CmdGetOrigamiPropInfoCsReq => "CmdGetOrigamiPropInfoCsReq", + Self::CmdTakePictureCsReq => "CmdTakePictureCsReq", + Self::CmdMazeKillDirectScRsp => "CmdMazeKillDirectScRsp", + Self::CmdSubmitOrigamiItemScRsp => "CmdSubmitOrigamiItemScRsp", + Self::CmdSecurityReportCsReq => "CmdSecurityReportCsReq", + Self::CmdTriggerVoiceCsReq => "CmdTriggerVoiceCsReq", + Self::CmdShareCsReq => "CmdShareCsReq", + Self::CmdSubmitOrigamiItemCsReq => "CmdSubmitOrigamiItemCsReq", + Self::CmdCancelCacheNotifyScRsp => "CmdCancelCacheNotifyScRsp", + Self::CmdSecurityReportScRsp => "CmdSecurityReportScRsp", + Self::CmdGetGunPlayDataCsReq => "CmdGetGunPlayDataCsReq", + Self::CmdCancelDirectDeliveryNoticeCsReq => { + "CmdCancelDirectDeliveryNoticeCsReq" + } + Self::CmdGetShareDataScRsp => "CmdGetShareDataScRsp", + Self::CmdGetGunPlayDataScRsp => "CmdGetGunPlayDataScRsp", + Self::CmdGetMovieRacingDataScRsp => "CmdGetMovieRacingDataScRsp", + Self::CmdGetShareDataCsReq => "CmdGetShareDataCsReq", + Self::CmdGetOrigamiPropInfoScRsp => "CmdGetOrigamiPropInfoScRsp", + Self::CmdCancelCacheNotifyCsReq => "CmdCancelCacheNotifyCsReq", + Self::CmdShareScRsp => "CmdShareScRsp", Self::CmdDifficultyAdjustmentGetDataScRsp => { "CmdDifficultyAdjustmentGetDataScRsp" } - Self::CmdCancelCacheNotifyCsReq => "CmdCancelCacheNotifyCsReq", - Self::CmdCancelCacheNotifyScRsp => "CmdCancelCacheNotifyScRsp", - Self::CmdMazeKillDirectScRsp => "CmdMazeKillDirectScRsp", - Self::CmdGetOrigamiPropInfoScRsp => "CmdGetOrigamiPropInfoScRsp", + Self::CmdUpdateMovieRacingDataCsReq => "CmdUpdateMovieRacingDataCsReq", Self::CmdDifficultyAdjustmentUpdateDataCsReq => { "CmdDifficultyAdjustmentUpdateDataCsReq" } - Self::CmdGetShareDataCsReq => "CmdGetShareDataCsReq", - Self::CmdGetMovieRacingDataCsReq => "CmdGetMovieRacingDataCsReq", - Self::CmdUpdateGunPlayDataCsReq => "CmdUpdateGunPlayDataCsReq", - Self::CmdTakePictureScRsp => "CmdTakePictureScRsp", - Self::CmdGetGunPlayDataCsReq => "CmdGetGunPlayDataCsReq", - Self::CmdShareCsReq => "CmdShareCsReq", - Self::CmdDifficultyAdjustmentUpdateDataScRsp => { - "CmdDifficultyAdjustmentUpdateDataScRsp" - } - Self::CmdGetShareDataScRsp => "CmdGetShareDataScRsp", - Self::CmdTakePictureCsReq => "CmdTakePictureCsReq", - Self::CmdSubmitOrigamiItemScRsp => "CmdSubmitOrigamiItemScRsp", - Self::CmdMazeKillDirectCsReq => "CmdMazeKillDirectCsReq", + Self::CmdDirectDeliveryScNotify => "CmdDirectDeliveryScNotify", Self::CmdDifficultyAdjustmentGetDataCsReq => { "CmdDifficultyAdjustmentGetDataCsReq" } - Self::CmdSecurityReportScRsp => "CmdSecurityReportScRsp", - Self::CmdTriggerVoiceScRsp => "CmdTriggerVoiceScRsp", - Self::CmdTriggerVoiceCsReq => "CmdTriggerVoiceCsReq", + Self::CmdDifficultyAdjustmentUpdateDataScRsp => { + "CmdDifficultyAdjustmentUpdateDataScRsp" + } Self::CmdUpdateGunPlayDataScRsp => "CmdUpdateGunPlayDataScRsp", - Self::CmdGetOrigamiPropInfoCsReq => "CmdGetOrigamiPropInfoCsReq", - Self::CmdGetMovieRacingDataScRsp => "CmdGetMovieRacingDataScRsp", - Self::CmdUpdateMovieRacingDataCsReq => "CmdUpdateMovieRacingDataCsReq", - Self::CmdSecurityReportCsReq => "CmdSecurityReportCsReq", - Self::CmdGetGunPlayDataScRsp => "CmdGetGunPlayDataScRsp", - Self::CmdUpdateMovieRacingDataScRsp => "CmdUpdateMovieRacingDataScRsp", - Self::CmdSubmitOrigamiItemCsReq => "CmdSubmitOrigamiItemCsReq", - Self::CmdShareScRsp => "CmdShareScRsp", + Self::CmdTakePictureScRsp => "CmdTakePictureScRsp", + Self::CmdCancelDirectDeliveryNoticeScRsp => { + "CmdCancelDirectDeliveryNoticeScRsp" + } + Self::CmdMazeKillDirectCsReq => "CmdMazeKillDirectCsReq", + Self::CmdGetMovieRacingDataCsReq => "CmdGetMovieRacingDataCsReq", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdMiscModuleTypeNone" => Some(Self::None), + "CmdUpdateMovieRacingDataScRsp" => Some(Self::CmdUpdateMovieRacingDataScRsp), + "CmdUpdateGunPlayDataCsReq" => Some(Self::CmdUpdateGunPlayDataCsReq), + "CmdTriggerVoiceScRsp" => Some(Self::CmdTriggerVoiceScRsp), + "CmdGetOrigamiPropInfoCsReq" => Some(Self::CmdGetOrigamiPropInfoCsReq), + "CmdTakePictureCsReq" => Some(Self::CmdTakePictureCsReq), + "CmdMazeKillDirectScRsp" => Some(Self::CmdMazeKillDirectScRsp), + "CmdSubmitOrigamiItemScRsp" => Some(Self::CmdSubmitOrigamiItemScRsp), + "CmdSecurityReportCsReq" => Some(Self::CmdSecurityReportCsReq), + "CmdTriggerVoiceCsReq" => Some(Self::CmdTriggerVoiceCsReq), + "CmdShareCsReq" => Some(Self::CmdShareCsReq), + "CmdSubmitOrigamiItemCsReq" => Some(Self::CmdSubmitOrigamiItemCsReq), + "CmdCancelCacheNotifyScRsp" => Some(Self::CmdCancelCacheNotifyScRsp), + "CmdSecurityReportScRsp" => Some(Self::CmdSecurityReportScRsp), + "CmdGetGunPlayDataCsReq" => Some(Self::CmdGetGunPlayDataCsReq), + "CmdCancelDirectDeliveryNoticeCsReq" => { + Some(Self::CmdCancelDirectDeliveryNoticeCsReq) + } + "CmdGetShareDataScRsp" => Some(Self::CmdGetShareDataScRsp), + "CmdGetGunPlayDataScRsp" => Some(Self::CmdGetGunPlayDataScRsp), + "CmdGetMovieRacingDataScRsp" => Some(Self::CmdGetMovieRacingDataScRsp), + "CmdGetShareDataCsReq" => Some(Self::CmdGetShareDataCsReq), + "CmdGetOrigamiPropInfoScRsp" => Some(Self::CmdGetOrigamiPropInfoScRsp), + "CmdCancelCacheNotifyCsReq" => Some(Self::CmdCancelCacheNotifyCsReq), + "CmdShareScRsp" => Some(Self::CmdShareScRsp), "CmdDifficultyAdjustmentGetDataScRsp" => { Some(Self::CmdDifficultyAdjustmentGetDataScRsp) } - "CmdCancelCacheNotifyCsReq" => Some(Self::CmdCancelCacheNotifyCsReq), - "CmdCancelCacheNotifyScRsp" => Some(Self::CmdCancelCacheNotifyScRsp), - "CmdMazeKillDirectScRsp" => Some(Self::CmdMazeKillDirectScRsp), - "CmdGetOrigamiPropInfoScRsp" => Some(Self::CmdGetOrigamiPropInfoScRsp), + "CmdUpdateMovieRacingDataCsReq" => Some(Self::CmdUpdateMovieRacingDataCsReq), "CmdDifficultyAdjustmentUpdateDataCsReq" => { Some(Self::CmdDifficultyAdjustmentUpdateDataCsReq) } - "CmdGetShareDataCsReq" => Some(Self::CmdGetShareDataCsReq), - "CmdGetMovieRacingDataCsReq" => Some(Self::CmdGetMovieRacingDataCsReq), - "CmdUpdateGunPlayDataCsReq" => Some(Self::CmdUpdateGunPlayDataCsReq), - "CmdTakePictureScRsp" => Some(Self::CmdTakePictureScRsp), - "CmdGetGunPlayDataCsReq" => Some(Self::CmdGetGunPlayDataCsReq), - "CmdShareCsReq" => Some(Self::CmdShareCsReq), - "CmdDifficultyAdjustmentUpdateDataScRsp" => { - Some(Self::CmdDifficultyAdjustmentUpdateDataScRsp) - } - "CmdGetShareDataScRsp" => Some(Self::CmdGetShareDataScRsp), - "CmdTakePictureCsReq" => Some(Self::CmdTakePictureCsReq), - "CmdSubmitOrigamiItemScRsp" => Some(Self::CmdSubmitOrigamiItemScRsp), - "CmdMazeKillDirectCsReq" => Some(Self::CmdMazeKillDirectCsReq), + "CmdDirectDeliveryScNotify" => Some(Self::CmdDirectDeliveryScNotify), "CmdDifficultyAdjustmentGetDataCsReq" => { Some(Self::CmdDifficultyAdjustmentGetDataCsReq) } - "CmdSecurityReportScRsp" => Some(Self::CmdSecurityReportScRsp), - "CmdTriggerVoiceScRsp" => Some(Self::CmdTriggerVoiceScRsp), - "CmdTriggerVoiceCsReq" => Some(Self::CmdTriggerVoiceCsReq), + "CmdDifficultyAdjustmentUpdateDataScRsp" => { + Some(Self::CmdDifficultyAdjustmentUpdateDataScRsp) + } "CmdUpdateGunPlayDataScRsp" => Some(Self::CmdUpdateGunPlayDataScRsp), - "CmdGetOrigamiPropInfoCsReq" => Some(Self::CmdGetOrigamiPropInfoCsReq), - "CmdGetMovieRacingDataScRsp" => Some(Self::CmdGetMovieRacingDataScRsp), - "CmdUpdateMovieRacingDataCsReq" => Some(Self::CmdUpdateMovieRacingDataCsReq), - "CmdSecurityReportCsReq" => Some(Self::CmdSecurityReportCsReq), - "CmdGetGunPlayDataScRsp" => Some(Self::CmdGetGunPlayDataScRsp), - "CmdUpdateMovieRacingDataScRsp" => Some(Self::CmdUpdateMovieRacingDataScRsp), - "CmdSubmitOrigamiItemCsReq" => Some(Self::CmdSubmitOrigamiItemCsReq), - "CmdShareScRsp" => Some(Self::CmdShareScRsp), + "CmdTakePictureScRsp" => Some(Self::CmdTakePictureScRsp), + "CmdCancelDirectDeliveryNoticeScRsp" => { + Some(Self::CmdCancelDirectDeliveryNoticeScRsp) + } + "CmdMazeKillDirectCsReq" => Some(Self::CmdMazeKillDirectCsReq), + "CmdGetMovieRacingDataCsReq" => Some(Self::CmdGetMovieRacingDataCsReq), _ => None, } } @@ -52540,33 +54893,33 @@ impl Mnijhmepgnn { #[repr(i32)] pub enum CmdMissionType { None = 0, - CmdSubMissionRewardScNotify = 1263, - CmdStartFinishMainMissionScNotify = 1214, - CmdUpdateMainMissionCustomValueScRsp = 1264, - CmdStartFinishSubMissionScNotify = 1225, - CmdGetMissionDataScRsp = 1232, - CmdGetMissionStatusCsReq = 1233, - CmdGetMainMissionCustomValueScRsp = 1275, - CmdFinishedMissionScNotify = 1207, - CmdGetMissionStatusScRsp = 1242, - CmdSyncTaskScRsp = 1271, - CmdGetMainMissionCustomValueCsReq = 1230, - CmdUpdateMainMissionCustomValueCsReq = 1298, - CmdFinishTalkMissionCsReq = 1231, - CmdUpdateTrackMainMissionIdCsReq = 1224, - CmdTeleportToMissionResetPointScRsp = 1293, - CmdAcceptMainMissionScRsp = 1237, - CmdMissionAcceptScNotify = 1251, - CmdAcceptMainMissionCsReq = 1284, - CmdFinishTalkMissionScRsp = 1240, - CmdMissionGroupWarnScNotify = 1285, - CmdUpdateTrackMainMissionIdScRsp = 1257, - CmdSyncTaskCsReq = 1248, - CmdFinishCosumeItemMissionScRsp = 1246, - CmdGetMissionDataCsReq = 1295, - CmdFinishCosumeItemMissionCsReq = 1216, - CmdTeleportToMissionResetPointCsReq = 1211, - CmdMissionRewardScNotify = 1276, + CmdSyncTaskScRsp = 1270, + CmdFinishedMissionScNotify = 1222, + CmdGetMainMissionCustomValueScRsp = 1269, + CmdGetMissionDataCsReq = 1220, + CmdUpdateTrackMainMissionIdCsReq = 1228, + CmdFinishCosumeItemMissionScRsp = 1274, + CmdFinishTalkMissionScRsp = 1239, + CmdUpdateMainMissionCustomValueScRsp = 1218, + CmdAcceptMainMissionCsReq = 1278, + CmdFinishCosumeItemMissionCsReq = 1205, + CmdSubMissionRewardScNotify = 1231, + CmdMissionAcceptScNotify = 1203, + CmdGetMissionDataScRsp = 1291, + CmdStartFinishMainMissionScNotify = 1284, + CmdFinishTalkMissionCsReq = 1267, + CmdGetMissionStatusCsReq = 1268, + CmdUpdateTrackMainMissionIdScRsp = 1223, + CmdTeleportToMissionResetPointCsReq = 1244, + CmdUpdateMainMissionCustomValueCsReq = 1240, + CmdSyncTaskCsReq = 1221, + CmdTeleportToMissionResetPointScRsp = 1249, + CmdAcceptMainMissionScRsp = 1234, + CmdGetMissionStatusScRsp = 1294, + CmdMissionRewardScNotify = 1227, + CmdGetMainMissionCustomValueCsReq = 1245, + CmdStartFinishSubMissionScNotify = 1241, + CmdMissionGroupWarnScNotify = 1202, } impl CmdMissionType { /// String value of the enum field names used in the ProtoBuf definition. @@ -52576,104 +54929,104 @@ impl CmdMissionType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdMissionTypeNone", - Self::CmdSubMissionRewardScNotify => "CmdSubMissionRewardScNotify", - Self::CmdStartFinishMainMissionScNotify => { - "CmdStartFinishMainMissionScNotify" - } - Self::CmdUpdateMainMissionCustomValueScRsp => { - "CmdUpdateMainMissionCustomValueScRsp" - } - Self::CmdStartFinishSubMissionScNotify => "CmdStartFinishSubMissionScNotify", - Self::CmdGetMissionDataScRsp => "CmdGetMissionDataScRsp", - Self::CmdGetMissionStatusCsReq => "CmdGetMissionStatusCsReq", + Self::CmdSyncTaskScRsp => "CmdSyncTaskScRsp", + Self::CmdFinishedMissionScNotify => "CmdFinishedMissionScNotify", Self::CmdGetMainMissionCustomValueScRsp => { "CmdGetMainMissionCustomValueScRsp" } - Self::CmdFinishedMissionScNotify => "CmdFinishedMissionScNotify", - Self::CmdGetMissionStatusScRsp => "CmdGetMissionStatusScRsp", - Self::CmdSyncTaskScRsp => "CmdSyncTaskScRsp", - Self::CmdGetMainMissionCustomValueCsReq => { - "CmdGetMainMissionCustomValueCsReq" + Self::CmdGetMissionDataCsReq => "CmdGetMissionDataCsReq", + Self::CmdUpdateTrackMainMissionIdCsReq => "CmdUpdateTrackMainMissionIdCsReq", + Self::CmdFinishCosumeItemMissionScRsp => "CmdFinishCosumeItemMissionScRsp", + Self::CmdFinishTalkMissionScRsp => "CmdFinishTalkMissionScRsp", + Self::CmdUpdateMainMissionCustomValueScRsp => { + "CmdUpdateMainMissionCustomValueScRsp" + } + Self::CmdAcceptMainMissionCsReq => "CmdAcceptMainMissionCsReq", + Self::CmdFinishCosumeItemMissionCsReq => "CmdFinishCosumeItemMissionCsReq", + Self::CmdSubMissionRewardScNotify => "CmdSubMissionRewardScNotify", + Self::CmdMissionAcceptScNotify => "CmdMissionAcceptScNotify", + Self::CmdGetMissionDataScRsp => "CmdGetMissionDataScRsp", + Self::CmdStartFinishMainMissionScNotify => { + "CmdStartFinishMainMissionScNotify" + } + Self::CmdFinishTalkMissionCsReq => "CmdFinishTalkMissionCsReq", + Self::CmdGetMissionStatusCsReq => "CmdGetMissionStatusCsReq", + Self::CmdUpdateTrackMainMissionIdScRsp => "CmdUpdateTrackMainMissionIdScRsp", + Self::CmdTeleportToMissionResetPointCsReq => { + "CmdTeleportToMissionResetPointCsReq" } Self::CmdUpdateMainMissionCustomValueCsReq => { "CmdUpdateMainMissionCustomValueCsReq" } - Self::CmdFinishTalkMissionCsReq => "CmdFinishTalkMissionCsReq", - Self::CmdUpdateTrackMainMissionIdCsReq => "CmdUpdateTrackMainMissionIdCsReq", + Self::CmdSyncTaskCsReq => "CmdSyncTaskCsReq", Self::CmdTeleportToMissionResetPointScRsp => { "CmdTeleportToMissionResetPointScRsp" } Self::CmdAcceptMainMissionScRsp => "CmdAcceptMainMissionScRsp", - Self::CmdMissionAcceptScNotify => "CmdMissionAcceptScNotify", - Self::CmdAcceptMainMissionCsReq => "CmdAcceptMainMissionCsReq", - Self::CmdFinishTalkMissionScRsp => "CmdFinishTalkMissionScRsp", - Self::CmdMissionGroupWarnScNotify => "CmdMissionGroupWarnScNotify", - Self::CmdUpdateTrackMainMissionIdScRsp => "CmdUpdateTrackMainMissionIdScRsp", - Self::CmdSyncTaskCsReq => "CmdSyncTaskCsReq", - Self::CmdFinishCosumeItemMissionScRsp => "CmdFinishCosumeItemMissionScRsp", - Self::CmdGetMissionDataCsReq => "CmdGetMissionDataCsReq", - Self::CmdFinishCosumeItemMissionCsReq => "CmdFinishCosumeItemMissionCsReq", - Self::CmdTeleportToMissionResetPointCsReq => { - "CmdTeleportToMissionResetPointCsReq" - } + Self::CmdGetMissionStatusScRsp => "CmdGetMissionStatusScRsp", Self::CmdMissionRewardScNotify => "CmdMissionRewardScNotify", + Self::CmdGetMainMissionCustomValueCsReq => { + "CmdGetMainMissionCustomValueCsReq" + } + Self::CmdStartFinishSubMissionScNotify => "CmdStartFinishSubMissionScNotify", + Self::CmdMissionGroupWarnScNotify => "CmdMissionGroupWarnScNotify", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdMissionTypeNone" => Some(Self::None), - "CmdSubMissionRewardScNotify" => Some(Self::CmdSubMissionRewardScNotify), - "CmdStartFinishMainMissionScNotify" => { - Some(Self::CmdStartFinishMainMissionScNotify) - } - "CmdUpdateMainMissionCustomValueScRsp" => { - Some(Self::CmdUpdateMainMissionCustomValueScRsp) - } - "CmdStartFinishSubMissionScNotify" => { - Some(Self::CmdStartFinishSubMissionScNotify) - } - "CmdGetMissionDataScRsp" => Some(Self::CmdGetMissionDataScRsp), - "CmdGetMissionStatusCsReq" => Some(Self::CmdGetMissionStatusCsReq), + "CmdSyncTaskScRsp" => Some(Self::CmdSyncTaskScRsp), + "CmdFinishedMissionScNotify" => Some(Self::CmdFinishedMissionScNotify), "CmdGetMainMissionCustomValueScRsp" => { Some(Self::CmdGetMainMissionCustomValueScRsp) } - "CmdFinishedMissionScNotify" => Some(Self::CmdFinishedMissionScNotify), - "CmdGetMissionStatusScRsp" => Some(Self::CmdGetMissionStatusScRsp), - "CmdSyncTaskScRsp" => Some(Self::CmdSyncTaskScRsp), - "CmdGetMainMissionCustomValueCsReq" => { - Some(Self::CmdGetMainMissionCustomValueCsReq) - } - "CmdUpdateMainMissionCustomValueCsReq" => { - Some(Self::CmdUpdateMainMissionCustomValueCsReq) - } - "CmdFinishTalkMissionCsReq" => Some(Self::CmdFinishTalkMissionCsReq), + "CmdGetMissionDataCsReq" => Some(Self::CmdGetMissionDataCsReq), "CmdUpdateTrackMainMissionIdCsReq" => { Some(Self::CmdUpdateTrackMainMissionIdCsReq) } - "CmdTeleportToMissionResetPointScRsp" => { - Some(Self::CmdTeleportToMissionResetPointScRsp) - } - "CmdAcceptMainMissionScRsp" => Some(Self::CmdAcceptMainMissionScRsp), - "CmdMissionAcceptScNotify" => Some(Self::CmdMissionAcceptScNotify), - "CmdAcceptMainMissionCsReq" => Some(Self::CmdAcceptMainMissionCsReq), - "CmdFinishTalkMissionScRsp" => Some(Self::CmdFinishTalkMissionScRsp), - "CmdMissionGroupWarnScNotify" => Some(Self::CmdMissionGroupWarnScNotify), - "CmdUpdateTrackMainMissionIdScRsp" => { - Some(Self::CmdUpdateTrackMainMissionIdScRsp) - } - "CmdSyncTaskCsReq" => Some(Self::CmdSyncTaskCsReq), "CmdFinishCosumeItemMissionScRsp" => { Some(Self::CmdFinishCosumeItemMissionScRsp) } - "CmdGetMissionDataCsReq" => Some(Self::CmdGetMissionDataCsReq), + "CmdFinishTalkMissionScRsp" => Some(Self::CmdFinishTalkMissionScRsp), + "CmdUpdateMainMissionCustomValueScRsp" => { + Some(Self::CmdUpdateMainMissionCustomValueScRsp) + } + "CmdAcceptMainMissionCsReq" => Some(Self::CmdAcceptMainMissionCsReq), "CmdFinishCosumeItemMissionCsReq" => { Some(Self::CmdFinishCosumeItemMissionCsReq) } + "CmdSubMissionRewardScNotify" => Some(Self::CmdSubMissionRewardScNotify), + "CmdMissionAcceptScNotify" => Some(Self::CmdMissionAcceptScNotify), + "CmdGetMissionDataScRsp" => Some(Self::CmdGetMissionDataScRsp), + "CmdStartFinishMainMissionScNotify" => { + Some(Self::CmdStartFinishMainMissionScNotify) + } + "CmdFinishTalkMissionCsReq" => Some(Self::CmdFinishTalkMissionCsReq), + "CmdGetMissionStatusCsReq" => Some(Self::CmdGetMissionStatusCsReq), + "CmdUpdateTrackMainMissionIdScRsp" => { + Some(Self::CmdUpdateTrackMainMissionIdScRsp) + } "CmdTeleportToMissionResetPointCsReq" => { Some(Self::CmdTeleportToMissionResetPointCsReq) } + "CmdUpdateMainMissionCustomValueCsReq" => { + Some(Self::CmdUpdateMainMissionCustomValueCsReq) + } + "CmdSyncTaskCsReq" => Some(Self::CmdSyncTaskCsReq), + "CmdTeleportToMissionResetPointScRsp" => { + Some(Self::CmdTeleportToMissionResetPointScRsp) + } + "CmdAcceptMainMissionScRsp" => Some(Self::CmdAcceptMainMissionScRsp), + "CmdGetMissionStatusScRsp" => Some(Self::CmdGetMissionStatusScRsp), "CmdMissionRewardScNotify" => Some(Self::CmdMissionRewardScNotify), + "CmdGetMainMissionCustomValueCsReq" => { + Some(Self::CmdGetMainMissionCustomValueCsReq) + } + "CmdStartFinishSubMissionScNotify" => { + Some(Self::CmdStartFinishSubMissionScNotify) + } + "CmdMissionGroupWarnScNotify" => Some(Self::CmdMissionGroupWarnScNotify), _ => None, } } @@ -52829,89 +55182,89 @@ impl Nnfdmniijgo { #[repr(i32)] pub enum CmdMonopolyType { None = 0, - CmdMonopolySelectOptionScRsp = 7072, - CmdMonopolyScrachRaffleTicketScRsp = 7070, - CmdMonopolyCellUpdateNotify = 7040, - CmdMonopolyBuyGoodsScRsp = 7077, - CmdMonopolyClickMbtiReportScRsp = 7038, - CmdMonopolyTakeRaffleTicketRewardScRsp = 7097, - CmdGetMbtiReportScRsp = 7001, - CmdMonopolyAcceptQuizScRsp = 7057, - CmdMonopolyGameBingoFlipCardScRsp = 7091, - CmdMonopolyGetRegionProgressScRsp = 7018, - CmdGetMonopolyFriendRankingListScRsp = 7087, - CmdGetMonopolyDailyReportScRsp = 7015, - CmdMonopolyGameCreateScNotify = 7007, - CmdMonopolyMoveCsReq = 7052, - CmdMonopolyGuessBuyInformationCsReq = 7006, - CmdMonopolyGetRafflePoolInfoCsReq = 7044, - CmdMonopolyConfirmRandomScRsp = 7033, - CmdMonopolyGuessBuyInformationScRsp = 7045, - CmdMonopolySocialEventEffectScNotify = 7094, - CmdMonopolyRollDiceCsReq = 7048, - CmdMonopolyGameRaiseRatioScRsp = 7084, - CmdMonopolyActionResultScNotify = 7031, - CmdMonopolyBuyGoodsCsReq = 7042, - CmdMonopolyMoveScRsp = 7022, - CmdMonopolyEventLoadUpdateScNotify = 7096, - CmdMonopolyClickCellCsReq = 7055, - CmdMonopolyConfirmRandomCsReq = 7043, - CmdMonopolyGuessChooseScRsp = 7064, - CmdMonopolyGiveUpCurContentScRsp = 7063, - CmdMonopolyTakeRaffleTicketRewardCsReq = 7010, - CmdMonopolyGetDailyInitItemScRsp = 7019, - CmdGetSocialEventServerCacheScRsp = 7074, - CmdMonopolyGameSettleScNotify = 7037, - CmdMonopolyGiveUpCurContentCsReq = 7029, - CmdGetMonopolyFriendRankingListCsReq = 7099, - CmdMonopolyGetRegionProgressCsReq = 7004, - CmdMonopolyGameGachaScRsp = 7075, - CmdMonopolyConditionUpdateScNotify = 7089, - CmdMonopolyLikeCsReq = 7008, - CmdMonopolyUpgradeAssetScRsp = 7021, - CmdMonopolyContentUpdateScNotify = 7025, - CmdMonopolyGetDailyInitItemCsReq = 7050, - CmdMonopolyLikeScRsp = 7035, - CmdMonopolyAcceptQuizCsReq = 7024, - CmdMonopolyLikeScNotify = 7034, - CmdMonopolyReRollRandomCsReq = 7002, - CmdMonopolyUpgradeAssetCsReq = 7058, - CmdMonopolyClickCellScRsp = 7080, - CmdMonopolyTakePhaseRewardCsReq = 7073, - CmdMonopolyGameRaiseRatioCsReq = 7014, - CmdGetMbtiReportCsReq = 7068, - CmdMonopolyGuessChooseCsReq = 7098, - CmdMonopolyCheatDiceCsReq = 7011, - CmdGetMonopolyInfoScRsp = 7032, - CmdMonopolyDailySettleScNotify = 7054, - CmdMonopolyGetRaffleTicketCsReq = 7049, - CmdMonopolyReRollRandomScRsp = 7039, - CmdGetSocialEventServerCacheCsReq = 7027, - CmdGetMonopolyDailyReportCsReq = 7028, - CmdMonopolyGetRafflePoolInfoScRsp = 7026, - CmdDeleteSocialEventServerCacheCsReq = 7090, - CmdDeleteSocialEventServerCacheScRsp = 7017, - CmdMonopolyCheatDiceScRsp = 7093, - CmdMonopolyClickMbtiReportCsReq = 7088, - CmdGetMonopolyMbtiReportRewardCsReq = 7041, - CmdMonopolySttUpdateScNotify = 7012, - CmdMonopolyEventSelectFriendScRsp = 7036, - CmdDailyFirstEnterMonopolyActivityCsReq = 7016, - CmdMonopolyScrachRaffleTicketCsReq = 7079, - CmdMonopolyGameGachaCsReq = 7030, - CmdGetMonopolyMbtiReportRewardScRsp = 7062, - CmdDailyFirstEnterMonopolyActivityScRsp = 7046, - CmdMonopolyGuessDrawScNotify = 7013, - CmdMonopolyTakePhaseRewardScRsp = 7067, - CmdMonopolyRollRandomCsReq = 7083, - CmdMonopolyGameBingoFlipCardCsReq = 7051, - CmdMonopolyGetRaffleTicketScRsp = 7003, - CmdMonopolyRollDiceScRsp = 7071, - CmdMonopolyEventSelectFriendCsReq = 7053, - CmdMonopolyRollRandomScRsp = 7060, - CmdGetMonopolyInfoCsReq = 7095, - CmdMonopolyQuizDurationChangeScNotify = 7078, - CmdMonopolySelectOptionCsReq = 7056, + CmdGetSocialEventServerCacheCsReq = 7053, + CmdMonopolyConfirmRandomScRsp = 7068, + CmdGetMbtiReportScRsp = 7089, + CmdMonopolyGuessChooseCsReq = 7040, + CmdMonopolyGameCreateScNotify = 7022, + CmdMonopolyEventLoadUpdateScNotify = 7001, + CmdMonopolyConditionUpdateScNotify = 7058, + CmdGetMonopolyFriendRankingListCsReq = 7016, + CmdMonopolyRollDiceCsReq = 7021, + CmdMonopolySttUpdateScNotify = 7079, + CmdGetMonopolyMbtiReportRewardCsReq = 7082, + CmdMonopolyLikeScNotify = 7026, + CmdGetSocialEventServerCacheScRsp = 7033, + CmdMonopolyReRollRandomCsReq = 7085, + CmdMonopolyGetRegionProgressCsReq = 7030, + CmdMonopolyUpgradeAssetScRsp = 7009, + CmdMonopolyRollDiceScRsp = 7070, + CmdDailyFirstEnterMonopolyActivityCsReq = 7005, + CmdMonopolyGiveUpCurContentScRsp = 7031, + CmdMonopolyGetRafflePoolInfoScRsp = 7011, + CmdMonopolyReRollRandomScRsp = 7038, + CmdMonopolyTakePhaseRewardCsReq = 7051, + CmdMonopolyClickCellScRsp = 7066, + CmdMonopolyTakeRaffleTicketRewardCsReq = 7062, + CmdMonopolyGameSettleScNotify = 7034, + CmdGetMonopolyInfoCsReq = 7020, + CmdMonopolyGiveUpCurContentCsReq = 7006, + CmdMonopolyRollRandomCsReq = 7073, + CmdMonopolyScrachRaffleTicketCsReq = 7086, + CmdMonopolyUpgradeAssetCsReq = 7087, + CmdGetMonopolyDailyReportCsReq = 7061, + CmdMonopolyGameGachaCsReq = 7045, + CmdDailyFirstEnterMonopolyActivityScRsp = 7074, + CmdMonopolyClickMbtiReportCsReq = 7046, + CmdMonopolyAcceptQuizCsReq = 7028, + CmdGetMonopolyFriendRankingListScRsp = 7093, + CmdMonopolyGuessBuyInformationScRsp = 7019, + CmdMonopolyMoveScRsp = 7054, + CmdDeleteSocialEventServerCacheScRsp = 7048, + CmdMonopolyGameRaiseRatioScRsp = 7078, + CmdMonopolySocialEventEffectScNotify = 7035, + CmdMonopolyAcceptQuizScRsp = 7023, + CmdMonopolyGetDailyInitItemScRsp = 7100, + CmdMonopolyGuessBuyInformationCsReq = 7047, + CmdGetMbtiReportCsReq = 7090, + CmdMonopolyGuessChooseScRsp = 7018, + CmdMonopolyScrachRaffleTicketScRsp = 7075, + CmdMonopolyQuizDurationChangeScNotify = 7071, + CmdMonopolyContentUpdateScNotify = 7041, + CmdMonopolyActionResultScNotify = 7067, + CmdGetMonopolyInfoScRsp = 7091, + CmdMonopolyEventSelectFriendCsReq = 7037, + CmdMonopolyBuyGoodsScRsp = 7036, + CmdMonopolyGetDailyInitItemCsReq = 7017, + CmdMonopolySelectOptionCsReq = 7077, + CmdMonopolyConfirmRandomCsReq = 7052, + CmdMonopolyClickMbtiReportScRsp = 7042, + CmdMonopolyCheatDiceScRsp = 7049, + CmdMonopolySelectOptionScRsp = 7080, + CmdMonopolyLikeScRsp = 7057, + CmdMonopolyGuessDrawScNotify = 7055, + CmdMonopolyTakePhaseRewardScRsp = 7056, + CmdMonopolyMoveCsReq = 7059, + CmdMonopolyTakeRaffleTicketRewardScRsp = 7014, + CmdMonopolyGetRaffleTicketCsReq = 7043, + CmdMonopolyGameRaiseRatioCsReq = 7084, + CmdMonopolyCellUpdateNotify = 7039, + CmdMonopolyGetRegionProgressScRsp = 7083, + CmdMonopolyGameBingoFlipCardCsReq = 7003, + CmdMonopolyGameGachaScRsp = 7069, + CmdMonopolyGetRaffleTicketScRsp = 7012, + CmdGetMonopolyDailyReportScRsp = 7008, + CmdMonopolyLikeCsReq = 7064, + CmdMonopolyBuyGoodsCsReq = 7094, + CmdMonopolyGameBingoFlipCardScRsp = 7024, + CmdDeleteSocialEventServerCacheCsReq = 7007, + CmdMonopolyCheatDiceCsReq = 7044, + CmdGetMonopolyMbtiReportRewardScRsp = 7099, + CmdMonopolyGetRafflePoolInfoCsReq = 7032, + CmdMonopolyClickCellCsReq = 7097, + CmdMonopolyDailySettleScNotify = 7096, + CmdMonopolyEventSelectFriendScRsp = 7072, + CmdMonopolyRollRandomScRsp = 7098, } impl CmdMonopolyType { /// String value of the enum field names used in the ProtoBuf definition. @@ -52921,324 +55274,324 @@ impl CmdMonopolyType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdMonopolyTypeNone", - Self::CmdMonopolySelectOptionScRsp => "CmdMonopolySelectOptionScRsp", - Self::CmdMonopolyScrachRaffleTicketScRsp => { - "CmdMonopolyScrachRaffleTicketScRsp" - } - Self::CmdMonopolyCellUpdateNotify => "CmdMonopolyCellUpdateNotify", - Self::CmdMonopolyBuyGoodsScRsp => "CmdMonopolyBuyGoodsScRsp", - Self::CmdMonopolyClickMbtiReportScRsp => "CmdMonopolyClickMbtiReportScRsp", - Self::CmdMonopolyTakeRaffleTicketRewardScRsp => { - "CmdMonopolyTakeRaffleTicketRewardScRsp" - } - Self::CmdGetMbtiReportScRsp => "CmdGetMbtiReportScRsp", - Self::CmdMonopolyAcceptQuizScRsp => "CmdMonopolyAcceptQuizScRsp", - Self::CmdMonopolyGameBingoFlipCardScRsp => { - "CmdMonopolyGameBingoFlipCardScRsp" - } - Self::CmdMonopolyGetRegionProgressScRsp => { - "CmdMonopolyGetRegionProgressScRsp" - } - Self::CmdGetMonopolyFriendRankingListScRsp => { - "CmdGetMonopolyFriendRankingListScRsp" - } - Self::CmdGetMonopolyDailyReportScRsp => "CmdGetMonopolyDailyReportScRsp", - Self::CmdMonopolyGameCreateScNotify => "CmdMonopolyGameCreateScNotify", - Self::CmdMonopolyMoveCsReq => "CmdMonopolyMoveCsReq", - Self::CmdMonopolyGuessBuyInformationCsReq => { - "CmdMonopolyGuessBuyInformationCsReq" - } - Self::CmdMonopolyGetRafflePoolInfoCsReq => { - "CmdMonopolyGetRafflePoolInfoCsReq" - } - Self::CmdMonopolyConfirmRandomScRsp => "CmdMonopolyConfirmRandomScRsp", - Self::CmdMonopolyGuessBuyInformationScRsp => { - "CmdMonopolyGuessBuyInformationScRsp" - } - Self::CmdMonopolySocialEventEffectScNotify => { - "CmdMonopolySocialEventEffectScNotify" - } - Self::CmdMonopolyRollDiceCsReq => "CmdMonopolyRollDiceCsReq", - Self::CmdMonopolyGameRaiseRatioScRsp => "CmdMonopolyGameRaiseRatioScRsp", - Self::CmdMonopolyActionResultScNotify => "CmdMonopolyActionResultScNotify", - Self::CmdMonopolyBuyGoodsCsReq => "CmdMonopolyBuyGoodsCsReq", - Self::CmdMonopolyMoveScRsp => "CmdMonopolyMoveScRsp", - Self::CmdMonopolyEventLoadUpdateScNotify => { - "CmdMonopolyEventLoadUpdateScNotify" - } - Self::CmdMonopolyClickCellCsReq => "CmdMonopolyClickCellCsReq", - Self::CmdMonopolyConfirmRandomCsReq => "CmdMonopolyConfirmRandomCsReq", - Self::CmdMonopolyGuessChooseScRsp => "CmdMonopolyGuessChooseScRsp", - Self::CmdMonopolyGiveUpCurContentScRsp => "CmdMonopolyGiveUpCurContentScRsp", - Self::CmdMonopolyTakeRaffleTicketRewardCsReq => { - "CmdMonopolyTakeRaffleTicketRewardCsReq" - } - Self::CmdMonopolyGetDailyInitItemScRsp => "CmdMonopolyGetDailyInitItemScRsp", - Self::CmdGetSocialEventServerCacheScRsp => { - "CmdGetSocialEventServerCacheScRsp" - } - Self::CmdMonopolyGameSettleScNotify => "CmdMonopolyGameSettleScNotify", - Self::CmdMonopolyGiveUpCurContentCsReq => "CmdMonopolyGiveUpCurContentCsReq", - Self::CmdGetMonopolyFriendRankingListCsReq => { - "CmdGetMonopolyFriendRankingListCsReq" - } - Self::CmdMonopolyGetRegionProgressCsReq => { - "CmdMonopolyGetRegionProgressCsReq" - } - Self::CmdMonopolyGameGachaScRsp => "CmdMonopolyGameGachaScRsp", - Self::CmdMonopolyConditionUpdateScNotify => { - "CmdMonopolyConditionUpdateScNotify" - } - Self::CmdMonopolyLikeCsReq => "CmdMonopolyLikeCsReq", - Self::CmdMonopolyUpgradeAssetScRsp => "CmdMonopolyUpgradeAssetScRsp", - Self::CmdMonopolyContentUpdateScNotify => "CmdMonopolyContentUpdateScNotify", - Self::CmdMonopolyGetDailyInitItemCsReq => "CmdMonopolyGetDailyInitItemCsReq", - Self::CmdMonopolyLikeScRsp => "CmdMonopolyLikeScRsp", - Self::CmdMonopolyAcceptQuizCsReq => "CmdMonopolyAcceptQuizCsReq", - Self::CmdMonopolyLikeScNotify => "CmdMonopolyLikeScNotify", - Self::CmdMonopolyReRollRandomCsReq => "CmdMonopolyReRollRandomCsReq", - Self::CmdMonopolyUpgradeAssetCsReq => "CmdMonopolyUpgradeAssetCsReq", - Self::CmdMonopolyClickCellScRsp => "CmdMonopolyClickCellScRsp", - Self::CmdMonopolyTakePhaseRewardCsReq => "CmdMonopolyTakePhaseRewardCsReq", - Self::CmdMonopolyGameRaiseRatioCsReq => "CmdMonopolyGameRaiseRatioCsReq", - Self::CmdGetMbtiReportCsReq => "CmdGetMbtiReportCsReq", - Self::CmdMonopolyGuessChooseCsReq => "CmdMonopolyGuessChooseCsReq", - Self::CmdMonopolyCheatDiceCsReq => "CmdMonopolyCheatDiceCsReq", - Self::CmdGetMonopolyInfoScRsp => "CmdGetMonopolyInfoScRsp", - Self::CmdMonopolyDailySettleScNotify => "CmdMonopolyDailySettleScNotify", - Self::CmdMonopolyGetRaffleTicketCsReq => "CmdMonopolyGetRaffleTicketCsReq", - Self::CmdMonopolyReRollRandomScRsp => "CmdMonopolyReRollRandomScRsp", Self::CmdGetSocialEventServerCacheCsReq => { "CmdGetSocialEventServerCacheCsReq" } - Self::CmdGetMonopolyDailyReportCsReq => "CmdGetMonopolyDailyReportCsReq", + Self::CmdMonopolyConfirmRandomScRsp => "CmdMonopolyConfirmRandomScRsp", + Self::CmdGetMbtiReportScRsp => "CmdGetMbtiReportScRsp", + Self::CmdMonopolyGuessChooseCsReq => "CmdMonopolyGuessChooseCsReq", + Self::CmdMonopolyGameCreateScNotify => "CmdMonopolyGameCreateScNotify", + Self::CmdMonopolyEventLoadUpdateScNotify => { + "CmdMonopolyEventLoadUpdateScNotify" + } + Self::CmdMonopolyConditionUpdateScNotify => { + "CmdMonopolyConditionUpdateScNotify" + } + Self::CmdGetMonopolyFriendRankingListCsReq => { + "CmdGetMonopolyFriendRankingListCsReq" + } + Self::CmdMonopolyRollDiceCsReq => "CmdMonopolyRollDiceCsReq", + Self::CmdMonopolySttUpdateScNotify => "CmdMonopolySttUpdateScNotify", + Self::CmdGetMonopolyMbtiReportRewardCsReq => { + "CmdGetMonopolyMbtiReportRewardCsReq" + } + Self::CmdMonopolyLikeScNotify => "CmdMonopolyLikeScNotify", + Self::CmdGetSocialEventServerCacheScRsp => { + "CmdGetSocialEventServerCacheScRsp" + } + Self::CmdMonopolyReRollRandomCsReq => "CmdMonopolyReRollRandomCsReq", + Self::CmdMonopolyGetRegionProgressCsReq => { + "CmdMonopolyGetRegionProgressCsReq" + } + Self::CmdMonopolyUpgradeAssetScRsp => "CmdMonopolyUpgradeAssetScRsp", + Self::CmdMonopolyRollDiceScRsp => "CmdMonopolyRollDiceScRsp", + Self::CmdDailyFirstEnterMonopolyActivityCsReq => { + "CmdDailyFirstEnterMonopolyActivityCsReq" + } + Self::CmdMonopolyGiveUpCurContentScRsp => "CmdMonopolyGiveUpCurContentScRsp", Self::CmdMonopolyGetRafflePoolInfoScRsp => { "CmdMonopolyGetRafflePoolInfoScRsp" } + Self::CmdMonopolyReRollRandomScRsp => "CmdMonopolyReRollRandomScRsp", + Self::CmdMonopolyTakePhaseRewardCsReq => "CmdMonopolyTakePhaseRewardCsReq", + Self::CmdMonopolyClickCellScRsp => "CmdMonopolyClickCellScRsp", + Self::CmdMonopolyTakeRaffleTicketRewardCsReq => { + "CmdMonopolyTakeRaffleTicketRewardCsReq" + } + Self::CmdMonopolyGameSettleScNotify => "CmdMonopolyGameSettleScNotify", + Self::CmdGetMonopolyInfoCsReq => "CmdGetMonopolyInfoCsReq", + Self::CmdMonopolyGiveUpCurContentCsReq => "CmdMonopolyGiveUpCurContentCsReq", + Self::CmdMonopolyRollRandomCsReq => "CmdMonopolyRollRandomCsReq", + Self::CmdMonopolyScrachRaffleTicketCsReq => { + "CmdMonopolyScrachRaffleTicketCsReq" + } + Self::CmdMonopolyUpgradeAssetCsReq => "CmdMonopolyUpgradeAssetCsReq", + Self::CmdGetMonopolyDailyReportCsReq => "CmdGetMonopolyDailyReportCsReq", + Self::CmdMonopolyGameGachaCsReq => "CmdMonopolyGameGachaCsReq", + Self::CmdDailyFirstEnterMonopolyActivityScRsp => { + "CmdDailyFirstEnterMonopolyActivityScRsp" + } + Self::CmdMonopolyClickMbtiReportCsReq => "CmdMonopolyClickMbtiReportCsReq", + Self::CmdMonopolyAcceptQuizCsReq => "CmdMonopolyAcceptQuizCsReq", + Self::CmdGetMonopolyFriendRankingListScRsp => { + "CmdGetMonopolyFriendRankingListScRsp" + } + Self::CmdMonopolyGuessBuyInformationScRsp => { + "CmdMonopolyGuessBuyInformationScRsp" + } + Self::CmdMonopolyMoveScRsp => "CmdMonopolyMoveScRsp", + Self::CmdDeleteSocialEventServerCacheScRsp => { + "CmdDeleteSocialEventServerCacheScRsp" + } + Self::CmdMonopolyGameRaiseRatioScRsp => "CmdMonopolyGameRaiseRatioScRsp", + Self::CmdMonopolySocialEventEffectScNotify => { + "CmdMonopolySocialEventEffectScNotify" + } + Self::CmdMonopolyAcceptQuizScRsp => "CmdMonopolyAcceptQuizScRsp", + Self::CmdMonopolyGetDailyInitItemScRsp => "CmdMonopolyGetDailyInitItemScRsp", + Self::CmdMonopolyGuessBuyInformationCsReq => { + "CmdMonopolyGuessBuyInformationCsReq" + } + Self::CmdGetMbtiReportCsReq => "CmdGetMbtiReportCsReq", + Self::CmdMonopolyGuessChooseScRsp => "CmdMonopolyGuessChooseScRsp", + Self::CmdMonopolyScrachRaffleTicketScRsp => { + "CmdMonopolyScrachRaffleTicketScRsp" + } + Self::CmdMonopolyQuizDurationChangeScNotify => { + "CmdMonopolyQuizDurationChangeScNotify" + } + Self::CmdMonopolyContentUpdateScNotify => "CmdMonopolyContentUpdateScNotify", + Self::CmdMonopolyActionResultScNotify => "CmdMonopolyActionResultScNotify", + Self::CmdGetMonopolyInfoScRsp => "CmdGetMonopolyInfoScRsp", + Self::CmdMonopolyEventSelectFriendCsReq => { + "CmdMonopolyEventSelectFriendCsReq" + } + Self::CmdMonopolyBuyGoodsScRsp => "CmdMonopolyBuyGoodsScRsp", + Self::CmdMonopolyGetDailyInitItemCsReq => "CmdMonopolyGetDailyInitItemCsReq", + Self::CmdMonopolySelectOptionCsReq => "CmdMonopolySelectOptionCsReq", + Self::CmdMonopolyConfirmRandomCsReq => "CmdMonopolyConfirmRandomCsReq", + Self::CmdMonopolyClickMbtiReportScRsp => "CmdMonopolyClickMbtiReportScRsp", + Self::CmdMonopolyCheatDiceScRsp => "CmdMonopolyCheatDiceScRsp", + Self::CmdMonopolySelectOptionScRsp => "CmdMonopolySelectOptionScRsp", + Self::CmdMonopolyLikeScRsp => "CmdMonopolyLikeScRsp", + Self::CmdMonopolyGuessDrawScNotify => "CmdMonopolyGuessDrawScNotify", + Self::CmdMonopolyTakePhaseRewardScRsp => "CmdMonopolyTakePhaseRewardScRsp", + Self::CmdMonopolyMoveCsReq => "CmdMonopolyMoveCsReq", + Self::CmdMonopolyTakeRaffleTicketRewardScRsp => { + "CmdMonopolyTakeRaffleTicketRewardScRsp" + } + Self::CmdMonopolyGetRaffleTicketCsReq => "CmdMonopolyGetRaffleTicketCsReq", + Self::CmdMonopolyGameRaiseRatioCsReq => "CmdMonopolyGameRaiseRatioCsReq", + Self::CmdMonopolyCellUpdateNotify => "CmdMonopolyCellUpdateNotify", + Self::CmdMonopolyGetRegionProgressScRsp => { + "CmdMonopolyGetRegionProgressScRsp" + } + Self::CmdMonopolyGameBingoFlipCardCsReq => { + "CmdMonopolyGameBingoFlipCardCsReq" + } + Self::CmdMonopolyGameGachaScRsp => "CmdMonopolyGameGachaScRsp", + Self::CmdMonopolyGetRaffleTicketScRsp => "CmdMonopolyGetRaffleTicketScRsp", + Self::CmdGetMonopolyDailyReportScRsp => "CmdGetMonopolyDailyReportScRsp", + Self::CmdMonopolyLikeCsReq => "CmdMonopolyLikeCsReq", + Self::CmdMonopolyBuyGoodsCsReq => "CmdMonopolyBuyGoodsCsReq", + Self::CmdMonopolyGameBingoFlipCardScRsp => { + "CmdMonopolyGameBingoFlipCardScRsp" + } Self::CmdDeleteSocialEventServerCacheCsReq => { "CmdDeleteSocialEventServerCacheCsReq" } - Self::CmdDeleteSocialEventServerCacheScRsp => { - "CmdDeleteSocialEventServerCacheScRsp" - } - Self::CmdMonopolyCheatDiceScRsp => "CmdMonopolyCheatDiceScRsp", - Self::CmdMonopolyClickMbtiReportCsReq => "CmdMonopolyClickMbtiReportCsReq", - Self::CmdGetMonopolyMbtiReportRewardCsReq => { - "CmdGetMonopolyMbtiReportRewardCsReq" - } - Self::CmdMonopolySttUpdateScNotify => "CmdMonopolySttUpdateScNotify", - Self::CmdMonopolyEventSelectFriendScRsp => { - "CmdMonopolyEventSelectFriendScRsp" - } - Self::CmdDailyFirstEnterMonopolyActivityCsReq => { - "CmdDailyFirstEnterMonopolyActivityCsReq" - } - Self::CmdMonopolyScrachRaffleTicketCsReq => { - "CmdMonopolyScrachRaffleTicketCsReq" - } - Self::CmdMonopolyGameGachaCsReq => "CmdMonopolyGameGachaCsReq", + Self::CmdMonopolyCheatDiceCsReq => "CmdMonopolyCheatDiceCsReq", Self::CmdGetMonopolyMbtiReportRewardScRsp => { "CmdGetMonopolyMbtiReportRewardScRsp" } - Self::CmdDailyFirstEnterMonopolyActivityScRsp => { - "CmdDailyFirstEnterMonopolyActivityScRsp" + Self::CmdMonopolyGetRafflePoolInfoCsReq => { + "CmdMonopolyGetRafflePoolInfoCsReq" } - Self::CmdMonopolyGuessDrawScNotify => "CmdMonopolyGuessDrawScNotify", - Self::CmdMonopolyTakePhaseRewardScRsp => "CmdMonopolyTakePhaseRewardScRsp", - Self::CmdMonopolyRollRandomCsReq => "CmdMonopolyRollRandomCsReq", - Self::CmdMonopolyGameBingoFlipCardCsReq => { - "CmdMonopolyGameBingoFlipCardCsReq" - } - Self::CmdMonopolyGetRaffleTicketScRsp => "CmdMonopolyGetRaffleTicketScRsp", - Self::CmdMonopolyRollDiceScRsp => "CmdMonopolyRollDiceScRsp", - Self::CmdMonopolyEventSelectFriendCsReq => { - "CmdMonopolyEventSelectFriendCsReq" + Self::CmdMonopolyClickCellCsReq => "CmdMonopolyClickCellCsReq", + Self::CmdMonopolyDailySettleScNotify => "CmdMonopolyDailySettleScNotify", + Self::CmdMonopolyEventSelectFriendScRsp => { + "CmdMonopolyEventSelectFriendScRsp" } Self::CmdMonopolyRollRandomScRsp => "CmdMonopolyRollRandomScRsp", - Self::CmdGetMonopolyInfoCsReq => "CmdGetMonopolyInfoCsReq", - Self::CmdMonopolyQuizDurationChangeScNotify => { - "CmdMonopolyQuizDurationChangeScNotify" - } - Self::CmdMonopolySelectOptionCsReq => "CmdMonopolySelectOptionCsReq", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdMonopolyTypeNone" => Some(Self::None), - "CmdMonopolySelectOptionScRsp" => Some(Self::CmdMonopolySelectOptionScRsp), - "CmdMonopolyScrachRaffleTicketScRsp" => { - Some(Self::CmdMonopolyScrachRaffleTicketScRsp) - } - "CmdMonopolyCellUpdateNotify" => Some(Self::CmdMonopolyCellUpdateNotify), - "CmdMonopolyBuyGoodsScRsp" => Some(Self::CmdMonopolyBuyGoodsScRsp), - "CmdMonopolyClickMbtiReportScRsp" => { - Some(Self::CmdMonopolyClickMbtiReportScRsp) - } - "CmdMonopolyTakeRaffleTicketRewardScRsp" => { - Some(Self::CmdMonopolyTakeRaffleTicketRewardScRsp) - } - "CmdGetMbtiReportScRsp" => Some(Self::CmdGetMbtiReportScRsp), - "CmdMonopolyAcceptQuizScRsp" => Some(Self::CmdMonopolyAcceptQuizScRsp), - "CmdMonopolyGameBingoFlipCardScRsp" => { - Some(Self::CmdMonopolyGameBingoFlipCardScRsp) - } - "CmdMonopolyGetRegionProgressScRsp" => { - Some(Self::CmdMonopolyGetRegionProgressScRsp) - } - "CmdGetMonopolyFriendRankingListScRsp" => { - Some(Self::CmdGetMonopolyFriendRankingListScRsp) - } - "CmdGetMonopolyDailyReportScRsp" => { - Some(Self::CmdGetMonopolyDailyReportScRsp) - } - "CmdMonopolyGameCreateScNotify" => Some(Self::CmdMonopolyGameCreateScNotify), - "CmdMonopolyMoveCsReq" => Some(Self::CmdMonopolyMoveCsReq), - "CmdMonopolyGuessBuyInformationCsReq" => { - Some(Self::CmdMonopolyGuessBuyInformationCsReq) - } - "CmdMonopolyGetRafflePoolInfoCsReq" => { - Some(Self::CmdMonopolyGetRafflePoolInfoCsReq) + "CmdGetSocialEventServerCacheCsReq" => { + Some(Self::CmdGetSocialEventServerCacheCsReq) } "CmdMonopolyConfirmRandomScRsp" => Some(Self::CmdMonopolyConfirmRandomScRsp), - "CmdMonopolyGuessBuyInformationScRsp" => { - Some(Self::CmdMonopolyGuessBuyInformationScRsp) - } - "CmdMonopolySocialEventEffectScNotify" => { - Some(Self::CmdMonopolySocialEventEffectScNotify) - } - "CmdMonopolyRollDiceCsReq" => Some(Self::CmdMonopolyRollDiceCsReq), - "CmdMonopolyGameRaiseRatioScRsp" => { - Some(Self::CmdMonopolyGameRaiseRatioScRsp) - } - "CmdMonopolyActionResultScNotify" => { - Some(Self::CmdMonopolyActionResultScNotify) - } - "CmdMonopolyBuyGoodsCsReq" => Some(Self::CmdMonopolyBuyGoodsCsReq), - "CmdMonopolyMoveScRsp" => Some(Self::CmdMonopolyMoveScRsp), + "CmdGetMbtiReportScRsp" => Some(Self::CmdGetMbtiReportScRsp), + "CmdMonopolyGuessChooseCsReq" => Some(Self::CmdMonopolyGuessChooseCsReq), + "CmdMonopolyGameCreateScNotify" => Some(Self::CmdMonopolyGameCreateScNotify), "CmdMonopolyEventLoadUpdateScNotify" => { Some(Self::CmdMonopolyEventLoadUpdateScNotify) } - "CmdMonopolyClickCellCsReq" => Some(Self::CmdMonopolyClickCellCsReq), - "CmdMonopolyConfirmRandomCsReq" => Some(Self::CmdMonopolyConfirmRandomCsReq), - "CmdMonopolyGuessChooseScRsp" => Some(Self::CmdMonopolyGuessChooseScRsp), - "CmdMonopolyGiveUpCurContentScRsp" => { - Some(Self::CmdMonopolyGiveUpCurContentScRsp) - } - "CmdMonopolyTakeRaffleTicketRewardCsReq" => { - Some(Self::CmdMonopolyTakeRaffleTicketRewardCsReq) - } - "CmdMonopolyGetDailyInitItemScRsp" => { - Some(Self::CmdMonopolyGetDailyInitItemScRsp) - } - "CmdGetSocialEventServerCacheScRsp" => { - Some(Self::CmdGetSocialEventServerCacheScRsp) - } - "CmdMonopolyGameSettleScNotify" => Some(Self::CmdMonopolyGameSettleScNotify), - "CmdMonopolyGiveUpCurContentCsReq" => { - Some(Self::CmdMonopolyGiveUpCurContentCsReq) + "CmdMonopolyConditionUpdateScNotify" => { + Some(Self::CmdMonopolyConditionUpdateScNotify) } "CmdGetMonopolyFriendRankingListCsReq" => { Some(Self::CmdGetMonopolyFriendRankingListCsReq) } + "CmdMonopolyRollDiceCsReq" => Some(Self::CmdMonopolyRollDiceCsReq), + "CmdMonopolySttUpdateScNotify" => Some(Self::CmdMonopolySttUpdateScNotify), + "CmdGetMonopolyMbtiReportRewardCsReq" => { + Some(Self::CmdGetMonopolyMbtiReportRewardCsReq) + } + "CmdMonopolyLikeScNotify" => Some(Self::CmdMonopolyLikeScNotify), + "CmdGetSocialEventServerCacheScRsp" => { + Some(Self::CmdGetSocialEventServerCacheScRsp) + } + "CmdMonopolyReRollRandomCsReq" => Some(Self::CmdMonopolyReRollRandomCsReq), "CmdMonopolyGetRegionProgressCsReq" => { Some(Self::CmdMonopolyGetRegionProgressCsReq) } - "CmdMonopolyGameGachaScRsp" => Some(Self::CmdMonopolyGameGachaScRsp), - "CmdMonopolyConditionUpdateScNotify" => { - Some(Self::CmdMonopolyConditionUpdateScNotify) - } - "CmdMonopolyLikeCsReq" => Some(Self::CmdMonopolyLikeCsReq), "CmdMonopolyUpgradeAssetScRsp" => Some(Self::CmdMonopolyUpgradeAssetScRsp), - "CmdMonopolyContentUpdateScNotify" => { - Some(Self::CmdMonopolyContentUpdateScNotify) + "CmdMonopolyRollDiceScRsp" => Some(Self::CmdMonopolyRollDiceScRsp), + "CmdDailyFirstEnterMonopolyActivityCsReq" => { + Some(Self::CmdDailyFirstEnterMonopolyActivityCsReq) } - "CmdMonopolyGetDailyInitItemCsReq" => { - Some(Self::CmdMonopolyGetDailyInitItemCsReq) - } - "CmdMonopolyLikeScRsp" => Some(Self::CmdMonopolyLikeScRsp), - "CmdMonopolyAcceptQuizCsReq" => Some(Self::CmdMonopolyAcceptQuizCsReq), - "CmdMonopolyLikeScNotify" => Some(Self::CmdMonopolyLikeScNotify), - "CmdMonopolyReRollRandomCsReq" => Some(Self::CmdMonopolyReRollRandomCsReq), - "CmdMonopolyUpgradeAssetCsReq" => Some(Self::CmdMonopolyUpgradeAssetCsReq), - "CmdMonopolyClickCellScRsp" => Some(Self::CmdMonopolyClickCellScRsp), - "CmdMonopolyTakePhaseRewardCsReq" => { - Some(Self::CmdMonopolyTakePhaseRewardCsReq) - } - "CmdMonopolyGameRaiseRatioCsReq" => { - Some(Self::CmdMonopolyGameRaiseRatioCsReq) - } - "CmdGetMbtiReportCsReq" => Some(Self::CmdGetMbtiReportCsReq), - "CmdMonopolyGuessChooseCsReq" => Some(Self::CmdMonopolyGuessChooseCsReq), - "CmdMonopolyCheatDiceCsReq" => Some(Self::CmdMonopolyCheatDiceCsReq), - "CmdGetMonopolyInfoScRsp" => Some(Self::CmdGetMonopolyInfoScRsp), - "CmdMonopolyDailySettleScNotify" => { - Some(Self::CmdMonopolyDailySettleScNotify) - } - "CmdMonopolyGetRaffleTicketCsReq" => { - Some(Self::CmdMonopolyGetRaffleTicketCsReq) - } - "CmdMonopolyReRollRandomScRsp" => Some(Self::CmdMonopolyReRollRandomScRsp), - "CmdGetSocialEventServerCacheCsReq" => { - Some(Self::CmdGetSocialEventServerCacheCsReq) - } - "CmdGetMonopolyDailyReportCsReq" => { - Some(Self::CmdGetMonopolyDailyReportCsReq) + "CmdMonopolyGiveUpCurContentScRsp" => { + Some(Self::CmdMonopolyGiveUpCurContentScRsp) } "CmdMonopolyGetRafflePoolInfoScRsp" => { Some(Self::CmdMonopolyGetRafflePoolInfoScRsp) } - "CmdDeleteSocialEventServerCacheCsReq" => { - Some(Self::CmdDeleteSocialEventServerCacheCsReq) + "CmdMonopolyReRollRandomScRsp" => Some(Self::CmdMonopolyReRollRandomScRsp), + "CmdMonopolyTakePhaseRewardCsReq" => { + Some(Self::CmdMonopolyTakePhaseRewardCsReq) } - "CmdDeleteSocialEventServerCacheScRsp" => { - Some(Self::CmdDeleteSocialEventServerCacheScRsp) + "CmdMonopolyClickCellScRsp" => Some(Self::CmdMonopolyClickCellScRsp), + "CmdMonopolyTakeRaffleTicketRewardCsReq" => { + Some(Self::CmdMonopolyTakeRaffleTicketRewardCsReq) } - "CmdMonopolyCheatDiceScRsp" => Some(Self::CmdMonopolyCheatDiceScRsp), - "CmdMonopolyClickMbtiReportCsReq" => { - Some(Self::CmdMonopolyClickMbtiReportCsReq) - } - "CmdGetMonopolyMbtiReportRewardCsReq" => { - Some(Self::CmdGetMonopolyMbtiReportRewardCsReq) - } - "CmdMonopolySttUpdateScNotify" => Some(Self::CmdMonopolySttUpdateScNotify), - "CmdMonopolyEventSelectFriendScRsp" => { - Some(Self::CmdMonopolyEventSelectFriendScRsp) - } - "CmdDailyFirstEnterMonopolyActivityCsReq" => { - Some(Self::CmdDailyFirstEnterMonopolyActivityCsReq) + "CmdMonopolyGameSettleScNotify" => Some(Self::CmdMonopolyGameSettleScNotify), + "CmdGetMonopolyInfoCsReq" => Some(Self::CmdGetMonopolyInfoCsReq), + "CmdMonopolyGiveUpCurContentCsReq" => { + Some(Self::CmdMonopolyGiveUpCurContentCsReq) } + "CmdMonopolyRollRandomCsReq" => Some(Self::CmdMonopolyRollRandomCsReq), "CmdMonopolyScrachRaffleTicketCsReq" => { Some(Self::CmdMonopolyScrachRaffleTicketCsReq) } - "CmdMonopolyGameGachaCsReq" => Some(Self::CmdMonopolyGameGachaCsReq), - "CmdGetMonopolyMbtiReportRewardScRsp" => { - Some(Self::CmdGetMonopolyMbtiReportRewardScRsp) + "CmdMonopolyUpgradeAssetCsReq" => Some(Self::CmdMonopolyUpgradeAssetCsReq), + "CmdGetMonopolyDailyReportCsReq" => { + Some(Self::CmdGetMonopolyDailyReportCsReq) } + "CmdMonopolyGameGachaCsReq" => Some(Self::CmdMonopolyGameGachaCsReq), "CmdDailyFirstEnterMonopolyActivityScRsp" => { Some(Self::CmdDailyFirstEnterMonopolyActivityScRsp) } + "CmdMonopolyClickMbtiReportCsReq" => { + Some(Self::CmdMonopolyClickMbtiReportCsReq) + } + "CmdMonopolyAcceptQuizCsReq" => Some(Self::CmdMonopolyAcceptQuizCsReq), + "CmdGetMonopolyFriendRankingListScRsp" => { + Some(Self::CmdGetMonopolyFriendRankingListScRsp) + } + "CmdMonopolyGuessBuyInformationScRsp" => { + Some(Self::CmdMonopolyGuessBuyInformationScRsp) + } + "CmdMonopolyMoveScRsp" => Some(Self::CmdMonopolyMoveScRsp), + "CmdDeleteSocialEventServerCacheScRsp" => { + Some(Self::CmdDeleteSocialEventServerCacheScRsp) + } + "CmdMonopolyGameRaiseRatioScRsp" => { + Some(Self::CmdMonopolyGameRaiseRatioScRsp) + } + "CmdMonopolySocialEventEffectScNotify" => { + Some(Self::CmdMonopolySocialEventEffectScNotify) + } + "CmdMonopolyAcceptQuizScRsp" => Some(Self::CmdMonopolyAcceptQuizScRsp), + "CmdMonopolyGetDailyInitItemScRsp" => { + Some(Self::CmdMonopolyGetDailyInitItemScRsp) + } + "CmdMonopolyGuessBuyInformationCsReq" => { + Some(Self::CmdMonopolyGuessBuyInformationCsReq) + } + "CmdGetMbtiReportCsReq" => Some(Self::CmdGetMbtiReportCsReq), + "CmdMonopolyGuessChooseScRsp" => Some(Self::CmdMonopolyGuessChooseScRsp), + "CmdMonopolyScrachRaffleTicketScRsp" => { + Some(Self::CmdMonopolyScrachRaffleTicketScRsp) + } + "CmdMonopolyQuizDurationChangeScNotify" => { + Some(Self::CmdMonopolyQuizDurationChangeScNotify) + } + "CmdMonopolyContentUpdateScNotify" => { + Some(Self::CmdMonopolyContentUpdateScNotify) + } + "CmdMonopolyActionResultScNotify" => { + Some(Self::CmdMonopolyActionResultScNotify) + } + "CmdGetMonopolyInfoScRsp" => Some(Self::CmdGetMonopolyInfoScRsp), + "CmdMonopolyEventSelectFriendCsReq" => { + Some(Self::CmdMonopolyEventSelectFriendCsReq) + } + "CmdMonopolyBuyGoodsScRsp" => Some(Self::CmdMonopolyBuyGoodsScRsp), + "CmdMonopolyGetDailyInitItemCsReq" => { + Some(Self::CmdMonopolyGetDailyInitItemCsReq) + } + "CmdMonopolySelectOptionCsReq" => Some(Self::CmdMonopolySelectOptionCsReq), + "CmdMonopolyConfirmRandomCsReq" => Some(Self::CmdMonopolyConfirmRandomCsReq), + "CmdMonopolyClickMbtiReportScRsp" => { + Some(Self::CmdMonopolyClickMbtiReportScRsp) + } + "CmdMonopolyCheatDiceScRsp" => Some(Self::CmdMonopolyCheatDiceScRsp), + "CmdMonopolySelectOptionScRsp" => Some(Self::CmdMonopolySelectOptionScRsp), + "CmdMonopolyLikeScRsp" => Some(Self::CmdMonopolyLikeScRsp), "CmdMonopolyGuessDrawScNotify" => Some(Self::CmdMonopolyGuessDrawScNotify), "CmdMonopolyTakePhaseRewardScRsp" => { Some(Self::CmdMonopolyTakePhaseRewardScRsp) } - "CmdMonopolyRollRandomCsReq" => Some(Self::CmdMonopolyRollRandomCsReq), + "CmdMonopolyMoveCsReq" => Some(Self::CmdMonopolyMoveCsReq), + "CmdMonopolyTakeRaffleTicketRewardScRsp" => { + Some(Self::CmdMonopolyTakeRaffleTicketRewardScRsp) + } + "CmdMonopolyGetRaffleTicketCsReq" => { + Some(Self::CmdMonopolyGetRaffleTicketCsReq) + } + "CmdMonopolyGameRaiseRatioCsReq" => { + Some(Self::CmdMonopolyGameRaiseRatioCsReq) + } + "CmdMonopolyCellUpdateNotify" => Some(Self::CmdMonopolyCellUpdateNotify), + "CmdMonopolyGetRegionProgressScRsp" => { + Some(Self::CmdMonopolyGetRegionProgressScRsp) + } "CmdMonopolyGameBingoFlipCardCsReq" => { Some(Self::CmdMonopolyGameBingoFlipCardCsReq) } + "CmdMonopolyGameGachaScRsp" => Some(Self::CmdMonopolyGameGachaScRsp), "CmdMonopolyGetRaffleTicketScRsp" => { Some(Self::CmdMonopolyGetRaffleTicketScRsp) } - "CmdMonopolyRollDiceScRsp" => Some(Self::CmdMonopolyRollDiceScRsp), - "CmdMonopolyEventSelectFriendCsReq" => { - Some(Self::CmdMonopolyEventSelectFriendCsReq) + "CmdGetMonopolyDailyReportScRsp" => { + Some(Self::CmdGetMonopolyDailyReportScRsp) + } + "CmdMonopolyLikeCsReq" => Some(Self::CmdMonopolyLikeCsReq), + "CmdMonopolyBuyGoodsCsReq" => Some(Self::CmdMonopolyBuyGoodsCsReq), + "CmdMonopolyGameBingoFlipCardScRsp" => { + Some(Self::CmdMonopolyGameBingoFlipCardScRsp) + } + "CmdDeleteSocialEventServerCacheCsReq" => { + Some(Self::CmdDeleteSocialEventServerCacheCsReq) + } + "CmdMonopolyCheatDiceCsReq" => Some(Self::CmdMonopolyCheatDiceCsReq), + "CmdGetMonopolyMbtiReportRewardScRsp" => { + Some(Self::CmdGetMonopolyMbtiReportRewardScRsp) + } + "CmdMonopolyGetRafflePoolInfoCsReq" => { + Some(Self::CmdMonopolyGetRafflePoolInfoCsReq) + } + "CmdMonopolyClickCellCsReq" => Some(Self::CmdMonopolyClickCellCsReq), + "CmdMonopolyDailySettleScNotify" => { + Some(Self::CmdMonopolyDailySettleScNotify) + } + "CmdMonopolyEventSelectFriendScRsp" => { + Some(Self::CmdMonopolyEventSelectFriendScRsp) } "CmdMonopolyRollRandomScRsp" => Some(Self::CmdMonopolyRollRandomScRsp), - "CmdGetMonopolyInfoCsReq" => Some(Self::CmdGetMonopolyInfoCsReq), - "CmdMonopolyQuizDurationChangeScNotify" => { - Some(Self::CmdMonopolyQuizDurationChangeScNotify) - } - "CmdMonopolySelectOptionCsReq" => Some(Self::CmdMonopolySelectOptionCsReq), _ => None, } } @@ -53413,15 +55766,15 @@ impl Gkejfkakenm { #[repr(i32)] pub enum CmdMultiplayerType { None = 0, - CmdMultiplayerFightGameStateCsReq = 1095, - CmdMultiplayerMatch3FinishScNotify = 1022, - CmdMultiplayerGetFightGateCsReq = 1031, - CmdMultiplayerFightGameStartScNotify = 1071, - CmdMultiplayerFightGameStateScRsp = 1032, - CmdMultiplayerFightGiveUpCsReq = 1076, - CmdMultiplayerGetFightGateScRsp = 1040, - CmdMultiplayerFightGiveUpScRsp = 1048, - CmdMultiplayerFightGameFinishScNotify = 1052, + CmdMultiplayerFightGameStateScRsp = 1091, + CmdMultiplayerFightGameFinishScNotify = 1059, + CmdMultiplayerFightGameStateCsReq = 1020, + CmdMultiplayerMatch3FinishScNotify = 1054, + CmdMultiplayerFightGiveUpScRsp = 1021, + CmdMultiplayerGetFightGateCsReq = 1067, + CmdMultiplayerFightGiveUpCsReq = 1027, + CmdMultiplayerFightGameStartScNotify = 1070, + CmdMultiplayerGetFightGateScRsp = 1039, } impl CmdMultiplayerType { /// String value of the enum field names used in the ProtoBuf definition. @@ -53431,58 +55784,58 @@ impl CmdMultiplayerType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdMultiplayerTypeNone", + Self::CmdMultiplayerFightGameStateScRsp => { + "CmdMultiplayerFightGameStateScRsp" + } + Self::CmdMultiplayerFightGameFinishScNotify => { + "CmdMultiplayerFightGameFinishScNotify" + } Self::CmdMultiplayerFightGameStateCsReq => { "CmdMultiplayerFightGameStateCsReq" } Self::CmdMultiplayerMatch3FinishScNotify => { "CmdMultiplayerMatch3FinishScNotify" } + Self::CmdMultiplayerFightGiveUpScRsp => "CmdMultiplayerFightGiveUpScRsp", Self::CmdMultiplayerGetFightGateCsReq => "CmdMultiplayerGetFightGateCsReq", + Self::CmdMultiplayerFightGiveUpCsReq => "CmdMultiplayerFightGiveUpCsReq", Self::CmdMultiplayerFightGameStartScNotify => { "CmdMultiplayerFightGameStartScNotify" } - Self::CmdMultiplayerFightGameStateScRsp => { - "CmdMultiplayerFightGameStateScRsp" - } - Self::CmdMultiplayerFightGiveUpCsReq => "CmdMultiplayerFightGiveUpCsReq", Self::CmdMultiplayerGetFightGateScRsp => "CmdMultiplayerGetFightGateScRsp", - Self::CmdMultiplayerFightGiveUpScRsp => "CmdMultiplayerFightGiveUpScRsp", - Self::CmdMultiplayerFightGameFinishScNotify => { - "CmdMultiplayerFightGameFinishScNotify" - } } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdMultiplayerTypeNone" => Some(Self::None), + "CmdMultiplayerFightGameStateScRsp" => { + Some(Self::CmdMultiplayerFightGameStateScRsp) + } + "CmdMultiplayerFightGameFinishScNotify" => { + Some(Self::CmdMultiplayerFightGameFinishScNotify) + } "CmdMultiplayerFightGameStateCsReq" => { Some(Self::CmdMultiplayerFightGameStateCsReq) } "CmdMultiplayerMatch3FinishScNotify" => { Some(Self::CmdMultiplayerMatch3FinishScNotify) } + "CmdMultiplayerFightGiveUpScRsp" => { + Some(Self::CmdMultiplayerFightGiveUpScRsp) + } "CmdMultiplayerGetFightGateCsReq" => { Some(Self::CmdMultiplayerGetFightGateCsReq) } - "CmdMultiplayerFightGameStartScNotify" => { - Some(Self::CmdMultiplayerFightGameStartScNotify) - } - "CmdMultiplayerFightGameStateScRsp" => { - Some(Self::CmdMultiplayerFightGameStateScRsp) - } "CmdMultiplayerFightGiveUpCsReq" => { Some(Self::CmdMultiplayerFightGiveUpCsReq) } + "CmdMultiplayerFightGameStartScNotify" => { + Some(Self::CmdMultiplayerFightGameStartScNotify) + } "CmdMultiplayerGetFightGateScRsp" => { Some(Self::CmdMultiplayerGetFightGateScRsp) } - "CmdMultiplayerFightGiveUpScRsp" => { - Some(Self::CmdMultiplayerFightGiveUpScRsp) - } - "CmdMultiplayerFightGameFinishScNotify" => { - Some(Self::CmdMultiplayerFightGameFinishScNotify) - } _ => None, } } @@ -53493,12 +55846,12 @@ impl CmdMultiplayerType { #[repr(i32)] pub enum CmdMultipleDropType { None = 0, - CmdMultipleDropInfoScNotify = 4631, - CmdGetMultipleDropInfoScRsp = 4632, - CmdGetPlayerReturnMultiDropInfoScRsp = 4676, - CmdMultipleDropInfoNotify = 4648, - CmdGetPlayerReturnMultiDropInfoCsReq = 4640, - CmdGetMultipleDropInfoCsReq = 4695, + CmdGetMultipleDropInfoScRsp = 4691, + CmdGetMultipleDropInfoCsReq = 4620, + CmdMultipleDropInfoScNotify = 4667, + CmdGetPlayerReturnMultiDropInfoCsReq = 4639, + CmdMultipleDropInfoNotify = 4621, + CmdGetPlayerReturnMultiDropInfoScRsp = 4627, } impl CmdMultipleDropType { /// String value of the enum field names used in the ProtoBuf definition. @@ -53508,32 +55861,32 @@ impl CmdMultipleDropType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdMultipleDropTypeNone", - Self::CmdMultipleDropInfoScNotify => "CmdMultipleDropInfoScNotify", Self::CmdGetMultipleDropInfoScRsp => "CmdGetMultipleDropInfoScRsp", - Self::CmdGetPlayerReturnMultiDropInfoScRsp => { - "CmdGetPlayerReturnMultiDropInfoScRsp" - } - Self::CmdMultipleDropInfoNotify => "CmdMultipleDropInfoNotify", + Self::CmdGetMultipleDropInfoCsReq => "CmdGetMultipleDropInfoCsReq", + Self::CmdMultipleDropInfoScNotify => "CmdMultipleDropInfoScNotify", Self::CmdGetPlayerReturnMultiDropInfoCsReq => { "CmdGetPlayerReturnMultiDropInfoCsReq" } - Self::CmdGetMultipleDropInfoCsReq => "CmdGetMultipleDropInfoCsReq", + Self::CmdMultipleDropInfoNotify => "CmdMultipleDropInfoNotify", + Self::CmdGetPlayerReturnMultiDropInfoScRsp => { + "CmdGetPlayerReturnMultiDropInfoScRsp" + } } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdMultipleDropTypeNone" => Some(Self::None), - "CmdMultipleDropInfoScNotify" => Some(Self::CmdMultipleDropInfoScNotify), "CmdGetMultipleDropInfoScRsp" => Some(Self::CmdGetMultipleDropInfoScRsp), - "CmdGetPlayerReturnMultiDropInfoScRsp" => { - Some(Self::CmdGetPlayerReturnMultiDropInfoScRsp) - } - "CmdMultipleDropInfoNotify" => Some(Self::CmdMultipleDropInfoNotify), + "CmdGetMultipleDropInfoCsReq" => Some(Self::CmdGetMultipleDropInfoCsReq), + "CmdMultipleDropInfoScNotify" => Some(Self::CmdMultipleDropInfoScNotify), "CmdGetPlayerReturnMultiDropInfoCsReq" => { Some(Self::CmdGetPlayerReturnMultiDropInfoCsReq) } - "CmdGetMultipleDropInfoCsReq" => Some(Self::CmdGetMultipleDropInfoCsReq), + "CmdMultipleDropInfoNotify" => Some(Self::CmdMultipleDropInfoNotify), + "CmdGetPlayerReturnMultiDropInfoScRsp" => { + Some(Self::CmdGetPlayerReturnMultiDropInfoScRsp) + } _ => None, } } @@ -53544,35 +55897,35 @@ impl CmdMultipleDropType { #[repr(i32)] pub enum CmdMuseumType { None = 0, - CmdMuseumFundsChangedScNotify = 4339, - CmdMuseumTargetRewardNotify = 4311, - CmdMuseumTargetStartNotify = 4329, - CmdMuseumDispatchFinishedScNotify = 4321, - CmdGetStuffScNotify = 4322, - CmdRemoveStuffFromAreaScRsp = 4352, - CmdMuseumTargetMissionFinishNotify = 4363, - CmdFinishCurTurnCsReq = 4372, - CmdRemoveStuffFromAreaCsReq = 4371, - CmdMuseumInfoChangedScNotify = 4302, - CmdMuseumRandomEventQueryCsReq = 4333, - CmdMuseumRandomEventSelectCsReq = 4377, - CmdMuseumTakeCollectRewardScRsp = 4325, - CmdBuyNpcStuffCsReq = 4331, - CmdGetMuseumInfoCsReq = 4395, - CmdMuseumRandomEventSelectScRsp = 4358, - CmdSetStuffToAreaScRsp = 4348, - CmdUpgradeAreaScRsp = 4346, - CmdUpgradeAreaCsReq = 4316, - CmdGetExhibitScNotify = 4356, - CmdMuseumTakeCollectRewardCsReq = 4393, - CmdUpgradeAreaStatCsReq = 4383, - CmdUpgradeAreaStatScRsp = 4360, - CmdSetStuffToAreaCsReq = 4376, - CmdMuseumRandomEventQueryScRsp = 4342, - CmdGetMuseumInfoScRsp = 4332, - CmdMuseumRandomEventStartScNotify = 4343, - CmdBuyNpcStuffScRsp = 4340, - CmdFinishCurTurnScRsp = 4385, + CmdUpgradeAreaStatScRsp = 4398, + CmdMuseumTakeCollectRewardCsReq = 4349, + CmdMuseumRandomEventQueryCsReq = 4368, + CmdGetExhibitScNotify = 4377, + CmdMuseumInfoChangedScNotify = 4385, + CmdMuseumRandomEventQueryScRsp = 4394, + CmdRemoveStuffFromAreaScRsp = 4359, + CmdGetStuffScNotify = 4354, + CmdBuyNpcStuffScRsp = 4339, + CmdRemoveStuffFromAreaCsReq = 4370, + CmdUpgradeAreaStatCsReq = 4373, + CmdBuyNpcStuffCsReq = 4367, + CmdSetStuffToAreaScRsp = 4321, + CmdGetMuseumInfoCsReq = 4320, + CmdMuseumTargetMissionFinishNotify = 4331, + CmdFinishCurTurnScRsp = 4302, + CmdMuseumRandomEventSelectScRsp = 4387, + CmdMuseumFundsChangedScNotify = 4338, + CmdGetMuseumInfoScRsp = 4391, + CmdMuseumTargetStartNotify = 4306, + CmdSetStuffToAreaCsReq = 4327, + CmdMuseumRandomEventSelectCsReq = 4336, + CmdUpgradeAreaCsReq = 4305, + CmdUpgradeAreaScRsp = 4374, + CmdMuseumTargetRewardNotify = 4344, + CmdMuseumDispatchFinishedScNotify = 4309, + CmdFinishCurTurnCsReq = 4380, + CmdMuseumTakeCollectRewardScRsp = 4341, + CmdMuseumRandomEventStartScNotify = 4352, } impl CmdMuseumType { /// String value of the enum field names used in the ProtoBuf definition. @@ -53582,94 +55935,94 @@ impl CmdMuseumType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdMuseumTypeNone", - Self::CmdMuseumFundsChangedScNotify => "CmdMuseumFundsChangedScNotify", - Self::CmdMuseumTargetRewardNotify => "CmdMuseumTargetRewardNotify", - Self::CmdMuseumTargetStartNotify => "CmdMuseumTargetStartNotify", - Self::CmdMuseumDispatchFinishedScNotify => { - "CmdMuseumDispatchFinishedScNotify" - } - Self::CmdGetStuffScNotify => "CmdGetStuffScNotify", + Self::CmdUpgradeAreaStatScRsp => "CmdUpgradeAreaStatScRsp", + Self::CmdMuseumTakeCollectRewardCsReq => "CmdMuseumTakeCollectRewardCsReq", + Self::CmdMuseumRandomEventQueryCsReq => "CmdMuseumRandomEventQueryCsReq", + Self::CmdGetExhibitScNotify => "CmdGetExhibitScNotify", + Self::CmdMuseumInfoChangedScNotify => "CmdMuseumInfoChangedScNotify", + Self::CmdMuseumRandomEventQueryScRsp => "CmdMuseumRandomEventQueryScRsp", Self::CmdRemoveStuffFromAreaScRsp => "CmdRemoveStuffFromAreaScRsp", + Self::CmdGetStuffScNotify => "CmdGetStuffScNotify", + Self::CmdBuyNpcStuffScRsp => "CmdBuyNpcStuffScRsp", + Self::CmdRemoveStuffFromAreaCsReq => "CmdRemoveStuffFromAreaCsReq", + Self::CmdUpgradeAreaStatCsReq => "CmdUpgradeAreaStatCsReq", + Self::CmdBuyNpcStuffCsReq => "CmdBuyNpcStuffCsReq", + Self::CmdSetStuffToAreaScRsp => "CmdSetStuffToAreaScRsp", + Self::CmdGetMuseumInfoCsReq => "CmdGetMuseumInfoCsReq", Self::CmdMuseumTargetMissionFinishNotify => { "CmdMuseumTargetMissionFinishNotify" } - Self::CmdFinishCurTurnCsReq => "CmdFinishCurTurnCsReq", - Self::CmdRemoveStuffFromAreaCsReq => "CmdRemoveStuffFromAreaCsReq", - Self::CmdMuseumInfoChangedScNotify => "CmdMuseumInfoChangedScNotify", - Self::CmdMuseumRandomEventQueryCsReq => "CmdMuseumRandomEventQueryCsReq", - Self::CmdMuseumRandomEventSelectCsReq => "CmdMuseumRandomEventSelectCsReq", - Self::CmdMuseumTakeCollectRewardScRsp => "CmdMuseumTakeCollectRewardScRsp", - Self::CmdBuyNpcStuffCsReq => "CmdBuyNpcStuffCsReq", - Self::CmdGetMuseumInfoCsReq => "CmdGetMuseumInfoCsReq", + Self::CmdFinishCurTurnScRsp => "CmdFinishCurTurnScRsp", Self::CmdMuseumRandomEventSelectScRsp => "CmdMuseumRandomEventSelectScRsp", - Self::CmdSetStuffToAreaScRsp => "CmdSetStuffToAreaScRsp", - Self::CmdUpgradeAreaScRsp => "CmdUpgradeAreaScRsp", - Self::CmdUpgradeAreaCsReq => "CmdUpgradeAreaCsReq", - Self::CmdGetExhibitScNotify => "CmdGetExhibitScNotify", - Self::CmdMuseumTakeCollectRewardCsReq => "CmdMuseumTakeCollectRewardCsReq", - Self::CmdUpgradeAreaStatCsReq => "CmdUpgradeAreaStatCsReq", - Self::CmdUpgradeAreaStatScRsp => "CmdUpgradeAreaStatScRsp", - Self::CmdSetStuffToAreaCsReq => "CmdSetStuffToAreaCsReq", - Self::CmdMuseumRandomEventQueryScRsp => "CmdMuseumRandomEventQueryScRsp", + Self::CmdMuseumFundsChangedScNotify => "CmdMuseumFundsChangedScNotify", Self::CmdGetMuseumInfoScRsp => "CmdGetMuseumInfoScRsp", + Self::CmdMuseumTargetStartNotify => "CmdMuseumTargetStartNotify", + Self::CmdSetStuffToAreaCsReq => "CmdSetStuffToAreaCsReq", + Self::CmdMuseumRandomEventSelectCsReq => "CmdMuseumRandomEventSelectCsReq", + Self::CmdUpgradeAreaCsReq => "CmdUpgradeAreaCsReq", + Self::CmdUpgradeAreaScRsp => "CmdUpgradeAreaScRsp", + Self::CmdMuseumTargetRewardNotify => "CmdMuseumTargetRewardNotify", + Self::CmdMuseumDispatchFinishedScNotify => { + "CmdMuseumDispatchFinishedScNotify" + } + Self::CmdFinishCurTurnCsReq => "CmdFinishCurTurnCsReq", + Self::CmdMuseumTakeCollectRewardScRsp => "CmdMuseumTakeCollectRewardScRsp", Self::CmdMuseumRandomEventStartScNotify => { "CmdMuseumRandomEventStartScNotify" } - Self::CmdBuyNpcStuffScRsp => "CmdBuyNpcStuffScRsp", - Self::CmdFinishCurTurnScRsp => "CmdFinishCurTurnScRsp", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdMuseumTypeNone" => Some(Self::None), - "CmdMuseumFundsChangedScNotify" => Some(Self::CmdMuseumFundsChangedScNotify), - "CmdMuseumTargetRewardNotify" => Some(Self::CmdMuseumTargetRewardNotify), - "CmdMuseumTargetStartNotify" => Some(Self::CmdMuseumTargetStartNotify), - "CmdMuseumDispatchFinishedScNotify" => { - Some(Self::CmdMuseumDispatchFinishedScNotify) - } - "CmdGetStuffScNotify" => Some(Self::CmdGetStuffScNotify), - "CmdRemoveStuffFromAreaScRsp" => Some(Self::CmdRemoveStuffFromAreaScRsp), - "CmdMuseumTargetMissionFinishNotify" => { - Some(Self::CmdMuseumTargetMissionFinishNotify) - } - "CmdFinishCurTurnCsReq" => Some(Self::CmdFinishCurTurnCsReq), - "CmdRemoveStuffFromAreaCsReq" => Some(Self::CmdRemoveStuffFromAreaCsReq), - "CmdMuseumInfoChangedScNotify" => Some(Self::CmdMuseumInfoChangedScNotify), - "CmdMuseumRandomEventQueryCsReq" => { - Some(Self::CmdMuseumRandomEventQueryCsReq) - } - "CmdMuseumRandomEventSelectCsReq" => { - Some(Self::CmdMuseumRandomEventSelectCsReq) - } - "CmdMuseumTakeCollectRewardScRsp" => { - Some(Self::CmdMuseumTakeCollectRewardScRsp) - } - "CmdBuyNpcStuffCsReq" => Some(Self::CmdBuyNpcStuffCsReq), - "CmdGetMuseumInfoCsReq" => Some(Self::CmdGetMuseumInfoCsReq), - "CmdMuseumRandomEventSelectScRsp" => { - Some(Self::CmdMuseumRandomEventSelectScRsp) - } - "CmdSetStuffToAreaScRsp" => Some(Self::CmdSetStuffToAreaScRsp), - "CmdUpgradeAreaScRsp" => Some(Self::CmdUpgradeAreaScRsp), - "CmdUpgradeAreaCsReq" => Some(Self::CmdUpgradeAreaCsReq), - "CmdGetExhibitScNotify" => Some(Self::CmdGetExhibitScNotify), + "CmdUpgradeAreaStatScRsp" => Some(Self::CmdUpgradeAreaStatScRsp), "CmdMuseumTakeCollectRewardCsReq" => { Some(Self::CmdMuseumTakeCollectRewardCsReq) } - "CmdUpgradeAreaStatCsReq" => Some(Self::CmdUpgradeAreaStatCsReq), - "CmdUpgradeAreaStatScRsp" => Some(Self::CmdUpgradeAreaStatScRsp), - "CmdSetStuffToAreaCsReq" => Some(Self::CmdSetStuffToAreaCsReq), + "CmdMuseumRandomEventQueryCsReq" => { + Some(Self::CmdMuseumRandomEventQueryCsReq) + } + "CmdGetExhibitScNotify" => Some(Self::CmdGetExhibitScNotify), + "CmdMuseumInfoChangedScNotify" => Some(Self::CmdMuseumInfoChangedScNotify), "CmdMuseumRandomEventQueryScRsp" => { Some(Self::CmdMuseumRandomEventQueryScRsp) } + "CmdRemoveStuffFromAreaScRsp" => Some(Self::CmdRemoveStuffFromAreaScRsp), + "CmdGetStuffScNotify" => Some(Self::CmdGetStuffScNotify), + "CmdBuyNpcStuffScRsp" => Some(Self::CmdBuyNpcStuffScRsp), + "CmdRemoveStuffFromAreaCsReq" => Some(Self::CmdRemoveStuffFromAreaCsReq), + "CmdUpgradeAreaStatCsReq" => Some(Self::CmdUpgradeAreaStatCsReq), + "CmdBuyNpcStuffCsReq" => Some(Self::CmdBuyNpcStuffCsReq), + "CmdSetStuffToAreaScRsp" => Some(Self::CmdSetStuffToAreaScRsp), + "CmdGetMuseumInfoCsReq" => Some(Self::CmdGetMuseumInfoCsReq), + "CmdMuseumTargetMissionFinishNotify" => { + Some(Self::CmdMuseumTargetMissionFinishNotify) + } + "CmdFinishCurTurnScRsp" => Some(Self::CmdFinishCurTurnScRsp), + "CmdMuseumRandomEventSelectScRsp" => { + Some(Self::CmdMuseumRandomEventSelectScRsp) + } + "CmdMuseumFundsChangedScNotify" => Some(Self::CmdMuseumFundsChangedScNotify), "CmdGetMuseumInfoScRsp" => Some(Self::CmdGetMuseumInfoScRsp), + "CmdMuseumTargetStartNotify" => Some(Self::CmdMuseumTargetStartNotify), + "CmdSetStuffToAreaCsReq" => Some(Self::CmdSetStuffToAreaCsReq), + "CmdMuseumRandomEventSelectCsReq" => { + Some(Self::CmdMuseumRandomEventSelectCsReq) + } + "CmdUpgradeAreaCsReq" => Some(Self::CmdUpgradeAreaCsReq), + "CmdUpgradeAreaScRsp" => Some(Self::CmdUpgradeAreaScRsp), + "CmdMuseumTargetRewardNotify" => Some(Self::CmdMuseumTargetRewardNotify), + "CmdMuseumDispatchFinishedScNotify" => { + Some(Self::CmdMuseumDispatchFinishedScNotify) + } + "CmdFinishCurTurnCsReq" => Some(Self::CmdFinishCurTurnCsReq), + "CmdMuseumTakeCollectRewardScRsp" => { + Some(Self::CmdMuseumTakeCollectRewardScRsp) + } "CmdMuseumRandomEventStartScNotify" => { Some(Self::CmdMuseumRandomEventStartScNotify) } - "CmdBuyNpcStuffScRsp" => Some(Self::CmdBuyNpcStuffScRsp), - "CmdFinishCurTurnScRsp" => Some(Self::CmdFinishCurTurnScRsp), _ => None, } } @@ -53827,18 +56180,18 @@ impl Kgjjjkpdcfg { #[repr(i32)] pub enum CmdMusicRhythmType { None = 0, - CmdMusicRhythmDataCsReq = 7573, - CmdMusicRhythmStartLevelScRsp = 7589, - CmdMusicRhythmDataScRsp = 7590, - CmdMusicRhythmSaveSongConfigDataScRsp = 7600, - CmdMusicRhythmFinishLevelCsReq = 7571, - CmdMusicRhythmUnlockSongSfxScNotify = 7592, - CmdMusicRhythmSaveSongConfigDataCsReq = 7588, - CmdMusicRhythmUnlockTrackScNotify = 7577, - CmdMusicRhythmStartLevelCsReq = 7596, - CmdMusicRhythmUnlockSongNotify = 7581, - CmdMusicRhythmMaxDifficultyLevelsUnlockNotify = 7579, - CmdMusicRhythmFinishLevelScRsp = 7594, + CmdMusicRhythmMaxDifficultyLevelsUnlockNotify = 7590, + CmdMusicRhythmSaveSongConfigDataCsReq = 7580, + CmdMusicRhythmDataScRsp = 7596, + CmdMusicRhythmUnlockSongSfxScNotify = 7593, + CmdMusicRhythmStartLevelCsReq = 7576, + CmdMusicRhythmUnlockSongNotify = 7599, + CmdMusicRhythmDataCsReq = 7572, + CmdMusicRhythmFinishLevelScRsp = 7584, + CmdMusicRhythmSaveSongConfigDataScRsp = 7597, + CmdMusicRhythmFinishLevelCsReq = 7583, + CmdMusicRhythmUnlockTrackScNotify = 7586, + CmdMusicRhythmStartLevelScRsp = 7577, } impl CmdMusicRhythmType { /// String value of the enum field names used in the ProtoBuf definition. @@ -53848,62 +56201,62 @@ impl CmdMusicRhythmType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdMusicRhythmTypeNone", - Self::CmdMusicRhythmDataCsReq => "CmdMusicRhythmDataCsReq", - Self::CmdMusicRhythmStartLevelScRsp => "CmdMusicRhythmStartLevelScRsp", - Self::CmdMusicRhythmDataScRsp => "CmdMusicRhythmDataScRsp", - Self::CmdMusicRhythmSaveSongConfigDataScRsp => { - "CmdMusicRhythmSaveSongConfigDataScRsp" - } - Self::CmdMusicRhythmFinishLevelCsReq => "CmdMusicRhythmFinishLevelCsReq", - Self::CmdMusicRhythmUnlockSongSfxScNotify => { - "CmdMusicRhythmUnlockSongSfxScNotify" + Self::CmdMusicRhythmMaxDifficultyLevelsUnlockNotify => { + "CmdMusicRhythmMaxDifficultyLevelsUnlockNotify" } Self::CmdMusicRhythmSaveSongConfigDataCsReq => { "CmdMusicRhythmSaveSongConfigDataCsReq" } - Self::CmdMusicRhythmUnlockTrackScNotify => { - "CmdMusicRhythmUnlockTrackScNotify" + Self::CmdMusicRhythmDataScRsp => "CmdMusicRhythmDataScRsp", + Self::CmdMusicRhythmUnlockSongSfxScNotify => { + "CmdMusicRhythmUnlockSongSfxScNotify" } Self::CmdMusicRhythmStartLevelCsReq => "CmdMusicRhythmStartLevelCsReq", Self::CmdMusicRhythmUnlockSongNotify => "CmdMusicRhythmUnlockSongNotify", - Self::CmdMusicRhythmMaxDifficultyLevelsUnlockNotify => { - "CmdMusicRhythmMaxDifficultyLevelsUnlockNotify" - } + Self::CmdMusicRhythmDataCsReq => "CmdMusicRhythmDataCsReq", Self::CmdMusicRhythmFinishLevelScRsp => "CmdMusicRhythmFinishLevelScRsp", + Self::CmdMusicRhythmSaveSongConfigDataScRsp => { + "CmdMusicRhythmSaveSongConfigDataScRsp" + } + Self::CmdMusicRhythmFinishLevelCsReq => "CmdMusicRhythmFinishLevelCsReq", + Self::CmdMusicRhythmUnlockTrackScNotify => { + "CmdMusicRhythmUnlockTrackScNotify" + } + Self::CmdMusicRhythmStartLevelScRsp => "CmdMusicRhythmStartLevelScRsp", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdMusicRhythmTypeNone" => Some(Self::None), - "CmdMusicRhythmDataCsReq" => Some(Self::CmdMusicRhythmDataCsReq), - "CmdMusicRhythmStartLevelScRsp" => Some(Self::CmdMusicRhythmStartLevelScRsp), + "CmdMusicRhythmMaxDifficultyLevelsUnlockNotify" => { + Some(Self::CmdMusicRhythmMaxDifficultyLevelsUnlockNotify) + } + "CmdMusicRhythmSaveSongConfigDataCsReq" => { + Some(Self::CmdMusicRhythmSaveSongConfigDataCsReq) + } "CmdMusicRhythmDataScRsp" => Some(Self::CmdMusicRhythmDataScRsp), + "CmdMusicRhythmUnlockSongSfxScNotify" => { + Some(Self::CmdMusicRhythmUnlockSongSfxScNotify) + } + "CmdMusicRhythmStartLevelCsReq" => Some(Self::CmdMusicRhythmStartLevelCsReq), + "CmdMusicRhythmUnlockSongNotify" => { + Some(Self::CmdMusicRhythmUnlockSongNotify) + } + "CmdMusicRhythmDataCsReq" => Some(Self::CmdMusicRhythmDataCsReq), + "CmdMusicRhythmFinishLevelScRsp" => { + Some(Self::CmdMusicRhythmFinishLevelScRsp) + } "CmdMusicRhythmSaveSongConfigDataScRsp" => { Some(Self::CmdMusicRhythmSaveSongConfigDataScRsp) } "CmdMusicRhythmFinishLevelCsReq" => { Some(Self::CmdMusicRhythmFinishLevelCsReq) } - "CmdMusicRhythmUnlockSongSfxScNotify" => { - Some(Self::CmdMusicRhythmUnlockSongSfxScNotify) - } - "CmdMusicRhythmSaveSongConfigDataCsReq" => { - Some(Self::CmdMusicRhythmSaveSongConfigDataCsReq) - } "CmdMusicRhythmUnlockTrackScNotify" => { Some(Self::CmdMusicRhythmUnlockTrackScNotify) } - "CmdMusicRhythmStartLevelCsReq" => Some(Self::CmdMusicRhythmStartLevelCsReq), - "CmdMusicRhythmUnlockSongNotify" => { - Some(Self::CmdMusicRhythmUnlockSongNotify) - } - "CmdMusicRhythmMaxDifficultyLevelsUnlockNotify" => { - Some(Self::CmdMusicRhythmMaxDifficultyLevelsUnlockNotify) - } - "CmdMusicRhythmFinishLevelScRsp" => { - Some(Self::CmdMusicRhythmFinishLevelScRsp) - } + "CmdMusicRhythmStartLevelScRsp" => Some(Self::CmdMusicRhythmStartLevelScRsp), _ => None, } } @@ -53941,13 +56294,13 @@ impl Epgdhhhdjdc { #[repr(i32)] pub enum CmdOfferingType { None = 0, - CmdGetOfferingInfoCsReq = 6934, - CmdSubmitOfferingItemCsReq = 6928, - CmdTakeOfferingRewardScRsp = 6922, - CmdGetOfferingInfoScRsp = 6933, - CmdSubmitOfferingItemScRsp = 6930, - CmdOfferingInfoScNotify = 6940, - CmdTakeOfferingRewardCsReq = 6924, + CmdSubmitOfferingItemCsReq = 6930, + CmdSubmitOfferingItemScRsp = 6936, + CmdTakeOfferingRewardCsReq = 6927, + CmdGetOfferingInfoCsReq = 6938, + CmdTakeOfferingRewardScRsp = 6931, + CmdOfferingInfoScNotify = 6925, + CmdGetOfferingInfoScRsp = 6929, } impl CmdOfferingType { /// String value of the enum field names used in the ProtoBuf definition. @@ -53957,26 +56310,26 @@ impl CmdOfferingType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdOfferingTypeNone", - Self::CmdGetOfferingInfoCsReq => "CmdGetOfferingInfoCsReq", Self::CmdSubmitOfferingItemCsReq => "CmdSubmitOfferingItemCsReq", - Self::CmdTakeOfferingRewardScRsp => "CmdTakeOfferingRewardScRsp", - Self::CmdGetOfferingInfoScRsp => "CmdGetOfferingInfoScRsp", Self::CmdSubmitOfferingItemScRsp => "CmdSubmitOfferingItemScRsp", - Self::CmdOfferingInfoScNotify => "CmdOfferingInfoScNotify", Self::CmdTakeOfferingRewardCsReq => "CmdTakeOfferingRewardCsReq", + Self::CmdGetOfferingInfoCsReq => "CmdGetOfferingInfoCsReq", + Self::CmdTakeOfferingRewardScRsp => "CmdTakeOfferingRewardScRsp", + Self::CmdOfferingInfoScNotify => "CmdOfferingInfoScNotify", + Self::CmdGetOfferingInfoScRsp => "CmdGetOfferingInfoScRsp", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdOfferingTypeNone" => Some(Self::None), - "CmdGetOfferingInfoCsReq" => Some(Self::CmdGetOfferingInfoCsReq), "CmdSubmitOfferingItemCsReq" => Some(Self::CmdSubmitOfferingItemCsReq), - "CmdTakeOfferingRewardScRsp" => Some(Self::CmdTakeOfferingRewardScRsp), - "CmdGetOfferingInfoScRsp" => Some(Self::CmdGetOfferingInfoScRsp), "CmdSubmitOfferingItemScRsp" => Some(Self::CmdSubmitOfferingItemScRsp), - "CmdOfferingInfoScNotify" => Some(Self::CmdOfferingInfoScNotify), "CmdTakeOfferingRewardCsReq" => Some(Self::CmdTakeOfferingRewardCsReq), + "CmdGetOfferingInfoCsReq" => Some(Self::CmdGetOfferingInfoCsReq), + "CmdTakeOfferingRewardScRsp" => Some(Self::CmdTakeOfferingRewardScRsp), + "CmdOfferingInfoScNotify" => Some(Self::CmdOfferingInfoScNotify), + "CmdGetOfferingInfoScRsp" => Some(Self::CmdGetOfferingInfoScRsp), _ => None, } } @@ -54017,9 +56370,9 @@ impl Fbomlibegoc { #[repr(i32)] pub enum CmdPamMissionType { None = 0, - CmdSyncAcceptedPamMissionNotify = 4031, - CmdAcceptedPamMissionExpireCsReq = 4095, - CmdAcceptedPamMissionExpireScRsp = 4032, + CmdAcceptedPamMissionExpireScRsp = 4091, + CmdAcceptedPamMissionExpireCsReq = 4020, + CmdSyncAcceptedPamMissionNotify = 4067, } impl CmdPamMissionType { /// String value of the enum field names used in the ProtoBuf definition. @@ -54029,23 +56382,23 @@ impl CmdPamMissionType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdPamMissionTypeNone", - Self::CmdSyncAcceptedPamMissionNotify => "CmdSyncAcceptedPamMissionNotify", - Self::CmdAcceptedPamMissionExpireCsReq => "CmdAcceptedPamMissionExpireCsReq", Self::CmdAcceptedPamMissionExpireScRsp => "CmdAcceptedPamMissionExpireScRsp", + Self::CmdAcceptedPamMissionExpireCsReq => "CmdAcceptedPamMissionExpireCsReq", + Self::CmdSyncAcceptedPamMissionNotify => "CmdSyncAcceptedPamMissionNotify", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdPamMissionTypeNone" => Some(Self::None), - "CmdSyncAcceptedPamMissionNotify" => { - Some(Self::CmdSyncAcceptedPamMissionNotify) + "CmdAcceptedPamMissionExpireScRsp" => { + Some(Self::CmdAcceptedPamMissionExpireScRsp) } "CmdAcceptedPamMissionExpireCsReq" => { Some(Self::CmdAcceptedPamMissionExpireCsReq) } - "CmdAcceptedPamMissionExpireScRsp" => { - Some(Self::CmdAcceptedPamMissionExpireScRsp) + "CmdSyncAcceptedPamMissionNotify" => { + Some(Self::CmdSyncAcceptedPamMissionNotify) } _ => None, } @@ -54057,11 +56410,11 @@ impl CmdPamMissionType { #[repr(i32)] pub enum CmdPamSkinType { None = 0, - CmdGetPamSkinDataCsReq = 8134, - CmdSelectPamSkinCsReq = 8128, - CmdUnlockPamSkinScNotify = 8124, - CmdSelectPamSkinScRsp = 8130, - CmdGetPamSkinDataScRsp = 8133, + CmdSelectPamSkinScRsp = 8136, + CmdGetPamSkinDataScRsp = 8129, + CmdUnlockPamSkinScNotify = 8127, + CmdGetPamSkinDataCsReq = 8138, + CmdSelectPamSkinCsReq = 8130, } impl CmdPamSkinType { /// String value of the enum field names used in the ProtoBuf definition. @@ -54071,22 +56424,22 @@ impl CmdPamSkinType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdPamSkinTypeNone", - Self::CmdGetPamSkinDataCsReq => "CmdGetPamSkinDataCsReq", - Self::CmdSelectPamSkinCsReq => "CmdSelectPamSkinCsReq", - Self::CmdUnlockPamSkinScNotify => "CmdUnlockPamSkinScNotify", Self::CmdSelectPamSkinScRsp => "CmdSelectPamSkinScRsp", Self::CmdGetPamSkinDataScRsp => "CmdGetPamSkinDataScRsp", + Self::CmdUnlockPamSkinScNotify => "CmdUnlockPamSkinScNotify", + Self::CmdGetPamSkinDataCsReq => "CmdGetPamSkinDataCsReq", + Self::CmdSelectPamSkinCsReq => "CmdSelectPamSkinCsReq", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdPamSkinTypeNone" => Some(Self::None), - "CmdGetPamSkinDataCsReq" => Some(Self::CmdGetPamSkinDataCsReq), - "CmdSelectPamSkinCsReq" => Some(Self::CmdSelectPamSkinCsReq), - "CmdUnlockPamSkinScNotify" => Some(Self::CmdUnlockPamSkinScNotify), "CmdSelectPamSkinScRsp" => Some(Self::CmdSelectPamSkinScRsp), "CmdGetPamSkinDataScRsp" => Some(Self::CmdGetPamSkinDataScRsp), + "CmdUnlockPamSkinScNotify" => Some(Self::CmdUnlockPamSkinScNotify), + "CmdGetPamSkinDataCsReq" => Some(Self::CmdGetPamSkinDataCsReq), + "CmdSelectPamSkinCsReq" => Some(Self::CmdSelectPamSkinCsReq), _ => None, } } @@ -54097,14 +56450,14 @@ impl CmdPamSkinType { #[repr(i32)] pub enum CmdParkourType { None = 0, - CmdParkourGetDataCsReq = 8394, - CmdParkourEndLevelCsReq = 8400, - CmdParkourStartLevelCsReq = 8384, - CmdParkourStartLevelScRsp = 8382, - CmdParkourGetRankingInfoCsReq = 8388, - CmdParkourEndLevelScRsp = 8389, - CmdParkourGetRankingInfoScRsp = 8390, - CmdParkourGetDataScRsp = 8393, + CmdParkourGetDataScRsp = 8389, + CmdParkourStartLevelScRsp = 8391, + CmdParkourStartLevelCsReq = 8387, + CmdParkourGetDataCsReq = 8398, + CmdParkourEndLevelScRsp = 8383, + CmdParkourGetRankingInfoScRsp = 8396, + CmdParkourEndLevelCsReq = 8385, + CmdParkourGetRankingInfoCsReq = 8390, } impl CmdParkourType { /// String value of the enum field names used in the ProtoBuf definition. @@ -54114,28 +56467,28 @@ impl CmdParkourType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdParkourTypeNone", - Self::CmdParkourGetDataCsReq => "CmdParkourGetDataCsReq", - Self::CmdParkourEndLevelCsReq => "CmdParkourEndLevelCsReq", - Self::CmdParkourStartLevelCsReq => "CmdParkourStartLevelCsReq", + Self::CmdParkourGetDataScRsp => "CmdParkourGetDataScRsp", Self::CmdParkourStartLevelScRsp => "CmdParkourStartLevelScRsp", - Self::CmdParkourGetRankingInfoCsReq => "CmdParkourGetRankingInfoCsReq", + Self::CmdParkourStartLevelCsReq => "CmdParkourStartLevelCsReq", + Self::CmdParkourGetDataCsReq => "CmdParkourGetDataCsReq", Self::CmdParkourEndLevelScRsp => "CmdParkourEndLevelScRsp", Self::CmdParkourGetRankingInfoScRsp => "CmdParkourGetRankingInfoScRsp", - Self::CmdParkourGetDataScRsp => "CmdParkourGetDataScRsp", + Self::CmdParkourEndLevelCsReq => "CmdParkourEndLevelCsReq", + Self::CmdParkourGetRankingInfoCsReq => "CmdParkourGetRankingInfoCsReq", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdParkourTypeNone" => Some(Self::None), - "CmdParkourGetDataCsReq" => Some(Self::CmdParkourGetDataCsReq), - "CmdParkourEndLevelCsReq" => Some(Self::CmdParkourEndLevelCsReq), - "CmdParkourStartLevelCsReq" => Some(Self::CmdParkourStartLevelCsReq), + "CmdParkourGetDataScRsp" => Some(Self::CmdParkourGetDataScRsp), "CmdParkourStartLevelScRsp" => Some(Self::CmdParkourStartLevelScRsp), - "CmdParkourGetRankingInfoCsReq" => Some(Self::CmdParkourGetRankingInfoCsReq), + "CmdParkourStartLevelCsReq" => Some(Self::CmdParkourStartLevelCsReq), + "CmdParkourGetDataCsReq" => Some(Self::CmdParkourGetDataCsReq), "CmdParkourEndLevelScRsp" => Some(Self::CmdParkourEndLevelScRsp), "CmdParkourGetRankingInfoScRsp" => Some(Self::CmdParkourGetRankingInfoScRsp), - "CmdParkourGetDataScRsp" => Some(Self::CmdParkourGetDataScRsp), + "CmdParkourEndLevelCsReq" => Some(Self::CmdParkourEndLevelCsReq), + "CmdParkourGetRankingInfoCsReq" => Some(Self::CmdParkourGetRankingInfoCsReq), _ => None, } } @@ -54214,13 +56567,13 @@ impl Hcfffeimcmf { #[repr(i32)] pub enum CmdPetType { None = 0, - CmdSummonPetScRsp = 7619, - CmdCurPetChangedScNotify = 7603, - CmdRecallPetScRsp = 7601, - CmdSummonPetCsReq = 7609, - CmdGetPetDataScRsp = 7620, - CmdGetPetDataCsReq = 7611, - CmdRecallPetCsReq = 7624, + CmdRecallPetScRsp = 7607, + CmdCurPetChangedScNotify = 7612, + CmdSummonPetCsReq = 7605, + CmdGetPetDataScRsp = 7611, + CmdRecallPetCsReq = 7620, + CmdGetPetDataCsReq = 7609, + CmdSummonPetScRsp = 7610, } impl CmdPetType { /// String value of the enum field names used in the ProtoBuf definition. @@ -54230,26 +56583,26 @@ impl CmdPetType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdPetTypeNone", - Self::CmdSummonPetScRsp => "CmdSummonPetScRsp", - Self::CmdCurPetChangedScNotify => "CmdCurPetChangedScNotify", Self::CmdRecallPetScRsp => "CmdRecallPetScRsp", + Self::CmdCurPetChangedScNotify => "CmdCurPetChangedScNotify", Self::CmdSummonPetCsReq => "CmdSummonPetCsReq", Self::CmdGetPetDataScRsp => "CmdGetPetDataScRsp", - Self::CmdGetPetDataCsReq => "CmdGetPetDataCsReq", Self::CmdRecallPetCsReq => "CmdRecallPetCsReq", + Self::CmdGetPetDataCsReq => "CmdGetPetDataCsReq", + Self::CmdSummonPetScRsp => "CmdSummonPetScRsp", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdPetTypeNone" => Some(Self::None), - "CmdSummonPetScRsp" => Some(Self::CmdSummonPetScRsp), - "CmdCurPetChangedScNotify" => Some(Self::CmdCurPetChangedScNotify), "CmdRecallPetScRsp" => Some(Self::CmdRecallPetScRsp), + "CmdCurPetChangedScNotify" => Some(Self::CmdCurPetChangedScNotify), "CmdSummonPetCsReq" => Some(Self::CmdSummonPetCsReq), "CmdGetPetDataScRsp" => Some(Self::CmdGetPetDataScRsp), - "CmdGetPetDataCsReq" => Some(Self::CmdGetPetDataCsReq), "CmdRecallPetCsReq" => Some(Self::CmdRecallPetCsReq), + "CmdGetPetDataCsReq" => Some(Self::CmdGetPetDataCsReq), + "CmdSummonPetScRsp" => Some(Self::CmdSummonPetScRsp), _ => None, } } @@ -54290,17 +56643,17 @@ impl Cdefbkpcppa { #[repr(i32)] pub enum CmdPhoneType { None = 0, - CmdUnlockPhoneCaseScNotify = 5172, - CmdSelectPhoneCaseScRsp = 5156, - CmdSelectPhoneThemeCsReq = 5148, - CmdSelectPhoneThemeScRsp = 5171, - CmdUnlockPhoneThemeScNotify = 5152, - CmdSelectChatBubbleCsReq = 5131, - CmdGetPhoneDataScRsp = 5132, - CmdUnlockChatBubbleScNotify = 5176, - CmdSelectChatBubbleScRsp = 5140, - CmdGetPhoneDataCsReq = 5195, - CmdSelectPhoneCaseCsReq = 5122, + CmdSelectPhoneCaseScRsp = 5177, + CmdUnlockPhoneThemeScNotify = 5159, + CmdSelectChatBubbleScRsp = 5139, + CmdSelectPhoneThemeScRsp = 5170, + CmdSelectPhoneCaseCsReq = 5154, + CmdUnlockPhoneCaseScNotify = 5180, + CmdUnlockChatBubbleScNotify = 5127, + CmdGetPhoneDataCsReq = 5120, + CmdGetPhoneDataScRsp = 5191, + CmdSelectChatBubbleCsReq = 5167, + CmdSelectPhoneThemeCsReq = 5121, } impl CmdPhoneType { /// String value of the enum field names used in the ProtoBuf definition. @@ -54310,34 +56663,34 @@ impl CmdPhoneType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdPhoneTypeNone", - Self::CmdUnlockPhoneCaseScNotify => "CmdUnlockPhoneCaseScNotify", Self::CmdSelectPhoneCaseScRsp => "CmdSelectPhoneCaseScRsp", - Self::CmdSelectPhoneThemeCsReq => "CmdSelectPhoneThemeCsReq", - Self::CmdSelectPhoneThemeScRsp => "CmdSelectPhoneThemeScRsp", Self::CmdUnlockPhoneThemeScNotify => "CmdUnlockPhoneThemeScNotify", - Self::CmdSelectChatBubbleCsReq => "CmdSelectChatBubbleCsReq", - Self::CmdGetPhoneDataScRsp => "CmdGetPhoneDataScRsp", - Self::CmdUnlockChatBubbleScNotify => "CmdUnlockChatBubbleScNotify", Self::CmdSelectChatBubbleScRsp => "CmdSelectChatBubbleScRsp", - Self::CmdGetPhoneDataCsReq => "CmdGetPhoneDataCsReq", + Self::CmdSelectPhoneThemeScRsp => "CmdSelectPhoneThemeScRsp", Self::CmdSelectPhoneCaseCsReq => "CmdSelectPhoneCaseCsReq", + Self::CmdUnlockPhoneCaseScNotify => "CmdUnlockPhoneCaseScNotify", + Self::CmdUnlockChatBubbleScNotify => "CmdUnlockChatBubbleScNotify", + Self::CmdGetPhoneDataCsReq => "CmdGetPhoneDataCsReq", + Self::CmdGetPhoneDataScRsp => "CmdGetPhoneDataScRsp", + Self::CmdSelectChatBubbleCsReq => "CmdSelectChatBubbleCsReq", + Self::CmdSelectPhoneThemeCsReq => "CmdSelectPhoneThemeCsReq", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdPhoneTypeNone" => Some(Self::None), - "CmdUnlockPhoneCaseScNotify" => Some(Self::CmdUnlockPhoneCaseScNotify), "CmdSelectPhoneCaseScRsp" => Some(Self::CmdSelectPhoneCaseScRsp), - "CmdSelectPhoneThemeCsReq" => Some(Self::CmdSelectPhoneThemeCsReq), - "CmdSelectPhoneThemeScRsp" => Some(Self::CmdSelectPhoneThemeScRsp), "CmdUnlockPhoneThemeScNotify" => Some(Self::CmdUnlockPhoneThemeScNotify), - "CmdSelectChatBubbleCsReq" => Some(Self::CmdSelectChatBubbleCsReq), - "CmdGetPhoneDataScRsp" => Some(Self::CmdGetPhoneDataScRsp), - "CmdUnlockChatBubbleScNotify" => Some(Self::CmdUnlockChatBubbleScNotify), "CmdSelectChatBubbleScRsp" => Some(Self::CmdSelectChatBubbleScRsp), - "CmdGetPhoneDataCsReq" => Some(Self::CmdGetPhoneDataCsReq), + "CmdSelectPhoneThemeScRsp" => Some(Self::CmdSelectPhoneThemeScRsp), "CmdSelectPhoneCaseCsReq" => Some(Self::CmdSelectPhoneCaseCsReq), + "CmdUnlockPhoneCaseScNotify" => Some(Self::CmdUnlockPhoneCaseScNotify), + "CmdUnlockChatBubbleScNotify" => Some(Self::CmdUnlockChatBubbleScNotify), + "CmdGetPhoneDataCsReq" => Some(Self::CmdGetPhoneDataCsReq), + "CmdGetPhoneDataScRsp" => Some(Self::CmdGetPhoneDataScRsp), + "CmdSelectChatBubbleCsReq" => Some(Self::CmdSelectChatBubbleCsReq), + "CmdSelectPhoneThemeCsReq" => Some(Self::CmdSelectPhoneThemeCsReq), _ => None, } } @@ -54348,56 +56701,56 @@ impl CmdPhoneType { #[repr(i32)] pub enum CmdPlanetFesType { None = 0, - CmdPlanetFesGetFriendRankingInfoListScRsp = 8247, - CmdPlanetFesCollectIncomeScRsp = 8236, - CmdPlanetFesGetBusinessDayInfoCsReq = 8222, - CmdPlanetFesDeliverPamCargoScRsp = 8218, - CmdPlanetFesSetCustomKeyValueScRsp = 8248, - CmdPlanetFesUpgradeFesLevelScRsp = 8233, - CmdGetPlanetFesDataScRsp = 8246, - CmdPlanetFesUseItemCsReq = 8214, - CmdPlanetFesGetAvatarStatScRsp = 8230, - CmdPlanetFesDoGachaScRsp = 8220, - CmdPlanetFesBonusEventInteractScRsp = 8219, - CmdPlanetFesClientStatusCsReq = 8209, - CmdPlanetFesChooseAvatarEventOptionCsReq = 8201, - CmdPlanetFesStartMiniGameScRsp = 8249, - CmdPlanetFesGameBingoFlipScRsp = 8225, - CmdPlanetFesSetAvatarWorkScRsp = 8227, - CmdPlanetFesGetBusinessDayInfoScRsp = 8216, - CmdPlanetFesUpgradeSkillLevelCsReq = 8211, - CmdPlanetFesCollectIncomeCsReq = 8237, - CmdPlanetFesBuyLandCsReq = 8215, + CmdPlanetFesCollectIncomeScRsp = 8211, + CmdPlanetFesUpgradeFesLevelScRsp = 8244, + CmdPlanetFesTakeQuestRewardScRsp = 8225, + CmdPlanetFesUseItemScRsp = 8250, + CmdPlanetFesGetBusinessDayInfoScRsp = 8230, CmdPlanetFesClientStatusScRsp = 8245, - CmdPlanetFesAvatarLevelUpCsReq = 8244, - CmdPlanetFesUpgradeFesLevelCsReq = 8241, - CmdPlanetFesBonusEventInteractCsReq = 8210, - CmdPlanetFesDeliverPamCargoCsReq = 8234, - CmdPlanetFesAvatarLevelUpScRsp = 8232, - CmdPlanetFesDealAvatarEventOptionItemScRsp = 8239, - CmdPlanetFesCollectAllIncomeCsReq = 8207, - CmdGetPlanetFesDataCsReq = 8204, - CmdPlanetFesGetFriendRankingInfoListCsReq = 8203, - CmdPlanetFesTakeRegionPhaseRewardCsReq = 8213, - CmdPlanetFesDealAvatarEventOptionItemCsReq = 8235, - CmdPlanetFesBusinessDayRefreshEventCsReq = 8242, - CmdPlanetFesBusinessDayRefreshEventScRsp = 8229, - CmdPlanetFesUseItemScRsp = 8208, - CmdPlanetFesGetAvatarStatCsReq = 8231, - CmdPlanetFesTakeQuestRewardCsReq = 8223, - CmdPlanetFesSyncChangeScNotify = 8202, - CmdPlanetFesDoGachaCsReq = 8240, - CmdPlanetFesTakeRegionPhaseRewardScRsp = 8206, - CmdPlanetFesCollectAllIncomeScRsp = 8250, - CmdPlanetFesFriendRankingInfoChangeScNotify = 8224, - CmdPlanetFesUpgradeSkillLevelScRsp = 8238, - CmdPlanetFesChooseAvatarEventOptionScRsp = 8205, - CmdPlanetFesBuyLandScRsp = 8243, - CmdPlanetFesGameBingoFlipCsReq = 8228, - CmdPlanetFesSetCustomKeyValueCsReq = 8212, - CmdPlanetFesStartMiniGameCsReq = 8221, - CmdPlanetFesSetAvatarWorkCsReq = 8217, - CmdPlanetFesTakeQuestRewardScRsp = 8226, + CmdPlanetFesUpgradeSkillLevelCsReq = 8248, + CmdPlanetFesDealAvatarEventOptionItemCsReq = 8220, + CmdPlanetFesGameBingoFlipScRsp = 8223, + CmdPlanetFesFriendRankingInfoChangeScNotify = 8208, + CmdPlanetFesSetAvatarWorkCsReq = 8237, + CmdPlanetFesCollectAllIncomeScRsp = 8228, + CmdPlanetFesSetAvatarWorkScRsp = 8217, + CmdPlanetFesAvatarLevelUpScRsp = 8246, + CmdPlanetFesBonusEventInteractScRsp = 8242, + CmdPlanetFesBuyLandScRsp = 8212, + CmdPlanetFesClientStatusCsReq = 8210, + CmdPlanetFesTakeRegionPhaseRewardScRsp = 8204, + CmdPlanetFesSetCustomKeyValueCsReq = 8238, + CmdPlanetFesDeliverPamCargoCsReq = 8240, + CmdPlanetFesBuyLandCsReq = 8239, + CmdPlanetFesUpgradeFesLevelCsReq = 8233, + CmdPlanetFesUpgradeSkillLevelScRsp = 8232, + CmdPlanetFesGetBusinessDayInfoCsReq = 8243, + CmdPlanetFesUseItemCsReq = 8209, + CmdPlanetFesBusinessDayRefreshEventScRsp = 8213, + CmdPlanetFesChooseAvatarEventOptionScRsp = 8201, + CmdPlanetFesDoGachaCsReq = 8219, + CmdPlanetFesSetCustomKeyValueScRsp = 8241, + CmdPlanetFesCollectAllIncomeCsReq = 8206, + CmdPlanetFesStartMiniGameScRsp = 8247, + CmdPlanetFesGetAvatarStatScRsp = 8207, + CmdPlanetFesStartMiniGameCsReq = 8235, + CmdPlanetFesDealAvatarEventOptionItemScRsp = 8216, + CmdGetPlanetFesDataCsReq = 8249, + CmdPlanetFesGameBingoFlipCsReq = 8229, + CmdPlanetFesDoGachaScRsp = 8226, + CmdPlanetFesBusinessDayRefreshEventCsReq = 8203, + CmdPlanetFesTakeQuestRewardCsReq = 8222, + CmdPlanetFesTakeRegionPhaseRewardCsReq = 8231, + CmdPlanetFesGetFriendRankingInfoListScRsp = 8202, + CmdGetPlanetFesDataScRsp = 8227, + CmdPlanetFesBonusEventInteractCsReq = 8221, + CmdPlanetFesDeliverPamCargoScRsp = 8224, + CmdPlanetFesGetFriendRankingInfoListCsReq = 8205, + CmdPlanetFesAvatarLevelUpCsReq = 8234, + CmdPlanetFesGetAvatarStatCsReq = 8215, + CmdPlanetFesChooseAvatarEventOptionCsReq = 8214, + CmdPlanetFesCollectIncomeCsReq = 8236, + CmdPlanetFesSyncChangeScNotify = 8218, } impl CmdPlanetFesType { /// String value of the enum field names used in the ProtoBuf definition. @@ -54407,233 +56760,233 @@ impl CmdPlanetFesType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdPlanetFesTypeNone", - Self::CmdPlanetFesGetFriendRankingInfoListScRsp => { - "CmdPlanetFesGetFriendRankingInfoListScRsp" - } Self::CmdPlanetFesCollectIncomeScRsp => "CmdPlanetFesCollectIncomeScRsp", - Self::CmdPlanetFesGetBusinessDayInfoCsReq => { - "CmdPlanetFesGetBusinessDayInfoCsReq" - } - Self::CmdPlanetFesDeliverPamCargoScRsp => "CmdPlanetFesDeliverPamCargoScRsp", - Self::CmdPlanetFesSetCustomKeyValueScRsp => { - "CmdPlanetFesSetCustomKeyValueScRsp" - } Self::CmdPlanetFesUpgradeFesLevelScRsp => "CmdPlanetFesUpgradeFesLevelScRsp", - Self::CmdGetPlanetFesDataScRsp => "CmdGetPlanetFesDataScRsp", - Self::CmdPlanetFesUseItemCsReq => "CmdPlanetFesUseItemCsReq", - Self::CmdPlanetFesGetAvatarStatScRsp => "CmdPlanetFesGetAvatarStatScRsp", - Self::CmdPlanetFesDoGachaScRsp => "CmdPlanetFesDoGachaScRsp", - Self::CmdPlanetFesBonusEventInteractScRsp => { - "CmdPlanetFesBonusEventInteractScRsp" - } - Self::CmdPlanetFesClientStatusCsReq => "CmdPlanetFesClientStatusCsReq", - Self::CmdPlanetFesChooseAvatarEventOptionCsReq => { - "CmdPlanetFesChooseAvatarEventOptionCsReq" - } - Self::CmdPlanetFesStartMiniGameScRsp => "CmdPlanetFesStartMiniGameScRsp", - Self::CmdPlanetFesGameBingoFlipScRsp => "CmdPlanetFesGameBingoFlipScRsp", - Self::CmdPlanetFesSetAvatarWorkScRsp => "CmdPlanetFesSetAvatarWorkScRsp", + Self::CmdPlanetFesTakeQuestRewardScRsp => "CmdPlanetFesTakeQuestRewardScRsp", + Self::CmdPlanetFesUseItemScRsp => "CmdPlanetFesUseItemScRsp", Self::CmdPlanetFesGetBusinessDayInfoScRsp => { "CmdPlanetFesGetBusinessDayInfoScRsp" } + Self::CmdPlanetFesClientStatusScRsp => "CmdPlanetFesClientStatusScRsp", Self::CmdPlanetFesUpgradeSkillLevelCsReq => { "CmdPlanetFesUpgradeSkillLevelCsReq" } - Self::CmdPlanetFesCollectIncomeCsReq => "CmdPlanetFesCollectIncomeCsReq", - Self::CmdPlanetFesBuyLandCsReq => "CmdPlanetFesBuyLandCsReq", - Self::CmdPlanetFesClientStatusScRsp => "CmdPlanetFesClientStatusScRsp", - Self::CmdPlanetFesAvatarLevelUpCsReq => "CmdPlanetFesAvatarLevelUpCsReq", - Self::CmdPlanetFesUpgradeFesLevelCsReq => "CmdPlanetFesUpgradeFesLevelCsReq", - Self::CmdPlanetFesBonusEventInteractCsReq => { - "CmdPlanetFesBonusEventInteractCsReq" - } - Self::CmdPlanetFesDeliverPamCargoCsReq => "CmdPlanetFesDeliverPamCargoCsReq", - Self::CmdPlanetFesAvatarLevelUpScRsp => "CmdPlanetFesAvatarLevelUpScRsp", - Self::CmdPlanetFesDealAvatarEventOptionItemScRsp => { - "CmdPlanetFesDealAvatarEventOptionItemScRsp" - } - Self::CmdPlanetFesCollectAllIncomeCsReq => { - "CmdPlanetFesCollectAllIncomeCsReq" - } - Self::CmdGetPlanetFesDataCsReq => "CmdGetPlanetFesDataCsReq", - Self::CmdPlanetFesGetFriendRankingInfoListCsReq => { - "CmdPlanetFesGetFriendRankingInfoListCsReq" - } - Self::CmdPlanetFesTakeRegionPhaseRewardCsReq => { - "CmdPlanetFesTakeRegionPhaseRewardCsReq" - } Self::CmdPlanetFesDealAvatarEventOptionItemCsReq => { "CmdPlanetFesDealAvatarEventOptionItemCsReq" } - Self::CmdPlanetFesBusinessDayRefreshEventCsReq => { - "CmdPlanetFesBusinessDayRefreshEventCsReq" - } - Self::CmdPlanetFesBusinessDayRefreshEventScRsp => { - "CmdPlanetFesBusinessDayRefreshEventScRsp" - } - Self::CmdPlanetFesUseItemScRsp => "CmdPlanetFesUseItemScRsp", - Self::CmdPlanetFesGetAvatarStatCsReq => "CmdPlanetFesGetAvatarStatCsReq", - Self::CmdPlanetFesTakeQuestRewardCsReq => "CmdPlanetFesTakeQuestRewardCsReq", - Self::CmdPlanetFesSyncChangeScNotify => "CmdPlanetFesSyncChangeScNotify", - Self::CmdPlanetFesDoGachaCsReq => "CmdPlanetFesDoGachaCsReq", - Self::CmdPlanetFesTakeRegionPhaseRewardScRsp => { - "CmdPlanetFesTakeRegionPhaseRewardScRsp" - } - Self::CmdPlanetFesCollectAllIncomeScRsp => { - "CmdPlanetFesCollectAllIncomeScRsp" - } + Self::CmdPlanetFesGameBingoFlipScRsp => "CmdPlanetFesGameBingoFlipScRsp", Self::CmdPlanetFesFriendRankingInfoChangeScNotify => { "CmdPlanetFesFriendRankingInfoChangeScNotify" } + Self::CmdPlanetFesSetAvatarWorkCsReq => "CmdPlanetFesSetAvatarWorkCsReq", + Self::CmdPlanetFesCollectAllIncomeScRsp => { + "CmdPlanetFesCollectAllIncomeScRsp" + } + Self::CmdPlanetFesSetAvatarWorkScRsp => "CmdPlanetFesSetAvatarWorkScRsp", + Self::CmdPlanetFesAvatarLevelUpScRsp => "CmdPlanetFesAvatarLevelUpScRsp", + Self::CmdPlanetFesBonusEventInteractScRsp => { + "CmdPlanetFesBonusEventInteractScRsp" + } + Self::CmdPlanetFesBuyLandScRsp => "CmdPlanetFesBuyLandScRsp", + Self::CmdPlanetFesClientStatusCsReq => "CmdPlanetFesClientStatusCsReq", + Self::CmdPlanetFesTakeRegionPhaseRewardScRsp => { + "CmdPlanetFesTakeRegionPhaseRewardScRsp" + } + Self::CmdPlanetFesSetCustomKeyValueCsReq => { + "CmdPlanetFesSetCustomKeyValueCsReq" + } + Self::CmdPlanetFesDeliverPamCargoCsReq => "CmdPlanetFesDeliverPamCargoCsReq", + Self::CmdPlanetFesBuyLandCsReq => "CmdPlanetFesBuyLandCsReq", + Self::CmdPlanetFesUpgradeFesLevelCsReq => "CmdPlanetFesUpgradeFesLevelCsReq", Self::CmdPlanetFesUpgradeSkillLevelScRsp => { "CmdPlanetFesUpgradeSkillLevelScRsp" } + Self::CmdPlanetFesGetBusinessDayInfoCsReq => { + "CmdPlanetFesGetBusinessDayInfoCsReq" + } + Self::CmdPlanetFesUseItemCsReq => "CmdPlanetFesUseItemCsReq", + Self::CmdPlanetFesBusinessDayRefreshEventScRsp => { + "CmdPlanetFesBusinessDayRefreshEventScRsp" + } Self::CmdPlanetFesChooseAvatarEventOptionScRsp => { "CmdPlanetFesChooseAvatarEventOptionScRsp" } - Self::CmdPlanetFesBuyLandScRsp => "CmdPlanetFesBuyLandScRsp", - Self::CmdPlanetFesGameBingoFlipCsReq => "CmdPlanetFesGameBingoFlipCsReq", - Self::CmdPlanetFesSetCustomKeyValueCsReq => { - "CmdPlanetFesSetCustomKeyValueCsReq" + Self::CmdPlanetFesDoGachaCsReq => "CmdPlanetFesDoGachaCsReq", + Self::CmdPlanetFesSetCustomKeyValueScRsp => { + "CmdPlanetFesSetCustomKeyValueScRsp" } + Self::CmdPlanetFesCollectAllIncomeCsReq => { + "CmdPlanetFesCollectAllIncomeCsReq" + } + Self::CmdPlanetFesStartMiniGameScRsp => "CmdPlanetFesStartMiniGameScRsp", + Self::CmdPlanetFesGetAvatarStatScRsp => "CmdPlanetFesGetAvatarStatScRsp", Self::CmdPlanetFesStartMiniGameCsReq => "CmdPlanetFesStartMiniGameCsReq", - Self::CmdPlanetFesSetAvatarWorkCsReq => "CmdPlanetFesSetAvatarWorkCsReq", - Self::CmdPlanetFesTakeQuestRewardScRsp => "CmdPlanetFesTakeQuestRewardScRsp", + Self::CmdPlanetFesDealAvatarEventOptionItemScRsp => { + "CmdPlanetFesDealAvatarEventOptionItemScRsp" + } + Self::CmdGetPlanetFesDataCsReq => "CmdGetPlanetFesDataCsReq", + Self::CmdPlanetFesGameBingoFlipCsReq => "CmdPlanetFesGameBingoFlipCsReq", + Self::CmdPlanetFesDoGachaScRsp => "CmdPlanetFesDoGachaScRsp", + Self::CmdPlanetFesBusinessDayRefreshEventCsReq => { + "CmdPlanetFesBusinessDayRefreshEventCsReq" + } + Self::CmdPlanetFesTakeQuestRewardCsReq => "CmdPlanetFesTakeQuestRewardCsReq", + Self::CmdPlanetFesTakeRegionPhaseRewardCsReq => { + "CmdPlanetFesTakeRegionPhaseRewardCsReq" + } + Self::CmdPlanetFesGetFriendRankingInfoListScRsp => { + "CmdPlanetFesGetFriendRankingInfoListScRsp" + } + Self::CmdGetPlanetFesDataScRsp => "CmdGetPlanetFesDataScRsp", + Self::CmdPlanetFesBonusEventInteractCsReq => { + "CmdPlanetFesBonusEventInteractCsReq" + } + Self::CmdPlanetFesDeliverPamCargoScRsp => "CmdPlanetFesDeliverPamCargoScRsp", + Self::CmdPlanetFesGetFriendRankingInfoListCsReq => { + "CmdPlanetFesGetFriendRankingInfoListCsReq" + } + Self::CmdPlanetFesAvatarLevelUpCsReq => "CmdPlanetFesAvatarLevelUpCsReq", + Self::CmdPlanetFesGetAvatarStatCsReq => "CmdPlanetFesGetAvatarStatCsReq", + Self::CmdPlanetFesChooseAvatarEventOptionCsReq => { + "CmdPlanetFesChooseAvatarEventOptionCsReq" + } + Self::CmdPlanetFesCollectIncomeCsReq => "CmdPlanetFesCollectIncomeCsReq", + Self::CmdPlanetFesSyncChangeScNotify => "CmdPlanetFesSyncChangeScNotify", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdPlanetFesTypeNone" => Some(Self::None), - "CmdPlanetFesGetFriendRankingInfoListScRsp" => { - Some(Self::CmdPlanetFesGetFriendRankingInfoListScRsp) - } "CmdPlanetFesCollectIncomeScRsp" => { Some(Self::CmdPlanetFesCollectIncomeScRsp) } - "CmdPlanetFesGetBusinessDayInfoCsReq" => { - Some(Self::CmdPlanetFesGetBusinessDayInfoCsReq) - } - "CmdPlanetFesDeliverPamCargoScRsp" => { - Some(Self::CmdPlanetFesDeliverPamCargoScRsp) - } - "CmdPlanetFesSetCustomKeyValueScRsp" => { - Some(Self::CmdPlanetFesSetCustomKeyValueScRsp) - } "CmdPlanetFesUpgradeFesLevelScRsp" => { Some(Self::CmdPlanetFesUpgradeFesLevelScRsp) } - "CmdGetPlanetFesDataScRsp" => Some(Self::CmdGetPlanetFesDataScRsp), - "CmdPlanetFesUseItemCsReq" => Some(Self::CmdPlanetFesUseItemCsReq), - "CmdPlanetFesGetAvatarStatScRsp" => { - Some(Self::CmdPlanetFesGetAvatarStatScRsp) - } - "CmdPlanetFesDoGachaScRsp" => Some(Self::CmdPlanetFesDoGachaScRsp), - "CmdPlanetFesBonusEventInteractScRsp" => { - Some(Self::CmdPlanetFesBonusEventInteractScRsp) - } - "CmdPlanetFesClientStatusCsReq" => Some(Self::CmdPlanetFesClientStatusCsReq), - "CmdPlanetFesChooseAvatarEventOptionCsReq" => { - Some(Self::CmdPlanetFesChooseAvatarEventOptionCsReq) - } - "CmdPlanetFesStartMiniGameScRsp" => { - Some(Self::CmdPlanetFesStartMiniGameScRsp) - } - "CmdPlanetFesGameBingoFlipScRsp" => { - Some(Self::CmdPlanetFesGameBingoFlipScRsp) - } - "CmdPlanetFesSetAvatarWorkScRsp" => { - Some(Self::CmdPlanetFesSetAvatarWorkScRsp) + "CmdPlanetFesTakeQuestRewardScRsp" => { + Some(Self::CmdPlanetFesTakeQuestRewardScRsp) } + "CmdPlanetFesUseItemScRsp" => Some(Self::CmdPlanetFesUseItemScRsp), "CmdPlanetFesGetBusinessDayInfoScRsp" => { Some(Self::CmdPlanetFesGetBusinessDayInfoScRsp) } + "CmdPlanetFesClientStatusScRsp" => Some(Self::CmdPlanetFesClientStatusScRsp), "CmdPlanetFesUpgradeSkillLevelCsReq" => { Some(Self::CmdPlanetFesUpgradeSkillLevelCsReq) } - "CmdPlanetFesCollectIncomeCsReq" => { - Some(Self::CmdPlanetFesCollectIncomeCsReq) - } - "CmdPlanetFesBuyLandCsReq" => Some(Self::CmdPlanetFesBuyLandCsReq), - "CmdPlanetFesClientStatusScRsp" => Some(Self::CmdPlanetFesClientStatusScRsp), - "CmdPlanetFesAvatarLevelUpCsReq" => { - Some(Self::CmdPlanetFesAvatarLevelUpCsReq) - } - "CmdPlanetFesUpgradeFesLevelCsReq" => { - Some(Self::CmdPlanetFesUpgradeFesLevelCsReq) - } - "CmdPlanetFesBonusEventInteractCsReq" => { - Some(Self::CmdPlanetFesBonusEventInteractCsReq) - } - "CmdPlanetFesDeliverPamCargoCsReq" => { - Some(Self::CmdPlanetFesDeliverPamCargoCsReq) - } - "CmdPlanetFesAvatarLevelUpScRsp" => { - Some(Self::CmdPlanetFesAvatarLevelUpScRsp) - } - "CmdPlanetFesDealAvatarEventOptionItemScRsp" => { - Some(Self::CmdPlanetFesDealAvatarEventOptionItemScRsp) - } - "CmdPlanetFesCollectAllIncomeCsReq" => { - Some(Self::CmdPlanetFesCollectAllIncomeCsReq) - } - "CmdGetPlanetFesDataCsReq" => Some(Self::CmdGetPlanetFesDataCsReq), - "CmdPlanetFesGetFriendRankingInfoListCsReq" => { - Some(Self::CmdPlanetFesGetFriendRankingInfoListCsReq) - } - "CmdPlanetFesTakeRegionPhaseRewardCsReq" => { - Some(Self::CmdPlanetFesTakeRegionPhaseRewardCsReq) - } "CmdPlanetFesDealAvatarEventOptionItemCsReq" => { Some(Self::CmdPlanetFesDealAvatarEventOptionItemCsReq) } - "CmdPlanetFesBusinessDayRefreshEventCsReq" => { - Some(Self::CmdPlanetFesBusinessDayRefreshEventCsReq) - } - "CmdPlanetFesBusinessDayRefreshEventScRsp" => { - Some(Self::CmdPlanetFesBusinessDayRefreshEventScRsp) - } - "CmdPlanetFesUseItemScRsp" => Some(Self::CmdPlanetFesUseItemScRsp), - "CmdPlanetFesGetAvatarStatCsReq" => { - Some(Self::CmdPlanetFesGetAvatarStatCsReq) - } - "CmdPlanetFesTakeQuestRewardCsReq" => { - Some(Self::CmdPlanetFesTakeQuestRewardCsReq) - } - "CmdPlanetFesSyncChangeScNotify" => { - Some(Self::CmdPlanetFesSyncChangeScNotify) - } - "CmdPlanetFesDoGachaCsReq" => Some(Self::CmdPlanetFesDoGachaCsReq), - "CmdPlanetFesTakeRegionPhaseRewardScRsp" => { - Some(Self::CmdPlanetFesTakeRegionPhaseRewardScRsp) - } - "CmdPlanetFesCollectAllIncomeScRsp" => { - Some(Self::CmdPlanetFesCollectAllIncomeScRsp) + "CmdPlanetFesGameBingoFlipScRsp" => { + Some(Self::CmdPlanetFesGameBingoFlipScRsp) } "CmdPlanetFesFriendRankingInfoChangeScNotify" => { Some(Self::CmdPlanetFesFriendRankingInfoChangeScNotify) } - "CmdPlanetFesUpgradeSkillLevelScRsp" => { - Some(Self::CmdPlanetFesUpgradeSkillLevelScRsp) + "CmdPlanetFesSetAvatarWorkCsReq" => { + Some(Self::CmdPlanetFesSetAvatarWorkCsReq) } - "CmdPlanetFesChooseAvatarEventOptionScRsp" => { - Some(Self::CmdPlanetFesChooseAvatarEventOptionScRsp) + "CmdPlanetFesCollectAllIncomeScRsp" => { + Some(Self::CmdPlanetFesCollectAllIncomeScRsp) + } + "CmdPlanetFesSetAvatarWorkScRsp" => { + Some(Self::CmdPlanetFesSetAvatarWorkScRsp) + } + "CmdPlanetFesAvatarLevelUpScRsp" => { + Some(Self::CmdPlanetFesAvatarLevelUpScRsp) + } + "CmdPlanetFesBonusEventInteractScRsp" => { + Some(Self::CmdPlanetFesBonusEventInteractScRsp) } "CmdPlanetFesBuyLandScRsp" => Some(Self::CmdPlanetFesBuyLandScRsp), - "CmdPlanetFesGameBingoFlipCsReq" => { - Some(Self::CmdPlanetFesGameBingoFlipCsReq) + "CmdPlanetFesClientStatusCsReq" => Some(Self::CmdPlanetFesClientStatusCsReq), + "CmdPlanetFesTakeRegionPhaseRewardScRsp" => { + Some(Self::CmdPlanetFesTakeRegionPhaseRewardScRsp) } "CmdPlanetFesSetCustomKeyValueCsReq" => { Some(Self::CmdPlanetFesSetCustomKeyValueCsReq) } + "CmdPlanetFesDeliverPamCargoCsReq" => { + Some(Self::CmdPlanetFesDeliverPamCargoCsReq) + } + "CmdPlanetFesBuyLandCsReq" => Some(Self::CmdPlanetFesBuyLandCsReq), + "CmdPlanetFesUpgradeFesLevelCsReq" => { + Some(Self::CmdPlanetFesUpgradeFesLevelCsReq) + } + "CmdPlanetFesUpgradeSkillLevelScRsp" => { + Some(Self::CmdPlanetFesUpgradeSkillLevelScRsp) + } + "CmdPlanetFesGetBusinessDayInfoCsReq" => { + Some(Self::CmdPlanetFesGetBusinessDayInfoCsReq) + } + "CmdPlanetFesUseItemCsReq" => Some(Self::CmdPlanetFesUseItemCsReq), + "CmdPlanetFesBusinessDayRefreshEventScRsp" => { + Some(Self::CmdPlanetFesBusinessDayRefreshEventScRsp) + } + "CmdPlanetFesChooseAvatarEventOptionScRsp" => { + Some(Self::CmdPlanetFesChooseAvatarEventOptionScRsp) + } + "CmdPlanetFesDoGachaCsReq" => Some(Self::CmdPlanetFesDoGachaCsReq), + "CmdPlanetFesSetCustomKeyValueScRsp" => { + Some(Self::CmdPlanetFesSetCustomKeyValueScRsp) + } + "CmdPlanetFesCollectAllIncomeCsReq" => { + Some(Self::CmdPlanetFesCollectAllIncomeCsReq) + } + "CmdPlanetFesStartMiniGameScRsp" => { + Some(Self::CmdPlanetFesStartMiniGameScRsp) + } + "CmdPlanetFesGetAvatarStatScRsp" => { + Some(Self::CmdPlanetFesGetAvatarStatScRsp) + } "CmdPlanetFesStartMiniGameCsReq" => { Some(Self::CmdPlanetFesStartMiniGameCsReq) } - "CmdPlanetFesSetAvatarWorkCsReq" => { - Some(Self::CmdPlanetFesSetAvatarWorkCsReq) + "CmdPlanetFesDealAvatarEventOptionItemScRsp" => { + Some(Self::CmdPlanetFesDealAvatarEventOptionItemScRsp) } - "CmdPlanetFesTakeQuestRewardScRsp" => { - Some(Self::CmdPlanetFesTakeQuestRewardScRsp) + "CmdGetPlanetFesDataCsReq" => Some(Self::CmdGetPlanetFesDataCsReq), + "CmdPlanetFesGameBingoFlipCsReq" => { + Some(Self::CmdPlanetFesGameBingoFlipCsReq) + } + "CmdPlanetFesDoGachaScRsp" => Some(Self::CmdPlanetFesDoGachaScRsp), + "CmdPlanetFesBusinessDayRefreshEventCsReq" => { + Some(Self::CmdPlanetFesBusinessDayRefreshEventCsReq) + } + "CmdPlanetFesTakeQuestRewardCsReq" => { + Some(Self::CmdPlanetFesTakeQuestRewardCsReq) + } + "CmdPlanetFesTakeRegionPhaseRewardCsReq" => { + Some(Self::CmdPlanetFesTakeRegionPhaseRewardCsReq) + } + "CmdPlanetFesGetFriendRankingInfoListScRsp" => { + Some(Self::CmdPlanetFesGetFriendRankingInfoListScRsp) + } + "CmdGetPlanetFesDataScRsp" => Some(Self::CmdGetPlanetFesDataScRsp), + "CmdPlanetFesBonusEventInteractCsReq" => { + Some(Self::CmdPlanetFesBonusEventInteractCsReq) + } + "CmdPlanetFesDeliverPamCargoScRsp" => { + Some(Self::CmdPlanetFesDeliverPamCargoScRsp) + } + "CmdPlanetFesGetFriendRankingInfoListCsReq" => { + Some(Self::CmdPlanetFesGetFriendRankingInfoListCsReq) + } + "CmdPlanetFesAvatarLevelUpCsReq" => { + Some(Self::CmdPlanetFesAvatarLevelUpCsReq) + } + "CmdPlanetFesGetAvatarStatCsReq" => { + Some(Self::CmdPlanetFesGetAvatarStatCsReq) + } + "CmdPlanetFesChooseAvatarEventOptionCsReq" => { + Some(Self::CmdPlanetFesChooseAvatarEventOptionCsReq) + } + "CmdPlanetFesCollectIncomeCsReq" => { + Some(Self::CmdPlanetFesCollectIncomeCsReq) + } + "CmdPlanetFesSyncChangeScNotify" => { + Some(Self::CmdPlanetFesSyncChangeScNotify) } _ => None, } @@ -54770,24 +57123,24 @@ impl Iocpjfkgkdg { #[repr(i32)] pub enum CmdPlanetFesExtType { None = 0, - CmdPlanetFesApplyCardPieceCsReq = 8317, - CmdPlanetFesGetOfferedCardPieceScRsp = 8297, - CmdPlanetFesLargeBonusInteractScRsp = 8334, - CmdPlanetFesLargeBonusInteractCsReq = 8310, - CmdPlanetFesGiveCardPieceScRsp = 8330, - CmdPlanetFesChangeCardPieceApplyPermissionCsReq = 8326, - CmdPlanetFesHandleCardPieceApplyScRsp = 8299, - CmdPlanetFesGetExtraCardPieceInfoScRsp = 8336, - CmdPlanetFesEnterNextBusinessDayCsReq = 8322, - CmdPlanetFesHandleCardPieceApplyCsReq = 8333, + CmdPlanetFesHandleCardPieceApplyCsReq = 8302, + CmdPlanetFesHandleCardPieceApplyScRsp = 8300, + CmdPlanetFesGetFriendCardPieceScRsp = 8326, + CmdPlanetFesGetFriendCardPieceCsReq = 8308, + CmdPlanetFesApplyCardPieceScRsp = 8329, + CmdPlanetFesGiveCardPieceScRsp = 8309, + CmdPlanetFesChangeCardPieceApplyPermissionScRsp = 8327, + CmdPlanetFesGetExtraCardPieceInfoScRsp = 8317, CmdPlanetFesGetOfferedCardPieceCsReq = 8335, - CmdPlanetFesGiveCardPieceCsReq = 8340, - CmdPlanetFesApplyCardPieceScRsp = 8305, - CmdPlanetFesGetExtraCardPieceInfoCsReq = 8294, - CmdPlanetFesGetFriendCardPieceCsReq = 8292, - CmdPlanetFesGetFriendCardPieceScRsp = 8327, - CmdPlanetFesEnterNextBusinessDayScRsp = 8313, - CmdPlanetFesChangeCardPieceApplyPermissionScRsp = 8307, + CmdPlanetFesGetOfferedCardPieceScRsp = 8296, + CmdPlanetFesLargeBonusInteractCsReq = 8316, + CmdPlanetFesGiveCardPieceCsReq = 8318, + CmdPlanetFesEnterNextBusinessDayCsReq = 8336, + CmdPlanetFesGetExtraCardPieceInfoCsReq = 8339, + CmdPlanetFesApplyCardPieceCsReq = 8307, + CmdPlanetFesEnterNextBusinessDayScRsp = 8312, + CmdPlanetFesLargeBonusInteractScRsp = 8324, + CmdPlanetFesChangeCardPieceApplyPermissionCsReq = 8301, } impl CmdPlanetFesExtType { /// String value of the enum field names used in the ProtoBuf definition. @@ -54797,51 +57150,51 @@ impl CmdPlanetFesExtType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdPlanetFesExtTypeNone", - Self::CmdPlanetFesApplyCardPieceCsReq => "CmdPlanetFesApplyCardPieceCsReq", - Self::CmdPlanetFesGetOfferedCardPieceScRsp => { - "CmdPlanetFesGetOfferedCardPieceScRsp" - } - Self::CmdPlanetFesLargeBonusInteractScRsp => { - "CmdPlanetFesLargeBonusInteractScRsp" - } - Self::CmdPlanetFesLargeBonusInteractCsReq => { - "CmdPlanetFesLargeBonusInteractCsReq" - } - Self::CmdPlanetFesGiveCardPieceScRsp => "CmdPlanetFesGiveCardPieceScRsp", - Self::CmdPlanetFesChangeCardPieceApplyPermissionCsReq => { - "CmdPlanetFesChangeCardPieceApplyPermissionCsReq" + Self::CmdPlanetFesHandleCardPieceApplyCsReq => { + "CmdPlanetFesHandleCardPieceApplyCsReq" } Self::CmdPlanetFesHandleCardPieceApplyScRsp => { "CmdPlanetFesHandleCardPieceApplyScRsp" } - Self::CmdPlanetFesGetExtraCardPieceInfoScRsp => { - "CmdPlanetFesGetExtraCardPieceInfoScRsp" - } - Self::CmdPlanetFesEnterNextBusinessDayCsReq => { - "CmdPlanetFesEnterNextBusinessDayCsReq" - } - Self::CmdPlanetFesHandleCardPieceApplyCsReq => { - "CmdPlanetFesHandleCardPieceApplyCsReq" - } - Self::CmdPlanetFesGetOfferedCardPieceCsReq => { - "CmdPlanetFesGetOfferedCardPieceCsReq" - } - Self::CmdPlanetFesGiveCardPieceCsReq => "CmdPlanetFesGiveCardPieceCsReq", - Self::CmdPlanetFesApplyCardPieceScRsp => "CmdPlanetFesApplyCardPieceScRsp", - Self::CmdPlanetFesGetExtraCardPieceInfoCsReq => { - "CmdPlanetFesGetExtraCardPieceInfoCsReq" + Self::CmdPlanetFesGetFriendCardPieceScRsp => { + "CmdPlanetFesGetFriendCardPieceScRsp" } Self::CmdPlanetFesGetFriendCardPieceCsReq => { "CmdPlanetFesGetFriendCardPieceCsReq" } - Self::CmdPlanetFesGetFriendCardPieceScRsp => { - "CmdPlanetFesGetFriendCardPieceScRsp" + Self::CmdPlanetFesApplyCardPieceScRsp => "CmdPlanetFesApplyCardPieceScRsp", + Self::CmdPlanetFesGiveCardPieceScRsp => "CmdPlanetFesGiveCardPieceScRsp", + Self::CmdPlanetFesChangeCardPieceApplyPermissionScRsp => { + "CmdPlanetFesChangeCardPieceApplyPermissionScRsp" } + Self::CmdPlanetFesGetExtraCardPieceInfoScRsp => { + "CmdPlanetFesGetExtraCardPieceInfoScRsp" + } + Self::CmdPlanetFesGetOfferedCardPieceCsReq => { + "CmdPlanetFesGetOfferedCardPieceCsReq" + } + Self::CmdPlanetFesGetOfferedCardPieceScRsp => { + "CmdPlanetFesGetOfferedCardPieceScRsp" + } + Self::CmdPlanetFesLargeBonusInteractCsReq => { + "CmdPlanetFesLargeBonusInteractCsReq" + } + Self::CmdPlanetFesGiveCardPieceCsReq => "CmdPlanetFesGiveCardPieceCsReq", + Self::CmdPlanetFesEnterNextBusinessDayCsReq => { + "CmdPlanetFesEnterNextBusinessDayCsReq" + } + Self::CmdPlanetFesGetExtraCardPieceInfoCsReq => { + "CmdPlanetFesGetExtraCardPieceInfoCsReq" + } + Self::CmdPlanetFesApplyCardPieceCsReq => "CmdPlanetFesApplyCardPieceCsReq", Self::CmdPlanetFesEnterNextBusinessDayScRsp => { "CmdPlanetFesEnterNextBusinessDayScRsp" } - Self::CmdPlanetFesChangeCardPieceApplyPermissionScRsp => { - "CmdPlanetFesChangeCardPieceApplyPermissionScRsp" + Self::CmdPlanetFesLargeBonusInteractScRsp => { + "CmdPlanetFesLargeBonusInteractScRsp" + } + Self::CmdPlanetFesChangeCardPieceApplyPermissionCsReq => { + "CmdPlanetFesChangeCardPieceApplyPermissionCsReq" } } } @@ -54849,59 +57202,59 @@ impl CmdPlanetFesExtType { pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdPlanetFesExtTypeNone" => Some(Self::None), - "CmdPlanetFesApplyCardPieceCsReq" => { - Some(Self::CmdPlanetFesApplyCardPieceCsReq) - } - "CmdPlanetFesGetOfferedCardPieceScRsp" => { - Some(Self::CmdPlanetFesGetOfferedCardPieceScRsp) - } - "CmdPlanetFesLargeBonusInteractScRsp" => { - Some(Self::CmdPlanetFesLargeBonusInteractScRsp) - } - "CmdPlanetFesLargeBonusInteractCsReq" => { - Some(Self::CmdPlanetFesLargeBonusInteractCsReq) - } - "CmdPlanetFesGiveCardPieceScRsp" => { - Some(Self::CmdPlanetFesGiveCardPieceScRsp) - } - "CmdPlanetFesChangeCardPieceApplyPermissionCsReq" => { - Some(Self::CmdPlanetFesChangeCardPieceApplyPermissionCsReq) + "CmdPlanetFesHandleCardPieceApplyCsReq" => { + Some(Self::CmdPlanetFesHandleCardPieceApplyCsReq) } "CmdPlanetFesHandleCardPieceApplyScRsp" => { Some(Self::CmdPlanetFesHandleCardPieceApplyScRsp) } - "CmdPlanetFesGetExtraCardPieceInfoScRsp" => { - Some(Self::CmdPlanetFesGetExtraCardPieceInfoScRsp) - } - "CmdPlanetFesEnterNextBusinessDayCsReq" => { - Some(Self::CmdPlanetFesEnterNextBusinessDayCsReq) - } - "CmdPlanetFesHandleCardPieceApplyCsReq" => { - Some(Self::CmdPlanetFesHandleCardPieceApplyCsReq) - } - "CmdPlanetFesGetOfferedCardPieceCsReq" => { - Some(Self::CmdPlanetFesGetOfferedCardPieceCsReq) - } - "CmdPlanetFesGiveCardPieceCsReq" => { - Some(Self::CmdPlanetFesGiveCardPieceCsReq) - } - "CmdPlanetFesApplyCardPieceScRsp" => { - Some(Self::CmdPlanetFesApplyCardPieceScRsp) - } - "CmdPlanetFesGetExtraCardPieceInfoCsReq" => { - Some(Self::CmdPlanetFesGetExtraCardPieceInfoCsReq) + "CmdPlanetFesGetFriendCardPieceScRsp" => { + Some(Self::CmdPlanetFesGetFriendCardPieceScRsp) } "CmdPlanetFesGetFriendCardPieceCsReq" => { Some(Self::CmdPlanetFesGetFriendCardPieceCsReq) } - "CmdPlanetFesGetFriendCardPieceScRsp" => { - Some(Self::CmdPlanetFesGetFriendCardPieceScRsp) + "CmdPlanetFesApplyCardPieceScRsp" => { + Some(Self::CmdPlanetFesApplyCardPieceScRsp) + } + "CmdPlanetFesGiveCardPieceScRsp" => { + Some(Self::CmdPlanetFesGiveCardPieceScRsp) + } + "CmdPlanetFesChangeCardPieceApplyPermissionScRsp" => { + Some(Self::CmdPlanetFesChangeCardPieceApplyPermissionScRsp) + } + "CmdPlanetFesGetExtraCardPieceInfoScRsp" => { + Some(Self::CmdPlanetFesGetExtraCardPieceInfoScRsp) + } + "CmdPlanetFesGetOfferedCardPieceCsReq" => { + Some(Self::CmdPlanetFesGetOfferedCardPieceCsReq) + } + "CmdPlanetFesGetOfferedCardPieceScRsp" => { + Some(Self::CmdPlanetFesGetOfferedCardPieceScRsp) + } + "CmdPlanetFesLargeBonusInteractCsReq" => { + Some(Self::CmdPlanetFesLargeBonusInteractCsReq) + } + "CmdPlanetFesGiveCardPieceCsReq" => { + Some(Self::CmdPlanetFesGiveCardPieceCsReq) + } + "CmdPlanetFesEnterNextBusinessDayCsReq" => { + Some(Self::CmdPlanetFesEnterNextBusinessDayCsReq) + } + "CmdPlanetFesGetExtraCardPieceInfoCsReq" => { + Some(Self::CmdPlanetFesGetExtraCardPieceInfoCsReq) + } + "CmdPlanetFesApplyCardPieceCsReq" => { + Some(Self::CmdPlanetFesApplyCardPieceCsReq) } "CmdPlanetFesEnterNextBusinessDayScRsp" => { Some(Self::CmdPlanetFesEnterNextBusinessDayScRsp) } - "CmdPlanetFesChangeCardPieceApplyPermissionScRsp" => { - Some(Self::CmdPlanetFesChangeCardPieceApplyPermissionScRsp) + "CmdPlanetFesLargeBonusInteractScRsp" => { + Some(Self::CmdPlanetFesLargeBonusInteractScRsp) + } + "CmdPlanetFesChangeCardPieceApplyPermissionCsReq" => { + Some(Self::CmdPlanetFesChangeCardPieceApplyPermissionCsReq) } _ => None, } @@ -54955,80 +57308,78 @@ impl Aopkifdmadi { #[repr(i32)] pub enum CmdPlayerType { None = 0, - CmdGetBasicInfoCsReq = 86, - CmdAntiAddictScNotify = 43, - CmdAvatarPathChangedNotify = 19, - CmdPlayerHeartBeatScRsp = 1, - CmdUpdatePsnSettingsInfoCsReq = 12, - CmdExchangeStaminaCsReq = 46, - CmdGetGameStateServiceConfigScRsp = 47, - CmdGateServerScNotify = 53, - CmdQueryProductInfoScRsp = 13, - CmdGetBasicInfoScRsp = 100, - CmdSetAvatarPathCsReq = 15, - CmdReserveStaminaExchangeScRsp = 4, - CmdSetNicknameScRsp = 42, - CmdRetcodeNotify = 34, - CmdClientObjDownloadDataScNotify = 73, - CmdUpdatePlayerSettingScRsp = 26, - CmdGetAuthkeyCsReq = 60, - CmdStaminaInfoScNotify = 18, - CmdPlayerGetTokenCsReq = 76, - CmdGetLevelRewardCsReq = 21, - CmdSetGenderScRsp = 7, - CmdAceAntiCheaterCsReq = 87, - CmdGetVideoVersionKeyCsReq = 49, - CmdPlayerLoginScRsp = 32, - CmdSetMultipleAvatarPathsCsReq = 38, - CmdPlayerLoginFinishCsReq = 17, - CmdGmTalkCsReq = 56, - CmdUnlockAvatarPathCsReq = 89, - CmdPlayerLoginCsReq = 95, - CmdAceAntiCheaterScRsp = 8, - CmdUpdatePsnSettingsInfoScRsp = 41, - CmdGetLevelRewardTakenListScRsp = 58, - CmdSetRedPointStatusScNotify = 10, - CmdRegionStopScNotify = 39, - CmdGetMultiPathAvatarInfoCsReq = 80, - CmdFeatureSwitchClosedScNotify = 36, - CmdSetPlayerInfoCsReq = 98, - CmdServerAnnounceNotify = 14, - CmdGetLevelRewardScRsp = 29, - CmdPlayerGetTokenScRsp = 48, - CmdPlayerKickOutScNotify = 22, - CmdPlayerLogoutCsReq = 31, - CmdSetNicknameCsReq = 33, - CmdSetGameplayBirthdayCsReq = 54, - CmdSetPlayerInfoScRsp = 64, - CmdSetGameplayBirthdayScRsp = 99, - CmdSetLanguageScRsp = 25, - CmdExchangeStaminaScRsp = 83, - CmdPlayerLoginFinishScRsp = 69, - CmdReserveStaminaExchangeCsReq = 70, - CmdSetAvatarPathScRsp = 55, - CmdGetSecretKeyInfoCsReq = 74, - CmdPlayerHeartBeatCsReq = 68, - CmdDailyRefreshNotify = 9, - CmdGetVideoVersionKeyScRsp = 3, - CmdUpdateFeatureSwitchScNotify = 20, - CmdUnlockAvatarPathScRsp = 88, - CmdGetLevelRewardTakenListCsReq = 77, - CmdSetLanguageCsReq = 93, - CmdSetGenderCsReq = 57, - CmdPlayerLogoutScRsp = 40, - CmdUpdatePlayerSettingCsReq = 44, - CmdClientObjUploadCsReq = 67, - CmdQueryProductInfoCsReq = 45, - CmdGmTalkScNotify = 52, - CmdClientDownloadDataScNotify = 78, - CmdClientObjUploadScRsp = 96, - CmdGetMultiPathAvatarInfoScRsp = 50, - CmdSetMultipleAvatarPathsScRsp = 5, - CmdGetGameStateServiceConfigCsReq = 82, - CmdMonthCardRewardNotify = 35, - CmdGetAuthkeyScRsp = 2, - CmdGmTalkScRsp = 72, - CmdGetSecretKeyInfoScRsp = 90, + CmdUpdatePsnSettingsInfoScRsp = 82, + CmdGateServerScNotify = 37, + CmdGetLevelRewardTakenListCsReq = 36, + CmdSetNicknameScRsp = 94, + CmdDailyRefreshNotify = 60, + CmdSetRedPointStatusScNotify = 62, + CmdQueryProductInfoScRsp = 55, + CmdStaminaInfoScNotify = 83, + CmdPlayerGetTokenCsReq = 27, + CmdUpdateFeatureSwitchScNotify = 63, + CmdSetLanguageScRsp = 41, + CmdAceAntiCheaterCsReq = 93, + CmdPlayerLoginFinishCsReq = 48, + CmdPlayerGetTokenScRsp = 21, + CmdSetGameplayBirthdayScRsp = 16, + CmdGetLevelRewardTakenListScRsp = 87, + CmdSetMultipleAvatarPathsScRsp = 92, + CmdUpdatePlayerSettingCsReq = 32, + CmdUpdatePsnSettingsInfoCsReq = 79, + CmdGetSecretKeyInfoScRsp = 7, + CmdPlayerLoginScRsp = 91, + CmdClientObjDownloadDataScNotify = 51, + CmdGetLevelRewardCsReq = 9, + CmdGetLevelRewardScRsp = 6, + CmdRetcodeNotify = 26, + CmdGmTalkScNotify = 59, + CmdReserveStaminaExchangeScRsp = 30, + CmdGetVideoVersionKeyCsReq = 43, + CmdClientDownloadDataScNotify = 71, + CmdSetPlayerInfoCsReq = 40, + CmdPlayerLoginCsReq = 20, + CmdGetBasicInfoScRsp = 95, + CmdSetGameplayBirthdayCsReq = 96, + CmdGetSecretKeyInfoCsReq = 33, + CmdPlayerLogoutCsReq = 67, + CmdSetGenderCsReq = 23, + CmdExchangeStaminaCsReq = 74, + CmdPlayerKickOutScNotify = 54, + CmdClientObjUploadCsReq = 56, + CmdSetMultipleAvatarPathsCsReq = 42, + CmdSetAvatarPathScRsp = 97, + CmdAntiAddictScNotify = 52, + CmdPlayerHeartBeatCsReq = 90, + CmdGetGameStateServiceConfigCsReq = 10, + CmdServerAnnounceNotify = 84, + CmdGmTalkCsReq = 77, + CmdSetLanguageCsReq = 49, + CmdQueryProductInfoCsReq = 19, + CmdSetPlayerInfoScRsp = 18, + CmdSetAvatarPathCsReq = 8, + CmdGetAuthkeyCsReq = 98, + CmdExchangeStaminaScRsp = 73, + CmdPlayerHeartBeatScRsp = 89, + CmdRegionStopScNotify = 38, + CmdGmTalkScRsp = 80, + CmdAceAntiCheaterScRsp = 64, + CmdSetGenderScRsp = 22, + CmdGetBasicInfoCsReq = 50, + CmdSetNicknameCsReq = 68, + CmdClientObjUploadScRsp = 1, + CmdUpdatePlayerSettingScRsp = 11, + CmdPlayerLogoutScRsp = 39, + CmdGetVideoVersionKeyScRsp = 12, + CmdGetAuthkeyScRsp = 85, + CmdReserveStaminaExchangeCsReq = 75, + CmdPlayerLoginFinishScRsp = 25, + CmdUnlockAvatarPathCsReq = 58, + CmdMonthCardRewardNotify = 57, + CmdFeatureSwitchClosedScNotify = 72, + CmdAvatarPathChangedNotify = 100, + CmdGetGameStateServiceConfigScRsp = 4, + CmdUnlockAvatarPathScRsp = 46, } impl CmdPlayerType { /// String value of the enum field names used in the ProtoBuf definition. @@ -55038,190 +57389,182 @@ impl CmdPlayerType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdPlayerTypeNone", - Self::CmdGetBasicInfoCsReq => "CmdGetBasicInfoCsReq", - Self::CmdAntiAddictScNotify => "CmdAntiAddictScNotify", - Self::CmdAvatarPathChangedNotify => "CmdAvatarPathChangedNotify", - Self::CmdPlayerHeartBeatScRsp => "CmdPlayerHeartBeatScRsp", - Self::CmdUpdatePsnSettingsInfoCsReq => "CmdUpdatePsnSettingsInfoCsReq", - Self::CmdExchangeStaminaCsReq => "CmdExchangeStaminaCsReq", - Self::CmdGetGameStateServiceConfigScRsp => { - "CmdGetGameStateServiceConfigScRsp" - } + Self::CmdUpdatePsnSettingsInfoScRsp => "CmdUpdatePsnSettingsInfoScRsp", Self::CmdGateServerScNotify => "CmdGateServerScNotify", - Self::CmdQueryProductInfoScRsp => "CmdQueryProductInfoScRsp", - Self::CmdGetBasicInfoScRsp => "CmdGetBasicInfoScRsp", - Self::CmdSetAvatarPathCsReq => "CmdSetAvatarPathCsReq", - Self::CmdReserveStaminaExchangeScRsp => "CmdReserveStaminaExchangeScRsp", + Self::CmdGetLevelRewardTakenListCsReq => "CmdGetLevelRewardTakenListCsReq", Self::CmdSetNicknameScRsp => "CmdSetNicknameScRsp", - Self::CmdRetcodeNotify => "CmdRetcodeNotify", - Self::CmdClientObjDownloadDataScNotify => "CmdClientObjDownloadDataScNotify", - Self::CmdUpdatePlayerSettingScRsp => "CmdUpdatePlayerSettingScRsp", - Self::CmdGetAuthkeyCsReq => "CmdGetAuthkeyCsReq", + Self::CmdDailyRefreshNotify => "CmdDailyRefreshNotify", + Self::CmdSetRedPointStatusScNotify => "CmdSetRedPointStatusScNotify", + Self::CmdQueryProductInfoScRsp => "CmdQueryProductInfoScRsp", Self::CmdStaminaInfoScNotify => "CmdStaminaInfoScNotify", Self::CmdPlayerGetTokenCsReq => "CmdPlayerGetTokenCsReq", - Self::CmdGetLevelRewardCsReq => "CmdGetLevelRewardCsReq", - Self::CmdSetGenderScRsp => "CmdSetGenderScRsp", - Self::CmdAceAntiCheaterCsReq => "CmdAceAntiCheaterCsReq", - Self::CmdGetVideoVersionKeyCsReq => "CmdGetVideoVersionKeyCsReq", - Self::CmdPlayerLoginScRsp => "CmdPlayerLoginScRsp", - Self::CmdSetMultipleAvatarPathsCsReq => "CmdSetMultipleAvatarPathsCsReq", - Self::CmdPlayerLoginFinishCsReq => "CmdPlayerLoginFinishCsReq", - Self::CmdGmTalkCsReq => "CmdGmTalkCsReq", - Self::CmdUnlockAvatarPathCsReq => "CmdUnlockAvatarPathCsReq", - Self::CmdPlayerLoginCsReq => "CmdPlayerLoginCsReq", - Self::CmdAceAntiCheaterScRsp => "CmdAceAntiCheaterScRsp", - Self::CmdUpdatePsnSettingsInfoScRsp => "CmdUpdatePsnSettingsInfoScRsp", - Self::CmdGetLevelRewardTakenListScRsp => "CmdGetLevelRewardTakenListScRsp", - Self::CmdSetRedPointStatusScNotify => "CmdSetRedPointStatusScNotify", - Self::CmdRegionStopScNotify => "CmdRegionStopScNotify", - Self::CmdGetMultiPathAvatarInfoCsReq => "CmdGetMultiPathAvatarInfoCsReq", - Self::CmdFeatureSwitchClosedScNotify => "CmdFeatureSwitchClosedScNotify", - Self::CmdSetPlayerInfoCsReq => "CmdSetPlayerInfoCsReq", - Self::CmdServerAnnounceNotify => "CmdServerAnnounceNotify", - Self::CmdGetLevelRewardScRsp => "CmdGetLevelRewardScRsp", - Self::CmdPlayerGetTokenScRsp => "CmdPlayerGetTokenScRsp", - Self::CmdPlayerKickOutScNotify => "CmdPlayerKickOutScNotify", - Self::CmdPlayerLogoutCsReq => "CmdPlayerLogoutCsReq", - Self::CmdSetNicknameCsReq => "CmdSetNicknameCsReq", - Self::CmdSetGameplayBirthdayCsReq => "CmdSetGameplayBirthdayCsReq", - Self::CmdSetPlayerInfoScRsp => "CmdSetPlayerInfoScRsp", - Self::CmdSetGameplayBirthdayScRsp => "CmdSetGameplayBirthdayScRsp", - Self::CmdSetLanguageScRsp => "CmdSetLanguageScRsp", - Self::CmdExchangeStaminaScRsp => "CmdExchangeStaminaScRsp", - Self::CmdPlayerLoginFinishScRsp => "CmdPlayerLoginFinishScRsp", - Self::CmdReserveStaminaExchangeCsReq => "CmdReserveStaminaExchangeCsReq", - Self::CmdSetAvatarPathScRsp => "CmdSetAvatarPathScRsp", - Self::CmdGetSecretKeyInfoCsReq => "CmdGetSecretKeyInfoCsReq", - Self::CmdPlayerHeartBeatCsReq => "CmdPlayerHeartBeatCsReq", - Self::CmdDailyRefreshNotify => "CmdDailyRefreshNotify", - Self::CmdGetVideoVersionKeyScRsp => "CmdGetVideoVersionKeyScRsp", Self::CmdUpdateFeatureSwitchScNotify => "CmdUpdateFeatureSwitchScNotify", - Self::CmdUnlockAvatarPathScRsp => "CmdUnlockAvatarPathScRsp", - Self::CmdGetLevelRewardTakenListCsReq => "CmdGetLevelRewardTakenListCsReq", - Self::CmdSetLanguageCsReq => "CmdSetLanguageCsReq", - Self::CmdSetGenderCsReq => "CmdSetGenderCsReq", - Self::CmdPlayerLogoutScRsp => "CmdPlayerLogoutScRsp", - Self::CmdUpdatePlayerSettingCsReq => "CmdUpdatePlayerSettingCsReq", - Self::CmdClientObjUploadCsReq => "CmdClientObjUploadCsReq", - Self::CmdQueryProductInfoCsReq => "CmdQueryProductInfoCsReq", - Self::CmdGmTalkScNotify => "CmdGmTalkScNotify", - Self::CmdClientDownloadDataScNotify => "CmdClientDownloadDataScNotify", - Self::CmdClientObjUploadScRsp => "CmdClientObjUploadScRsp", - Self::CmdGetMultiPathAvatarInfoScRsp => "CmdGetMultiPathAvatarInfoScRsp", + Self::CmdSetLanguageScRsp => "CmdSetLanguageScRsp", + Self::CmdAceAntiCheaterCsReq => "CmdAceAntiCheaterCsReq", + Self::CmdPlayerLoginFinishCsReq => "CmdPlayerLoginFinishCsReq", + Self::CmdPlayerGetTokenScRsp => "CmdPlayerGetTokenScRsp", + Self::CmdSetGameplayBirthdayScRsp => "CmdSetGameplayBirthdayScRsp", + Self::CmdGetLevelRewardTakenListScRsp => "CmdGetLevelRewardTakenListScRsp", Self::CmdSetMultipleAvatarPathsScRsp => "CmdSetMultipleAvatarPathsScRsp", + Self::CmdUpdatePlayerSettingCsReq => "CmdUpdatePlayerSettingCsReq", + Self::CmdUpdatePsnSettingsInfoCsReq => "CmdUpdatePsnSettingsInfoCsReq", + Self::CmdGetSecretKeyInfoScRsp => "CmdGetSecretKeyInfoScRsp", + Self::CmdPlayerLoginScRsp => "CmdPlayerLoginScRsp", + Self::CmdClientObjDownloadDataScNotify => "CmdClientObjDownloadDataScNotify", + Self::CmdGetLevelRewardCsReq => "CmdGetLevelRewardCsReq", + Self::CmdGetLevelRewardScRsp => "CmdGetLevelRewardScRsp", + Self::CmdRetcodeNotify => "CmdRetcodeNotify", + Self::CmdGmTalkScNotify => "CmdGmTalkScNotify", + Self::CmdReserveStaminaExchangeScRsp => "CmdReserveStaminaExchangeScRsp", + Self::CmdGetVideoVersionKeyCsReq => "CmdGetVideoVersionKeyCsReq", + Self::CmdClientDownloadDataScNotify => "CmdClientDownloadDataScNotify", + Self::CmdSetPlayerInfoCsReq => "CmdSetPlayerInfoCsReq", + Self::CmdPlayerLoginCsReq => "CmdPlayerLoginCsReq", + Self::CmdGetBasicInfoScRsp => "CmdGetBasicInfoScRsp", + Self::CmdSetGameplayBirthdayCsReq => "CmdSetGameplayBirthdayCsReq", + Self::CmdGetSecretKeyInfoCsReq => "CmdGetSecretKeyInfoCsReq", + Self::CmdPlayerLogoutCsReq => "CmdPlayerLogoutCsReq", + Self::CmdSetGenderCsReq => "CmdSetGenderCsReq", + Self::CmdExchangeStaminaCsReq => "CmdExchangeStaminaCsReq", + Self::CmdPlayerKickOutScNotify => "CmdPlayerKickOutScNotify", + Self::CmdClientObjUploadCsReq => "CmdClientObjUploadCsReq", + Self::CmdSetMultipleAvatarPathsCsReq => "CmdSetMultipleAvatarPathsCsReq", + Self::CmdSetAvatarPathScRsp => "CmdSetAvatarPathScRsp", + Self::CmdAntiAddictScNotify => "CmdAntiAddictScNotify", + Self::CmdPlayerHeartBeatCsReq => "CmdPlayerHeartBeatCsReq", Self::CmdGetGameStateServiceConfigCsReq => { "CmdGetGameStateServiceConfigCsReq" } - Self::CmdMonthCardRewardNotify => "CmdMonthCardRewardNotify", - Self::CmdGetAuthkeyScRsp => "CmdGetAuthkeyScRsp", + Self::CmdServerAnnounceNotify => "CmdServerAnnounceNotify", + Self::CmdGmTalkCsReq => "CmdGmTalkCsReq", + Self::CmdSetLanguageCsReq => "CmdSetLanguageCsReq", + Self::CmdQueryProductInfoCsReq => "CmdQueryProductInfoCsReq", + Self::CmdSetPlayerInfoScRsp => "CmdSetPlayerInfoScRsp", + Self::CmdSetAvatarPathCsReq => "CmdSetAvatarPathCsReq", + Self::CmdGetAuthkeyCsReq => "CmdGetAuthkeyCsReq", + Self::CmdExchangeStaminaScRsp => "CmdExchangeStaminaScRsp", + Self::CmdPlayerHeartBeatScRsp => "CmdPlayerHeartBeatScRsp", + Self::CmdRegionStopScNotify => "CmdRegionStopScNotify", Self::CmdGmTalkScRsp => "CmdGmTalkScRsp", - Self::CmdGetSecretKeyInfoScRsp => "CmdGetSecretKeyInfoScRsp", + Self::CmdAceAntiCheaterScRsp => "CmdAceAntiCheaterScRsp", + Self::CmdSetGenderScRsp => "CmdSetGenderScRsp", + Self::CmdGetBasicInfoCsReq => "CmdGetBasicInfoCsReq", + Self::CmdSetNicknameCsReq => "CmdSetNicknameCsReq", + Self::CmdClientObjUploadScRsp => "CmdClientObjUploadScRsp", + Self::CmdUpdatePlayerSettingScRsp => "CmdUpdatePlayerSettingScRsp", + Self::CmdPlayerLogoutScRsp => "CmdPlayerLogoutScRsp", + Self::CmdGetVideoVersionKeyScRsp => "CmdGetVideoVersionKeyScRsp", + Self::CmdGetAuthkeyScRsp => "CmdGetAuthkeyScRsp", + Self::CmdReserveStaminaExchangeCsReq => "CmdReserveStaminaExchangeCsReq", + Self::CmdPlayerLoginFinishScRsp => "CmdPlayerLoginFinishScRsp", + Self::CmdUnlockAvatarPathCsReq => "CmdUnlockAvatarPathCsReq", + Self::CmdMonthCardRewardNotify => "CmdMonthCardRewardNotify", + Self::CmdFeatureSwitchClosedScNotify => "CmdFeatureSwitchClosedScNotify", + Self::CmdAvatarPathChangedNotify => "CmdAvatarPathChangedNotify", + Self::CmdGetGameStateServiceConfigScRsp => { + "CmdGetGameStateServiceConfigScRsp" + } + Self::CmdUnlockAvatarPathScRsp => "CmdUnlockAvatarPathScRsp", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdPlayerTypeNone" => Some(Self::None), - "CmdGetBasicInfoCsReq" => Some(Self::CmdGetBasicInfoCsReq), - "CmdAntiAddictScNotify" => Some(Self::CmdAntiAddictScNotify), - "CmdAvatarPathChangedNotify" => Some(Self::CmdAvatarPathChangedNotify), - "CmdPlayerHeartBeatScRsp" => Some(Self::CmdPlayerHeartBeatScRsp), - "CmdUpdatePsnSettingsInfoCsReq" => Some(Self::CmdUpdatePsnSettingsInfoCsReq), - "CmdExchangeStaminaCsReq" => Some(Self::CmdExchangeStaminaCsReq), - "CmdGetGameStateServiceConfigScRsp" => { - Some(Self::CmdGetGameStateServiceConfigScRsp) - } - "CmdGateServerScNotify" => Some(Self::CmdGateServerScNotify), - "CmdQueryProductInfoScRsp" => Some(Self::CmdQueryProductInfoScRsp), - "CmdGetBasicInfoScRsp" => Some(Self::CmdGetBasicInfoScRsp), - "CmdSetAvatarPathCsReq" => Some(Self::CmdSetAvatarPathCsReq), - "CmdReserveStaminaExchangeScRsp" => { - Some(Self::CmdReserveStaminaExchangeScRsp) - } - "CmdSetNicknameScRsp" => Some(Self::CmdSetNicknameScRsp), - "CmdRetcodeNotify" => Some(Self::CmdRetcodeNotify), - "CmdClientObjDownloadDataScNotify" => { - Some(Self::CmdClientObjDownloadDataScNotify) - } - "CmdUpdatePlayerSettingScRsp" => Some(Self::CmdUpdatePlayerSettingScRsp), - "CmdGetAuthkeyCsReq" => Some(Self::CmdGetAuthkeyCsReq), - "CmdStaminaInfoScNotify" => Some(Self::CmdStaminaInfoScNotify), - "CmdPlayerGetTokenCsReq" => Some(Self::CmdPlayerGetTokenCsReq), - "CmdGetLevelRewardCsReq" => Some(Self::CmdGetLevelRewardCsReq), - "CmdSetGenderScRsp" => Some(Self::CmdSetGenderScRsp), - "CmdAceAntiCheaterCsReq" => Some(Self::CmdAceAntiCheaterCsReq), - "CmdGetVideoVersionKeyCsReq" => Some(Self::CmdGetVideoVersionKeyCsReq), - "CmdPlayerLoginScRsp" => Some(Self::CmdPlayerLoginScRsp), - "CmdSetMultipleAvatarPathsCsReq" => { - Some(Self::CmdSetMultipleAvatarPathsCsReq) - } - "CmdPlayerLoginFinishCsReq" => Some(Self::CmdPlayerLoginFinishCsReq), - "CmdGmTalkCsReq" => Some(Self::CmdGmTalkCsReq), - "CmdUnlockAvatarPathCsReq" => Some(Self::CmdUnlockAvatarPathCsReq), - "CmdPlayerLoginCsReq" => Some(Self::CmdPlayerLoginCsReq), - "CmdAceAntiCheaterScRsp" => Some(Self::CmdAceAntiCheaterScRsp), "CmdUpdatePsnSettingsInfoScRsp" => Some(Self::CmdUpdatePsnSettingsInfoScRsp), - "CmdGetLevelRewardTakenListScRsp" => { - Some(Self::CmdGetLevelRewardTakenListScRsp) - } - "CmdSetRedPointStatusScNotify" => Some(Self::CmdSetRedPointStatusScNotify), - "CmdRegionStopScNotify" => Some(Self::CmdRegionStopScNotify), - "CmdGetMultiPathAvatarInfoCsReq" => { - Some(Self::CmdGetMultiPathAvatarInfoCsReq) - } - "CmdFeatureSwitchClosedScNotify" => { - Some(Self::CmdFeatureSwitchClosedScNotify) - } - "CmdSetPlayerInfoCsReq" => Some(Self::CmdSetPlayerInfoCsReq), - "CmdServerAnnounceNotify" => Some(Self::CmdServerAnnounceNotify), - "CmdGetLevelRewardScRsp" => Some(Self::CmdGetLevelRewardScRsp), - "CmdPlayerGetTokenScRsp" => Some(Self::CmdPlayerGetTokenScRsp), - "CmdPlayerKickOutScNotify" => Some(Self::CmdPlayerKickOutScNotify), - "CmdPlayerLogoutCsReq" => Some(Self::CmdPlayerLogoutCsReq), - "CmdSetNicknameCsReq" => Some(Self::CmdSetNicknameCsReq), - "CmdSetGameplayBirthdayCsReq" => Some(Self::CmdSetGameplayBirthdayCsReq), - "CmdSetPlayerInfoScRsp" => Some(Self::CmdSetPlayerInfoScRsp), - "CmdSetGameplayBirthdayScRsp" => Some(Self::CmdSetGameplayBirthdayScRsp), - "CmdSetLanguageScRsp" => Some(Self::CmdSetLanguageScRsp), - "CmdExchangeStaminaScRsp" => Some(Self::CmdExchangeStaminaScRsp), - "CmdPlayerLoginFinishScRsp" => Some(Self::CmdPlayerLoginFinishScRsp), - "CmdReserveStaminaExchangeCsReq" => { - Some(Self::CmdReserveStaminaExchangeCsReq) - } - "CmdSetAvatarPathScRsp" => Some(Self::CmdSetAvatarPathScRsp), - "CmdGetSecretKeyInfoCsReq" => Some(Self::CmdGetSecretKeyInfoCsReq), - "CmdPlayerHeartBeatCsReq" => Some(Self::CmdPlayerHeartBeatCsReq), - "CmdDailyRefreshNotify" => Some(Self::CmdDailyRefreshNotify), - "CmdGetVideoVersionKeyScRsp" => Some(Self::CmdGetVideoVersionKeyScRsp), - "CmdUpdateFeatureSwitchScNotify" => { - Some(Self::CmdUpdateFeatureSwitchScNotify) - } - "CmdUnlockAvatarPathScRsp" => Some(Self::CmdUnlockAvatarPathScRsp), + "CmdGateServerScNotify" => Some(Self::CmdGateServerScNotify), "CmdGetLevelRewardTakenListCsReq" => { Some(Self::CmdGetLevelRewardTakenListCsReq) } - "CmdSetLanguageCsReq" => Some(Self::CmdSetLanguageCsReq), - "CmdSetGenderCsReq" => Some(Self::CmdSetGenderCsReq), - "CmdPlayerLogoutScRsp" => Some(Self::CmdPlayerLogoutScRsp), - "CmdUpdatePlayerSettingCsReq" => Some(Self::CmdUpdatePlayerSettingCsReq), - "CmdClientObjUploadCsReq" => Some(Self::CmdClientObjUploadCsReq), - "CmdQueryProductInfoCsReq" => Some(Self::CmdQueryProductInfoCsReq), - "CmdGmTalkScNotify" => Some(Self::CmdGmTalkScNotify), - "CmdClientDownloadDataScNotify" => Some(Self::CmdClientDownloadDataScNotify), - "CmdClientObjUploadScRsp" => Some(Self::CmdClientObjUploadScRsp), - "CmdGetMultiPathAvatarInfoScRsp" => { - Some(Self::CmdGetMultiPathAvatarInfoScRsp) + "CmdSetNicknameScRsp" => Some(Self::CmdSetNicknameScRsp), + "CmdDailyRefreshNotify" => Some(Self::CmdDailyRefreshNotify), + "CmdSetRedPointStatusScNotify" => Some(Self::CmdSetRedPointStatusScNotify), + "CmdQueryProductInfoScRsp" => Some(Self::CmdQueryProductInfoScRsp), + "CmdStaminaInfoScNotify" => Some(Self::CmdStaminaInfoScNotify), + "CmdPlayerGetTokenCsReq" => Some(Self::CmdPlayerGetTokenCsReq), + "CmdUpdateFeatureSwitchScNotify" => { + Some(Self::CmdUpdateFeatureSwitchScNotify) + } + "CmdSetLanguageScRsp" => Some(Self::CmdSetLanguageScRsp), + "CmdAceAntiCheaterCsReq" => Some(Self::CmdAceAntiCheaterCsReq), + "CmdPlayerLoginFinishCsReq" => Some(Self::CmdPlayerLoginFinishCsReq), + "CmdPlayerGetTokenScRsp" => Some(Self::CmdPlayerGetTokenScRsp), + "CmdSetGameplayBirthdayScRsp" => Some(Self::CmdSetGameplayBirthdayScRsp), + "CmdGetLevelRewardTakenListScRsp" => { + Some(Self::CmdGetLevelRewardTakenListScRsp) } "CmdSetMultipleAvatarPathsScRsp" => { Some(Self::CmdSetMultipleAvatarPathsScRsp) } + "CmdUpdatePlayerSettingCsReq" => Some(Self::CmdUpdatePlayerSettingCsReq), + "CmdUpdatePsnSettingsInfoCsReq" => Some(Self::CmdUpdatePsnSettingsInfoCsReq), + "CmdGetSecretKeyInfoScRsp" => Some(Self::CmdGetSecretKeyInfoScRsp), + "CmdPlayerLoginScRsp" => Some(Self::CmdPlayerLoginScRsp), + "CmdClientObjDownloadDataScNotify" => { + Some(Self::CmdClientObjDownloadDataScNotify) + } + "CmdGetLevelRewardCsReq" => Some(Self::CmdGetLevelRewardCsReq), + "CmdGetLevelRewardScRsp" => Some(Self::CmdGetLevelRewardScRsp), + "CmdRetcodeNotify" => Some(Self::CmdRetcodeNotify), + "CmdGmTalkScNotify" => Some(Self::CmdGmTalkScNotify), + "CmdReserveStaminaExchangeScRsp" => { + Some(Self::CmdReserveStaminaExchangeScRsp) + } + "CmdGetVideoVersionKeyCsReq" => Some(Self::CmdGetVideoVersionKeyCsReq), + "CmdClientDownloadDataScNotify" => Some(Self::CmdClientDownloadDataScNotify), + "CmdSetPlayerInfoCsReq" => Some(Self::CmdSetPlayerInfoCsReq), + "CmdPlayerLoginCsReq" => Some(Self::CmdPlayerLoginCsReq), + "CmdGetBasicInfoScRsp" => Some(Self::CmdGetBasicInfoScRsp), + "CmdSetGameplayBirthdayCsReq" => Some(Self::CmdSetGameplayBirthdayCsReq), + "CmdGetSecretKeyInfoCsReq" => Some(Self::CmdGetSecretKeyInfoCsReq), + "CmdPlayerLogoutCsReq" => Some(Self::CmdPlayerLogoutCsReq), + "CmdSetGenderCsReq" => Some(Self::CmdSetGenderCsReq), + "CmdExchangeStaminaCsReq" => Some(Self::CmdExchangeStaminaCsReq), + "CmdPlayerKickOutScNotify" => Some(Self::CmdPlayerKickOutScNotify), + "CmdClientObjUploadCsReq" => Some(Self::CmdClientObjUploadCsReq), + "CmdSetMultipleAvatarPathsCsReq" => { + Some(Self::CmdSetMultipleAvatarPathsCsReq) + } + "CmdSetAvatarPathScRsp" => Some(Self::CmdSetAvatarPathScRsp), + "CmdAntiAddictScNotify" => Some(Self::CmdAntiAddictScNotify), + "CmdPlayerHeartBeatCsReq" => Some(Self::CmdPlayerHeartBeatCsReq), "CmdGetGameStateServiceConfigCsReq" => { Some(Self::CmdGetGameStateServiceConfigCsReq) } - "CmdMonthCardRewardNotify" => Some(Self::CmdMonthCardRewardNotify), - "CmdGetAuthkeyScRsp" => Some(Self::CmdGetAuthkeyScRsp), + "CmdServerAnnounceNotify" => Some(Self::CmdServerAnnounceNotify), + "CmdGmTalkCsReq" => Some(Self::CmdGmTalkCsReq), + "CmdSetLanguageCsReq" => Some(Self::CmdSetLanguageCsReq), + "CmdQueryProductInfoCsReq" => Some(Self::CmdQueryProductInfoCsReq), + "CmdSetPlayerInfoScRsp" => Some(Self::CmdSetPlayerInfoScRsp), + "CmdSetAvatarPathCsReq" => Some(Self::CmdSetAvatarPathCsReq), + "CmdGetAuthkeyCsReq" => Some(Self::CmdGetAuthkeyCsReq), + "CmdExchangeStaminaScRsp" => Some(Self::CmdExchangeStaminaScRsp), + "CmdPlayerHeartBeatScRsp" => Some(Self::CmdPlayerHeartBeatScRsp), + "CmdRegionStopScNotify" => Some(Self::CmdRegionStopScNotify), "CmdGmTalkScRsp" => Some(Self::CmdGmTalkScRsp), - "CmdGetSecretKeyInfoScRsp" => Some(Self::CmdGetSecretKeyInfoScRsp), + "CmdAceAntiCheaterScRsp" => Some(Self::CmdAceAntiCheaterScRsp), + "CmdSetGenderScRsp" => Some(Self::CmdSetGenderScRsp), + "CmdGetBasicInfoCsReq" => Some(Self::CmdGetBasicInfoCsReq), + "CmdSetNicknameCsReq" => Some(Self::CmdSetNicknameCsReq), + "CmdClientObjUploadScRsp" => Some(Self::CmdClientObjUploadScRsp), + "CmdUpdatePlayerSettingScRsp" => Some(Self::CmdUpdatePlayerSettingScRsp), + "CmdPlayerLogoutScRsp" => Some(Self::CmdPlayerLogoutScRsp), + "CmdGetVideoVersionKeyScRsp" => Some(Self::CmdGetVideoVersionKeyScRsp), + "CmdGetAuthkeyScRsp" => Some(Self::CmdGetAuthkeyScRsp), + "CmdReserveStaminaExchangeCsReq" => { + Some(Self::CmdReserveStaminaExchangeCsReq) + } + "CmdPlayerLoginFinishScRsp" => Some(Self::CmdPlayerLoginFinishScRsp), + "CmdUnlockAvatarPathCsReq" => Some(Self::CmdUnlockAvatarPathCsReq), + "CmdMonthCardRewardNotify" => Some(Self::CmdMonthCardRewardNotify), + "CmdFeatureSwitchClosedScNotify" => { + Some(Self::CmdFeatureSwitchClosedScNotify) + } + "CmdAvatarPathChangedNotify" => Some(Self::CmdAvatarPathChangedNotify), + "CmdGetGameStateServiceConfigScRsp" => { + Some(Self::CmdGetGameStateServiceConfigScRsp) + } + "CmdUnlockAvatarPathScRsp" => Some(Self::CmdUnlockAvatarPathScRsp), _ => None, } } @@ -55262,21 +57605,21 @@ impl Ilpmnldgeak { #[repr(i32)] pub enum CmdPlayerBoardType { None = 0, - CmdSetIsDisplayAvatarInfoCsReq = 2871, - CmdSetPersonalCardScRsp = 2883, - CmdSetPersonalCardCsReq = 2846, - CmdSetAssistAvatarCsReq = 2885, - CmdSetDisplayAvatarCsReq = 2876, - CmdSetHeadIconScRsp = 2840, - CmdSetSignatureScRsp = 2872, - CmdSetIsDisplayAvatarInfoScRsp = 2852, - CmdSetAssistAvatarScRsp = 2816, - CmdGetPlayerBoardDataCsReq = 2895, - CmdGetPlayerBoardDataScRsp = 2832, - CmdSetDisplayAvatarScRsp = 2848, - CmdUnlockHeadIconScNotify = 2822, - CmdSetSignatureCsReq = 2856, - CmdSetHeadIconCsReq = 2831, + CmdSetAssistAvatarCsReq = 2802, + CmdSetSignatureCsReq = 2877, + CmdSetHeadIconScRsp = 2839, + CmdGetPlayerBoardDataCsReq = 2820, + CmdGetPlayerBoardDataScRsp = 2891, + CmdSetPersonalCardScRsp = 2873, + CmdSetIsDisplayAvatarInfoScRsp = 2859, + CmdSetIsDisplayAvatarInfoCsReq = 2870, + CmdSetPersonalCardCsReq = 2874, + CmdSetDisplayAvatarCsReq = 2827, + CmdSetAssistAvatarScRsp = 2805, + CmdSetHeadIconCsReq = 2867, + CmdUnlockHeadIconScNotify = 2854, + CmdSetSignatureScRsp = 2880, + CmdSetDisplayAvatarScRsp = 2821, } impl CmdPlayerBoardType { /// String value of the enum field names used in the ProtoBuf definition. @@ -55286,46 +57629,46 @@ impl CmdPlayerBoardType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdPlayerBoardTypeNone", - Self::CmdSetIsDisplayAvatarInfoCsReq => "CmdSetIsDisplayAvatarInfoCsReq", - Self::CmdSetPersonalCardScRsp => "CmdSetPersonalCardScRsp", - Self::CmdSetPersonalCardCsReq => "CmdSetPersonalCardCsReq", Self::CmdSetAssistAvatarCsReq => "CmdSetAssistAvatarCsReq", - Self::CmdSetDisplayAvatarCsReq => "CmdSetDisplayAvatarCsReq", + Self::CmdSetSignatureCsReq => "CmdSetSignatureCsReq", Self::CmdSetHeadIconScRsp => "CmdSetHeadIconScRsp", - Self::CmdSetSignatureScRsp => "CmdSetSignatureScRsp", - Self::CmdSetIsDisplayAvatarInfoScRsp => "CmdSetIsDisplayAvatarInfoScRsp", - Self::CmdSetAssistAvatarScRsp => "CmdSetAssistAvatarScRsp", Self::CmdGetPlayerBoardDataCsReq => "CmdGetPlayerBoardDataCsReq", Self::CmdGetPlayerBoardDataScRsp => "CmdGetPlayerBoardDataScRsp", - Self::CmdSetDisplayAvatarScRsp => "CmdSetDisplayAvatarScRsp", - Self::CmdUnlockHeadIconScNotify => "CmdUnlockHeadIconScNotify", - Self::CmdSetSignatureCsReq => "CmdSetSignatureCsReq", + Self::CmdSetPersonalCardScRsp => "CmdSetPersonalCardScRsp", + Self::CmdSetIsDisplayAvatarInfoScRsp => "CmdSetIsDisplayAvatarInfoScRsp", + Self::CmdSetIsDisplayAvatarInfoCsReq => "CmdSetIsDisplayAvatarInfoCsReq", + Self::CmdSetPersonalCardCsReq => "CmdSetPersonalCardCsReq", + Self::CmdSetDisplayAvatarCsReq => "CmdSetDisplayAvatarCsReq", + Self::CmdSetAssistAvatarScRsp => "CmdSetAssistAvatarScRsp", Self::CmdSetHeadIconCsReq => "CmdSetHeadIconCsReq", + Self::CmdUnlockHeadIconScNotify => "CmdUnlockHeadIconScNotify", + Self::CmdSetSignatureScRsp => "CmdSetSignatureScRsp", + Self::CmdSetDisplayAvatarScRsp => "CmdSetDisplayAvatarScRsp", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdPlayerBoardTypeNone" => Some(Self::None), - "CmdSetIsDisplayAvatarInfoCsReq" => { - Some(Self::CmdSetIsDisplayAvatarInfoCsReq) - } - "CmdSetPersonalCardScRsp" => Some(Self::CmdSetPersonalCardScRsp), - "CmdSetPersonalCardCsReq" => Some(Self::CmdSetPersonalCardCsReq), "CmdSetAssistAvatarCsReq" => Some(Self::CmdSetAssistAvatarCsReq), - "CmdSetDisplayAvatarCsReq" => Some(Self::CmdSetDisplayAvatarCsReq), + "CmdSetSignatureCsReq" => Some(Self::CmdSetSignatureCsReq), "CmdSetHeadIconScRsp" => Some(Self::CmdSetHeadIconScRsp), - "CmdSetSignatureScRsp" => Some(Self::CmdSetSignatureScRsp), + "CmdGetPlayerBoardDataCsReq" => Some(Self::CmdGetPlayerBoardDataCsReq), + "CmdGetPlayerBoardDataScRsp" => Some(Self::CmdGetPlayerBoardDataScRsp), + "CmdSetPersonalCardScRsp" => Some(Self::CmdSetPersonalCardScRsp), "CmdSetIsDisplayAvatarInfoScRsp" => { Some(Self::CmdSetIsDisplayAvatarInfoScRsp) } + "CmdSetIsDisplayAvatarInfoCsReq" => { + Some(Self::CmdSetIsDisplayAvatarInfoCsReq) + } + "CmdSetPersonalCardCsReq" => Some(Self::CmdSetPersonalCardCsReq), + "CmdSetDisplayAvatarCsReq" => Some(Self::CmdSetDisplayAvatarCsReq), "CmdSetAssistAvatarScRsp" => Some(Self::CmdSetAssistAvatarScRsp), - "CmdGetPlayerBoardDataCsReq" => Some(Self::CmdGetPlayerBoardDataCsReq), - "CmdGetPlayerBoardDataScRsp" => Some(Self::CmdGetPlayerBoardDataScRsp), - "CmdSetDisplayAvatarScRsp" => Some(Self::CmdSetDisplayAvatarScRsp), - "CmdUnlockHeadIconScNotify" => Some(Self::CmdUnlockHeadIconScNotify), - "CmdSetSignatureCsReq" => Some(Self::CmdSetSignatureCsReq), "CmdSetHeadIconCsReq" => Some(Self::CmdSetHeadIconCsReq), + "CmdUnlockHeadIconScNotify" => Some(Self::CmdUnlockHeadIconScNotify), + "CmdSetSignatureScRsp" => Some(Self::CmdSetSignatureScRsp), + "CmdSetDisplayAvatarScRsp" => Some(Self::CmdSetDisplayAvatarScRsp), _ => None, } } @@ -55336,19 +57679,19 @@ impl CmdPlayerBoardType { #[repr(i32)] pub enum CmdPlayerReturnType { None = 0, - CmdPlayerReturnTakePointRewardScRsp = 4548, - CmdPlayerReturnTakeRewardScRsp = 4552, - CmdPlayerReturnForceFinishScNotify = 4572, - CmdPlayerReturnTakeRewardCsReq = 4571, - CmdPlayerReturnInfoQueryCsReq = 4522, - CmdPlayerReturnTakeRelicCsReq = 4585, - CmdPlayerReturnSignCsReq = 4532, - CmdPlayerReturnTakeRelicScRsp = 4516, - CmdPlayerReturnPointChangeScNotify = 4540, - CmdPlayerReturnStartScNotify = 4595, - CmdPlayerReturnTakePointRewardCsReq = 4576, - CmdPlayerReturnSignScRsp = 4531, - CmdPlayerReturnInfoQueryScRsp = 4556, + CmdPlayerReturnPointChangeScNotify = 4539, + CmdPlayerReturnTakeRewardCsReq = 4570, + CmdPlayerReturnTakePointRewardScRsp = 4521, + CmdPlayerReturnTakeRelicCsReq = 4502, + CmdPlayerReturnSignScRsp = 4567, + CmdPlayerReturnForceFinishScNotify = 4580, + CmdPlayerReturnInfoQueryCsReq = 4554, + CmdPlayerReturnTakeRelicScRsp = 4505, + CmdPlayerReturnSignCsReq = 4591, + CmdPlayerReturnInfoQueryScRsp = 4577, + CmdPlayerReturnTakePointRewardCsReq = 4527, + CmdPlayerReturnTakeRewardScRsp = 4559, + CmdPlayerReturnStartScNotify = 4520, } impl CmdPlayerReturnType { /// String value of the enum field names used in the ProtoBuf definition. @@ -55358,58 +57701,58 @@ impl CmdPlayerReturnType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdPlayerReturnTypeNone", - Self::CmdPlayerReturnTakePointRewardScRsp => { - "CmdPlayerReturnTakePointRewardScRsp" - } - Self::CmdPlayerReturnTakeRewardScRsp => "CmdPlayerReturnTakeRewardScRsp", - Self::CmdPlayerReturnForceFinishScNotify => { - "CmdPlayerReturnForceFinishScNotify" - } - Self::CmdPlayerReturnTakeRewardCsReq => "CmdPlayerReturnTakeRewardCsReq", - Self::CmdPlayerReturnInfoQueryCsReq => "CmdPlayerReturnInfoQueryCsReq", - Self::CmdPlayerReturnTakeRelicCsReq => "CmdPlayerReturnTakeRelicCsReq", - Self::CmdPlayerReturnSignCsReq => "CmdPlayerReturnSignCsReq", - Self::CmdPlayerReturnTakeRelicScRsp => "CmdPlayerReturnTakeRelicScRsp", Self::CmdPlayerReturnPointChangeScNotify => { "CmdPlayerReturnPointChangeScNotify" } - Self::CmdPlayerReturnStartScNotify => "CmdPlayerReturnStartScNotify", + Self::CmdPlayerReturnTakeRewardCsReq => "CmdPlayerReturnTakeRewardCsReq", + Self::CmdPlayerReturnTakePointRewardScRsp => { + "CmdPlayerReturnTakePointRewardScRsp" + } + Self::CmdPlayerReturnTakeRelicCsReq => "CmdPlayerReturnTakeRelicCsReq", + Self::CmdPlayerReturnSignScRsp => "CmdPlayerReturnSignScRsp", + Self::CmdPlayerReturnForceFinishScNotify => { + "CmdPlayerReturnForceFinishScNotify" + } + Self::CmdPlayerReturnInfoQueryCsReq => "CmdPlayerReturnInfoQueryCsReq", + Self::CmdPlayerReturnTakeRelicScRsp => "CmdPlayerReturnTakeRelicScRsp", + Self::CmdPlayerReturnSignCsReq => "CmdPlayerReturnSignCsReq", + Self::CmdPlayerReturnInfoQueryScRsp => "CmdPlayerReturnInfoQueryScRsp", Self::CmdPlayerReturnTakePointRewardCsReq => { "CmdPlayerReturnTakePointRewardCsReq" } - Self::CmdPlayerReturnSignScRsp => "CmdPlayerReturnSignScRsp", - Self::CmdPlayerReturnInfoQueryScRsp => "CmdPlayerReturnInfoQueryScRsp", + Self::CmdPlayerReturnTakeRewardScRsp => "CmdPlayerReturnTakeRewardScRsp", + Self::CmdPlayerReturnStartScNotify => "CmdPlayerReturnStartScNotify", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdPlayerReturnTypeNone" => Some(Self::None), - "CmdPlayerReturnTakePointRewardScRsp" => { - Some(Self::CmdPlayerReturnTakePointRewardScRsp) - } - "CmdPlayerReturnTakeRewardScRsp" => { - Some(Self::CmdPlayerReturnTakeRewardScRsp) - } - "CmdPlayerReturnForceFinishScNotify" => { - Some(Self::CmdPlayerReturnForceFinishScNotify) + "CmdPlayerReturnPointChangeScNotify" => { + Some(Self::CmdPlayerReturnPointChangeScNotify) } "CmdPlayerReturnTakeRewardCsReq" => { Some(Self::CmdPlayerReturnTakeRewardCsReq) } - "CmdPlayerReturnInfoQueryCsReq" => Some(Self::CmdPlayerReturnInfoQueryCsReq), - "CmdPlayerReturnTakeRelicCsReq" => Some(Self::CmdPlayerReturnTakeRelicCsReq), - "CmdPlayerReturnSignCsReq" => Some(Self::CmdPlayerReturnSignCsReq), - "CmdPlayerReturnTakeRelicScRsp" => Some(Self::CmdPlayerReturnTakeRelicScRsp), - "CmdPlayerReturnPointChangeScNotify" => { - Some(Self::CmdPlayerReturnPointChangeScNotify) + "CmdPlayerReturnTakePointRewardScRsp" => { + Some(Self::CmdPlayerReturnTakePointRewardScRsp) } - "CmdPlayerReturnStartScNotify" => Some(Self::CmdPlayerReturnStartScNotify), + "CmdPlayerReturnTakeRelicCsReq" => Some(Self::CmdPlayerReturnTakeRelicCsReq), + "CmdPlayerReturnSignScRsp" => Some(Self::CmdPlayerReturnSignScRsp), + "CmdPlayerReturnForceFinishScNotify" => { + Some(Self::CmdPlayerReturnForceFinishScNotify) + } + "CmdPlayerReturnInfoQueryCsReq" => Some(Self::CmdPlayerReturnInfoQueryCsReq), + "CmdPlayerReturnTakeRelicScRsp" => Some(Self::CmdPlayerReturnTakeRelicScRsp), + "CmdPlayerReturnSignCsReq" => Some(Self::CmdPlayerReturnSignCsReq), + "CmdPlayerReturnInfoQueryScRsp" => Some(Self::CmdPlayerReturnInfoQueryScRsp), "CmdPlayerReturnTakePointRewardCsReq" => { Some(Self::CmdPlayerReturnTakePointRewardCsReq) } - "CmdPlayerReturnSignScRsp" => Some(Self::CmdPlayerReturnSignScRsp), - "CmdPlayerReturnInfoQueryScRsp" => Some(Self::CmdPlayerReturnInfoQueryScRsp), + "CmdPlayerReturnTakeRewardScRsp" => { + Some(Self::CmdPlayerReturnTakeRewardScRsp) + } + "CmdPlayerReturnStartScNotify" => Some(Self::CmdPlayerReturnStartScNotify), _ => None, } } @@ -55450,8 +57793,8 @@ impl Nobpmmnfenj { #[repr(i32)] pub enum CmdPlotType { None = 0, - CmdFinishPlotCsReq = 1195, - CmdFinishPlotScRsp = 1132, + CmdFinishPlotScRsp = 1191, + CmdFinishPlotCsReq = 1120, } impl CmdPlotType { /// String value of the enum field names used in the ProtoBuf definition. @@ -55461,16 +57804,16 @@ impl CmdPlotType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdPlotTypeNone", - Self::CmdFinishPlotCsReq => "CmdFinishPlotCsReq", Self::CmdFinishPlotScRsp => "CmdFinishPlotScRsp", + Self::CmdFinishPlotCsReq => "CmdFinishPlotCsReq", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdPlotTypeNone" => Some(Self::None), - "CmdFinishPlotCsReq" => Some(Self::CmdFinishPlotCsReq), "CmdFinishPlotScRsp" => Some(Self::CmdFinishPlotScRsp), + "CmdFinishPlotCsReq" => Some(Self::CmdFinishPlotCsReq), _ => None, } } @@ -55481,29 +57824,29 @@ impl CmdPlotType { #[repr(i32)] pub enum CmdPunkLordType { None = 0, - CmdSharePunkLordMonsterCsReq = 3276, - CmdPunkLordMonsterInfoScNotify = 3283, - CmdGetPunkLordMonsterDataCsReq = 3295, - CmdPunkLordRaidTimeOutScNotify = 3243, - CmdStartPunkLordRaidCsReq = 3231, - CmdGetPunkLordBattleRecordScRsp = 3230, - CmdTakeKilledPunkLordMonsterScoreCsReq = 3225, - CmdPunkLordMonsterKilledNotify = 3293, - CmdGetPunkLordMonsterDataScRsp = 3232, - CmdSummonPunkLordMonsterScRsp = 3252, - CmdGetPunkLordDataScRsp = 3202, - CmdSummonPunkLordMonsterCsReq = 3271, - CmdTakePunkLordPointRewardScRsp = 3246, - CmdTakePunkLordPointRewardCsReq = 3216, - CmdPunkLordBattleResultScNotify = 3258, - CmdGetPunkLordBattleRecordCsReq = 3237, - CmdGetPunkLordDataCsReq = 3260, - CmdPunkLordDataChangeNotify = 3284, - CmdTakeKilledPunkLordMonsterScoreScRsp = 3214, - CmdGetKilledPunkLordMonsterDataCsReq = 3221, - CmdSharePunkLordMonsterScRsp = 3248, - CmdStartPunkLordRaidScRsp = 3240, - CmdGetKilledPunkLordMonsterDataScRsp = 3229, + CmdSummonPunkLordMonsterScRsp = 3259, + CmdGetPunkLordBattleRecordScRsp = 3245, + CmdGetKilledPunkLordMonsterDataScRsp = 3206, + CmdPunkLordMonsterInfoScNotify = 3273, + CmdPunkLordDataChangeNotify = 3278, + CmdGetPunkLordMonsterDataCsReq = 3220, + CmdPunkLordBattleResultScNotify = 3287, + CmdStartPunkLordRaidScRsp = 3239, + CmdGetPunkLordBattleRecordCsReq = 3234, + CmdPunkLordRaidTimeOutScNotify = 3252, + CmdSummonPunkLordMonsterCsReq = 3270, + CmdTakeKilledPunkLordMonsterScoreCsReq = 3241, + CmdSharePunkLordMonsterScRsp = 3221, + CmdSharePunkLordMonsterCsReq = 3227, + CmdGetPunkLordMonsterDataScRsp = 3291, + CmdTakeKilledPunkLordMonsterScoreScRsp = 3284, + CmdPunkLordMonsterKilledNotify = 3249, + CmdTakePunkLordPointRewardCsReq = 3205, + CmdTakePunkLordPointRewardScRsp = 3274, + CmdGetPunkLordDataScRsp = 3285, + CmdGetKilledPunkLordMonsterDataCsReq = 3209, + CmdGetPunkLordDataCsReq = 3298, + CmdStartPunkLordRaidCsReq = 3267, } impl CmdPunkLordType { /// String value of the enum field names used in the ProtoBuf definition. @@ -55513,94 +57856,94 @@ impl CmdPunkLordType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdPunkLordTypeNone", - Self::CmdSharePunkLordMonsterCsReq => "CmdSharePunkLordMonsterCsReq", - Self::CmdPunkLordMonsterInfoScNotify => "CmdPunkLordMonsterInfoScNotify", - Self::CmdGetPunkLordMonsterDataCsReq => "CmdGetPunkLordMonsterDataCsReq", - Self::CmdPunkLordRaidTimeOutScNotify => "CmdPunkLordRaidTimeOutScNotify", - Self::CmdStartPunkLordRaidCsReq => "CmdStartPunkLordRaidCsReq", - Self::CmdGetPunkLordBattleRecordScRsp => "CmdGetPunkLordBattleRecordScRsp", - Self::CmdTakeKilledPunkLordMonsterScoreCsReq => { - "CmdTakeKilledPunkLordMonsterScoreCsReq" - } - Self::CmdPunkLordMonsterKilledNotify => "CmdPunkLordMonsterKilledNotify", - Self::CmdGetPunkLordMonsterDataScRsp => "CmdGetPunkLordMonsterDataScRsp", Self::CmdSummonPunkLordMonsterScRsp => "CmdSummonPunkLordMonsterScRsp", - Self::CmdGetPunkLordDataScRsp => "CmdGetPunkLordDataScRsp", - Self::CmdSummonPunkLordMonsterCsReq => "CmdSummonPunkLordMonsterCsReq", - Self::CmdTakePunkLordPointRewardScRsp => "CmdTakePunkLordPointRewardScRsp", - Self::CmdTakePunkLordPointRewardCsReq => "CmdTakePunkLordPointRewardCsReq", - Self::CmdPunkLordBattleResultScNotify => "CmdPunkLordBattleResultScNotify", - Self::CmdGetPunkLordBattleRecordCsReq => "CmdGetPunkLordBattleRecordCsReq", - Self::CmdGetPunkLordDataCsReq => "CmdGetPunkLordDataCsReq", - Self::CmdPunkLordDataChangeNotify => "CmdPunkLordDataChangeNotify", - Self::CmdTakeKilledPunkLordMonsterScoreScRsp => { - "CmdTakeKilledPunkLordMonsterScoreScRsp" - } - Self::CmdGetKilledPunkLordMonsterDataCsReq => { - "CmdGetKilledPunkLordMonsterDataCsReq" - } - Self::CmdSharePunkLordMonsterScRsp => "CmdSharePunkLordMonsterScRsp", - Self::CmdStartPunkLordRaidScRsp => "CmdStartPunkLordRaidScRsp", + Self::CmdGetPunkLordBattleRecordScRsp => "CmdGetPunkLordBattleRecordScRsp", Self::CmdGetKilledPunkLordMonsterDataScRsp => { "CmdGetKilledPunkLordMonsterDataScRsp" } + Self::CmdPunkLordMonsterInfoScNotify => "CmdPunkLordMonsterInfoScNotify", + Self::CmdPunkLordDataChangeNotify => "CmdPunkLordDataChangeNotify", + Self::CmdGetPunkLordMonsterDataCsReq => "CmdGetPunkLordMonsterDataCsReq", + Self::CmdPunkLordBattleResultScNotify => "CmdPunkLordBattleResultScNotify", + Self::CmdStartPunkLordRaidScRsp => "CmdStartPunkLordRaidScRsp", + Self::CmdGetPunkLordBattleRecordCsReq => "CmdGetPunkLordBattleRecordCsReq", + Self::CmdPunkLordRaidTimeOutScNotify => "CmdPunkLordRaidTimeOutScNotify", + Self::CmdSummonPunkLordMonsterCsReq => "CmdSummonPunkLordMonsterCsReq", + Self::CmdTakeKilledPunkLordMonsterScoreCsReq => { + "CmdTakeKilledPunkLordMonsterScoreCsReq" + } + Self::CmdSharePunkLordMonsterScRsp => "CmdSharePunkLordMonsterScRsp", + Self::CmdSharePunkLordMonsterCsReq => "CmdSharePunkLordMonsterCsReq", + Self::CmdGetPunkLordMonsterDataScRsp => "CmdGetPunkLordMonsterDataScRsp", + Self::CmdTakeKilledPunkLordMonsterScoreScRsp => { + "CmdTakeKilledPunkLordMonsterScoreScRsp" + } + Self::CmdPunkLordMonsterKilledNotify => "CmdPunkLordMonsterKilledNotify", + Self::CmdTakePunkLordPointRewardCsReq => "CmdTakePunkLordPointRewardCsReq", + Self::CmdTakePunkLordPointRewardScRsp => "CmdTakePunkLordPointRewardScRsp", + Self::CmdGetPunkLordDataScRsp => "CmdGetPunkLordDataScRsp", + Self::CmdGetKilledPunkLordMonsterDataCsReq => { + "CmdGetKilledPunkLordMonsterDataCsReq" + } + Self::CmdGetPunkLordDataCsReq => "CmdGetPunkLordDataCsReq", + Self::CmdStartPunkLordRaidCsReq => "CmdStartPunkLordRaidCsReq", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdPunkLordTypeNone" => Some(Self::None), - "CmdSharePunkLordMonsterCsReq" => Some(Self::CmdSharePunkLordMonsterCsReq), - "CmdPunkLordMonsterInfoScNotify" => { - Some(Self::CmdPunkLordMonsterInfoScNotify) - } - "CmdGetPunkLordMonsterDataCsReq" => { - Some(Self::CmdGetPunkLordMonsterDataCsReq) - } - "CmdPunkLordRaidTimeOutScNotify" => { - Some(Self::CmdPunkLordRaidTimeOutScNotify) - } - "CmdStartPunkLordRaidCsReq" => Some(Self::CmdStartPunkLordRaidCsReq), + "CmdSummonPunkLordMonsterScRsp" => Some(Self::CmdSummonPunkLordMonsterScRsp), "CmdGetPunkLordBattleRecordScRsp" => { Some(Self::CmdGetPunkLordBattleRecordScRsp) } - "CmdTakeKilledPunkLordMonsterScoreCsReq" => { - Some(Self::CmdTakeKilledPunkLordMonsterScoreCsReq) + "CmdGetKilledPunkLordMonsterDataScRsp" => { + Some(Self::CmdGetKilledPunkLordMonsterDataScRsp) } - "CmdPunkLordMonsterKilledNotify" => { - Some(Self::CmdPunkLordMonsterKilledNotify) + "CmdPunkLordMonsterInfoScNotify" => { + Some(Self::CmdPunkLordMonsterInfoScNotify) } - "CmdGetPunkLordMonsterDataScRsp" => { - Some(Self::CmdGetPunkLordMonsterDataScRsp) - } - "CmdSummonPunkLordMonsterScRsp" => Some(Self::CmdSummonPunkLordMonsterScRsp), - "CmdGetPunkLordDataScRsp" => Some(Self::CmdGetPunkLordDataScRsp), - "CmdSummonPunkLordMonsterCsReq" => Some(Self::CmdSummonPunkLordMonsterCsReq), - "CmdTakePunkLordPointRewardScRsp" => { - Some(Self::CmdTakePunkLordPointRewardScRsp) - } - "CmdTakePunkLordPointRewardCsReq" => { - Some(Self::CmdTakePunkLordPointRewardCsReq) + "CmdPunkLordDataChangeNotify" => Some(Self::CmdPunkLordDataChangeNotify), + "CmdGetPunkLordMonsterDataCsReq" => { + Some(Self::CmdGetPunkLordMonsterDataCsReq) } "CmdPunkLordBattleResultScNotify" => { Some(Self::CmdPunkLordBattleResultScNotify) } + "CmdStartPunkLordRaidScRsp" => Some(Self::CmdStartPunkLordRaidScRsp), "CmdGetPunkLordBattleRecordCsReq" => { Some(Self::CmdGetPunkLordBattleRecordCsReq) } - "CmdGetPunkLordDataCsReq" => Some(Self::CmdGetPunkLordDataCsReq), - "CmdPunkLordDataChangeNotify" => Some(Self::CmdPunkLordDataChangeNotify), + "CmdPunkLordRaidTimeOutScNotify" => { + Some(Self::CmdPunkLordRaidTimeOutScNotify) + } + "CmdSummonPunkLordMonsterCsReq" => Some(Self::CmdSummonPunkLordMonsterCsReq), + "CmdTakeKilledPunkLordMonsterScoreCsReq" => { + Some(Self::CmdTakeKilledPunkLordMonsterScoreCsReq) + } + "CmdSharePunkLordMonsterScRsp" => Some(Self::CmdSharePunkLordMonsterScRsp), + "CmdSharePunkLordMonsterCsReq" => Some(Self::CmdSharePunkLordMonsterCsReq), + "CmdGetPunkLordMonsterDataScRsp" => { + Some(Self::CmdGetPunkLordMonsterDataScRsp) + } "CmdTakeKilledPunkLordMonsterScoreScRsp" => { Some(Self::CmdTakeKilledPunkLordMonsterScoreScRsp) } + "CmdPunkLordMonsterKilledNotify" => { + Some(Self::CmdPunkLordMonsterKilledNotify) + } + "CmdTakePunkLordPointRewardCsReq" => { + Some(Self::CmdTakePunkLordPointRewardCsReq) + } + "CmdTakePunkLordPointRewardScRsp" => { + Some(Self::CmdTakePunkLordPointRewardScRsp) + } + "CmdGetPunkLordDataScRsp" => Some(Self::CmdGetPunkLordDataScRsp), "CmdGetKilledPunkLordMonsterDataCsReq" => { Some(Self::CmdGetKilledPunkLordMonsterDataCsReq) } - "CmdSharePunkLordMonsterScRsp" => Some(Self::CmdSharePunkLordMonsterScRsp), - "CmdStartPunkLordRaidScRsp" => Some(Self::CmdStartPunkLordRaidScRsp), - "CmdGetKilledPunkLordMonsterDataScRsp" => { - Some(Self::CmdGetKilledPunkLordMonsterDataScRsp) - } + "CmdGetPunkLordDataCsReq" => Some(Self::CmdGetPunkLordDataCsReq), + "CmdStartPunkLordRaidCsReq" => Some(Self::CmdStartPunkLordRaidCsReq), _ => None, } } @@ -55651,19 +57994,19 @@ impl Nlefpbicecn { #[repr(i32)] pub enum CmdQuestType { None = 0, - CmdTakeQuestOptionalRewardCsReq = 985, - CmdGetQuestRecordCsReq = 971, - CmdTakeQuestRewardCsReq = 931, - CmdTakeQuestOptionalRewardScRsp = 916, - CmdQuestRecordScNotify = 922, - CmdTakeQuestRewardScRsp = 940, - CmdGetQuestDataScRsp = 932, - CmdGetQuestDataCsReq = 995, - CmdGetQuestRecordScRsp = 952, - CmdBatchGetQuestDataCsReq = 983, - CmdFinishQuestCsReq = 956, - CmdBatchGetQuestDataScRsp = 960, - CmdFinishQuestScRsp = 972, + CmdGetQuestDataCsReq = 920, + CmdFinishQuestScRsp = 980, + CmdGetQuestRecordScRsp = 959, + CmdTakeQuestOptionalRewardScRsp = 905, + CmdBatchGetQuestDataCsReq = 973, + CmdTakeQuestOptionalRewardCsReq = 902, + CmdGetQuestRecordCsReq = 970, + CmdGetQuestDataScRsp = 991, + CmdTakeQuestRewardScRsp = 939, + CmdBatchGetQuestDataScRsp = 998, + CmdQuestRecordScNotify = 954, + CmdFinishQuestCsReq = 977, + CmdTakeQuestRewardCsReq = 967, } impl CmdQuestType { /// String value of the enum field names used in the ProtoBuf definition. @@ -55673,42 +58016,42 @@ impl CmdQuestType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdQuestTypeNone", + Self::CmdGetQuestDataCsReq => "CmdGetQuestDataCsReq", + Self::CmdFinishQuestScRsp => "CmdFinishQuestScRsp", + Self::CmdGetQuestRecordScRsp => "CmdGetQuestRecordScRsp", + Self::CmdTakeQuestOptionalRewardScRsp => "CmdTakeQuestOptionalRewardScRsp", + Self::CmdBatchGetQuestDataCsReq => "CmdBatchGetQuestDataCsReq", Self::CmdTakeQuestOptionalRewardCsReq => "CmdTakeQuestOptionalRewardCsReq", Self::CmdGetQuestRecordCsReq => "CmdGetQuestRecordCsReq", - Self::CmdTakeQuestRewardCsReq => "CmdTakeQuestRewardCsReq", - Self::CmdTakeQuestOptionalRewardScRsp => "CmdTakeQuestOptionalRewardScRsp", - Self::CmdQuestRecordScNotify => "CmdQuestRecordScNotify", - Self::CmdTakeQuestRewardScRsp => "CmdTakeQuestRewardScRsp", Self::CmdGetQuestDataScRsp => "CmdGetQuestDataScRsp", - Self::CmdGetQuestDataCsReq => "CmdGetQuestDataCsReq", - Self::CmdGetQuestRecordScRsp => "CmdGetQuestRecordScRsp", - Self::CmdBatchGetQuestDataCsReq => "CmdBatchGetQuestDataCsReq", - Self::CmdFinishQuestCsReq => "CmdFinishQuestCsReq", + Self::CmdTakeQuestRewardScRsp => "CmdTakeQuestRewardScRsp", Self::CmdBatchGetQuestDataScRsp => "CmdBatchGetQuestDataScRsp", - Self::CmdFinishQuestScRsp => "CmdFinishQuestScRsp", + Self::CmdQuestRecordScNotify => "CmdQuestRecordScNotify", + Self::CmdFinishQuestCsReq => "CmdFinishQuestCsReq", + Self::CmdTakeQuestRewardCsReq => "CmdTakeQuestRewardCsReq", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdQuestTypeNone" => Some(Self::None), + "CmdGetQuestDataCsReq" => Some(Self::CmdGetQuestDataCsReq), + "CmdFinishQuestScRsp" => Some(Self::CmdFinishQuestScRsp), + "CmdGetQuestRecordScRsp" => Some(Self::CmdGetQuestRecordScRsp), + "CmdTakeQuestOptionalRewardScRsp" => { + Some(Self::CmdTakeQuestOptionalRewardScRsp) + } + "CmdBatchGetQuestDataCsReq" => Some(Self::CmdBatchGetQuestDataCsReq), "CmdTakeQuestOptionalRewardCsReq" => { Some(Self::CmdTakeQuestOptionalRewardCsReq) } "CmdGetQuestRecordCsReq" => Some(Self::CmdGetQuestRecordCsReq), - "CmdTakeQuestRewardCsReq" => Some(Self::CmdTakeQuestRewardCsReq), - "CmdTakeQuestOptionalRewardScRsp" => { - Some(Self::CmdTakeQuestOptionalRewardScRsp) - } - "CmdQuestRecordScNotify" => Some(Self::CmdQuestRecordScNotify), - "CmdTakeQuestRewardScRsp" => Some(Self::CmdTakeQuestRewardScRsp), "CmdGetQuestDataScRsp" => Some(Self::CmdGetQuestDataScRsp), - "CmdGetQuestDataCsReq" => Some(Self::CmdGetQuestDataCsReq), - "CmdGetQuestRecordScRsp" => Some(Self::CmdGetQuestRecordScRsp), - "CmdBatchGetQuestDataCsReq" => Some(Self::CmdBatchGetQuestDataCsReq), - "CmdFinishQuestCsReq" => Some(Self::CmdFinishQuestCsReq), + "CmdTakeQuestRewardScRsp" => Some(Self::CmdTakeQuestRewardScRsp), "CmdBatchGetQuestDataScRsp" => Some(Self::CmdBatchGetQuestDataScRsp), - "CmdFinishQuestScRsp" => Some(Self::CmdFinishQuestScRsp), + "CmdQuestRecordScNotify" => Some(Self::CmdQuestRecordScNotify), + "CmdFinishQuestCsReq" => Some(Self::CmdFinishQuestCsReq), + "CmdTakeQuestRewardCsReq" => Some(Self::CmdTakeQuestRewardCsReq), _ => None, } } @@ -55755,26 +58098,26 @@ impl QuestStatus { #[repr(i32)] pub enum CmdRaidType { None = 0, - CmdStartRaidScRsp = 2232, - CmdRaidInfoNotify = 2276, - CmdLeaveRaidScRsp = 2240, - CmdDelSaveRaidScNotify = 2243, - CmdGetSaveRaidCsReq = 2283, - CmdGetAllSaveRaidCsReq = 2202, - CmdStartRaidCsReq = 2295, - CmdGetSaveRaidScRsp = 2260, - CmdGetRaidInfoCsReq = 2272, - CmdTakeChallengeRaidRewardCsReq = 2252, - CmdGetRaidInfoScRsp = 2285, - CmdGetChallengeRaidInfoCsReq = 2248, - CmdSetClientRaidTargetCountCsReq = 2216, - CmdLeaveRaidCsReq = 2231, - CmdChallengeRaidNotify = 2256, - CmdGetAllSaveRaidScRsp = 2239, - CmdGetChallengeRaidInfoScRsp = 2271, - CmdTakeChallengeRaidRewardScRsp = 2222, - CmdRaidKickByServerScNotify = 2233, - CmdSetClientRaidTargetCountScRsp = 2246, + CmdRaidInfoNotify = 2227, + CmdTakeChallengeRaidRewardCsReq = 2259, + CmdGetAllSaveRaidScRsp = 2238, + CmdGetSaveRaidScRsp = 2298, + CmdGetAllSaveRaidCsReq = 2285, + CmdGetRaidInfoCsReq = 2280, + CmdSetClientRaidTargetCountScRsp = 2274, + CmdChallengeRaidNotify = 2277, + CmdGetChallengeRaidInfoCsReq = 2221, + CmdTakeChallengeRaidRewardScRsp = 2254, + CmdDelSaveRaidScNotify = 2252, + CmdStartRaidCsReq = 2220, + CmdGetChallengeRaidInfoScRsp = 2270, + CmdGetSaveRaidCsReq = 2273, + CmdGetRaidInfoScRsp = 2202, + CmdStartRaidScRsp = 2291, + CmdSetClientRaidTargetCountCsReq = 2205, + CmdRaidKickByServerScNotify = 2268, + CmdLeaveRaidCsReq = 2267, + CmdLeaveRaidScRsp = 2239, } impl CmdRaidType { /// String value of the enum field names used in the ProtoBuf definition. @@ -55784,60 +58127,60 @@ impl CmdRaidType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdRaidTypeNone", - Self::CmdStartRaidScRsp => "CmdStartRaidScRsp", Self::CmdRaidInfoNotify => "CmdRaidInfoNotify", - Self::CmdLeaveRaidScRsp => "CmdLeaveRaidScRsp", - Self::CmdDelSaveRaidScNotify => "CmdDelSaveRaidScNotify", - Self::CmdGetSaveRaidCsReq => "CmdGetSaveRaidCsReq", - Self::CmdGetAllSaveRaidCsReq => "CmdGetAllSaveRaidCsReq", - Self::CmdStartRaidCsReq => "CmdStartRaidCsReq", - Self::CmdGetSaveRaidScRsp => "CmdGetSaveRaidScRsp", - Self::CmdGetRaidInfoCsReq => "CmdGetRaidInfoCsReq", Self::CmdTakeChallengeRaidRewardCsReq => "CmdTakeChallengeRaidRewardCsReq", - Self::CmdGetRaidInfoScRsp => "CmdGetRaidInfoScRsp", - Self::CmdGetChallengeRaidInfoCsReq => "CmdGetChallengeRaidInfoCsReq", - Self::CmdSetClientRaidTargetCountCsReq => "CmdSetClientRaidTargetCountCsReq", - Self::CmdLeaveRaidCsReq => "CmdLeaveRaidCsReq", - Self::CmdChallengeRaidNotify => "CmdChallengeRaidNotify", Self::CmdGetAllSaveRaidScRsp => "CmdGetAllSaveRaidScRsp", - Self::CmdGetChallengeRaidInfoScRsp => "CmdGetChallengeRaidInfoScRsp", - Self::CmdTakeChallengeRaidRewardScRsp => "CmdTakeChallengeRaidRewardScRsp", - Self::CmdRaidKickByServerScNotify => "CmdRaidKickByServerScNotify", + Self::CmdGetSaveRaidScRsp => "CmdGetSaveRaidScRsp", + Self::CmdGetAllSaveRaidCsReq => "CmdGetAllSaveRaidCsReq", + Self::CmdGetRaidInfoCsReq => "CmdGetRaidInfoCsReq", Self::CmdSetClientRaidTargetCountScRsp => "CmdSetClientRaidTargetCountScRsp", + Self::CmdChallengeRaidNotify => "CmdChallengeRaidNotify", + Self::CmdGetChallengeRaidInfoCsReq => "CmdGetChallengeRaidInfoCsReq", + Self::CmdTakeChallengeRaidRewardScRsp => "CmdTakeChallengeRaidRewardScRsp", + Self::CmdDelSaveRaidScNotify => "CmdDelSaveRaidScNotify", + Self::CmdStartRaidCsReq => "CmdStartRaidCsReq", + Self::CmdGetChallengeRaidInfoScRsp => "CmdGetChallengeRaidInfoScRsp", + Self::CmdGetSaveRaidCsReq => "CmdGetSaveRaidCsReq", + Self::CmdGetRaidInfoScRsp => "CmdGetRaidInfoScRsp", + Self::CmdStartRaidScRsp => "CmdStartRaidScRsp", + Self::CmdSetClientRaidTargetCountCsReq => "CmdSetClientRaidTargetCountCsReq", + Self::CmdRaidKickByServerScNotify => "CmdRaidKickByServerScNotify", + Self::CmdLeaveRaidCsReq => "CmdLeaveRaidCsReq", + Self::CmdLeaveRaidScRsp => "CmdLeaveRaidScRsp", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdRaidTypeNone" => Some(Self::None), - "CmdStartRaidScRsp" => Some(Self::CmdStartRaidScRsp), "CmdRaidInfoNotify" => Some(Self::CmdRaidInfoNotify), - "CmdLeaveRaidScRsp" => Some(Self::CmdLeaveRaidScRsp), - "CmdDelSaveRaidScNotify" => Some(Self::CmdDelSaveRaidScNotify), - "CmdGetSaveRaidCsReq" => Some(Self::CmdGetSaveRaidCsReq), - "CmdGetAllSaveRaidCsReq" => Some(Self::CmdGetAllSaveRaidCsReq), - "CmdStartRaidCsReq" => Some(Self::CmdStartRaidCsReq), - "CmdGetSaveRaidScRsp" => Some(Self::CmdGetSaveRaidScRsp), - "CmdGetRaidInfoCsReq" => Some(Self::CmdGetRaidInfoCsReq), "CmdTakeChallengeRaidRewardCsReq" => { Some(Self::CmdTakeChallengeRaidRewardCsReq) } - "CmdGetRaidInfoScRsp" => Some(Self::CmdGetRaidInfoScRsp), - "CmdGetChallengeRaidInfoCsReq" => Some(Self::CmdGetChallengeRaidInfoCsReq), - "CmdSetClientRaidTargetCountCsReq" => { - Some(Self::CmdSetClientRaidTargetCountCsReq) - } - "CmdLeaveRaidCsReq" => Some(Self::CmdLeaveRaidCsReq), - "CmdChallengeRaidNotify" => Some(Self::CmdChallengeRaidNotify), "CmdGetAllSaveRaidScRsp" => Some(Self::CmdGetAllSaveRaidScRsp), - "CmdGetChallengeRaidInfoScRsp" => Some(Self::CmdGetChallengeRaidInfoScRsp), - "CmdTakeChallengeRaidRewardScRsp" => { - Some(Self::CmdTakeChallengeRaidRewardScRsp) - } - "CmdRaidKickByServerScNotify" => Some(Self::CmdRaidKickByServerScNotify), + "CmdGetSaveRaidScRsp" => Some(Self::CmdGetSaveRaidScRsp), + "CmdGetAllSaveRaidCsReq" => Some(Self::CmdGetAllSaveRaidCsReq), + "CmdGetRaidInfoCsReq" => Some(Self::CmdGetRaidInfoCsReq), "CmdSetClientRaidTargetCountScRsp" => { Some(Self::CmdSetClientRaidTargetCountScRsp) } + "CmdChallengeRaidNotify" => Some(Self::CmdChallengeRaidNotify), + "CmdGetChallengeRaidInfoCsReq" => Some(Self::CmdGetChallengeRaidInfoCsReq), + "CmdTakeChallengeRaidRewardScRsp" => { + Some(Self::CmdTakeChallengeRaidRewardScRsp) + } + "CmdDelSaveRaidScNotify" => Some(Self::CmdDelSaveRaidScNotify), + "CmdStartRaidCsReq" => Some(Self::CmdStartRaidCsReq), + "CmdGetChallengeRaidInfoScRsp" => Some(Self::CmdGetChallengeRaidInfoScRsp), + "CmdGetSaveRaidCsReq" => Some(Self::CmdGetSaveRaidCsReq), + "CmdGetRaidInfoScRsp" => Some(Self::CmdGetRaidInfoScRsp), + "CmdStartRaidScRsp" => Some(Self::CmdStartRaidScRsp), + "CmdSetClientRaidTargetCountCsReq" => { + Some(Self::CmdSetClientRaidTargetCountCsReq) + } + "CmdRaidKickByServerScNotify" => Some(Self::CmdRaidKickByServerScNotify), + "CmdLeaveRaidCsReq" => Some(Self::CmdLeaveRaidCsReq), + "CmdLeaveRaidScRsp" => Some(Self::CmdLeaveRaidScRsp), _ => None, } } @@ -55942,11 +58285,11 @@ impl Egkfndoopnn { #[repr(i32)] pub enum CmdRaidCollectionType { None = 0, - CmdRaidCollectionDataCsReq = 6954, - CmdRaidCollectionDataScNotify = 6948, - CmdRaidCollectionDataScRsp = 6953, - CmdRaidCollectionEnterNextRaidCsReq = 6950, - CmdRaidCollectionEnterNextRaidScRsp = 6944, + CmdRaidCollectionEnterNextRaidCsReq = 6956, + CmdRaidCollectionDataScNotify = 6950, + CmdRaidCollectionDataCsReq = 6958, + CmdRaidCollectionDataScRsp = 6949, + CmdRaidCollectionEnterNextRaidScRsp = 6947, } impl CmdRaidCollectionType { /// String value of the enum field names used in the ProtoBuf definition. @@ -55956,12 +58299,12 @@ impl CmdRaidCollectionType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdRaidCollectionTypeNone", - Self::CmdRaidCollectionDataCsReq => "CmdRaidCollectionDataCsReq", - Self::CmdRaidCollectionDataScNotify => "CmdRaidCollectionDataScNotify", - Self::CmdRaidCollectionDataScRsp => "CmdRaidCollectionDataScRsp", Self::CmdRaidCollectionEnterNextRaidCsReq => { "CmdRaidCollectionEnterNextRaidCsReq" } + Self::CmdRaidCollectionDataScNotify => "CmdRaidCollectionDataScNotify", + Self::CmdRaidCollectionDataCsReq => "CmdRaidCollectionDataCsReq", + Self::CmdRaidCollectionDataScRsp => "CmdRaidCollectionDataScRsp", Self::CmdRaidCollectionEnterNextRaidScRsp => { "CmdRaidCollectionEnterNextRaidScRsp" } @@ -55971,12 +58314,12 @@ impl CmdRaidCollectionType { pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdRaidCollectionTypeNone" => Some(Self::None), - "CmdRaidCollectionDataCsReq" => Some(Self::CmdRaidCollectionDataCsReq), - "CmdRaidCollectionDataScNotify" => Some(Self::CmdRaidCollectionDataScNotify), - "CmdRaidCollectionDataScRsp" => Some(Self::CmdRaidCollectionDataScRsp), "CmdRaidCollectionEnterNextRaidCsReq" => { Some(Self::CmdRaidCollectionEnterNextRaidCsReq) } + "CmdRaidCollectionDataScNotify" => Some(Self::CmdRaidCollectionDataScNotify), + "CmdRaidCollectionDataCsReq" => Some(Self::CmdRaidCollectionDataCsReq), + "CmdRaidCollectionDataScRsp" => Some(Self::CmdRaidCollectionDataScRsp), "CmdRaidCollectionEnterNextRaidScRsp" => { Some(Self::CmdRaidCollectionEnterNextRaidScRsp) } @@ -55990,15 +58333,15 @@ impl CmdRaidCollectionType { #[repr(i32)] pub enum CmdRechargeGiftType { None = 0, - CmdGetRechargeGiftInfoCsReq = 8374, - CmdGetRechargeGiftInfoScRsp = 8373, - CmdGetRechargeBenefitInfoCsReq = 8364, - CmdTakeRechargeGiftRewardCsReq = 8368, - CmdTakeRechargeBenefitRewardCsReq = 8369, - CmdSyncRechargeBenefitInfoScNotify = 8380, - CmdTakeRechargeGiftRewardScRsp = 8370, - CmdTakeRechargeBenefitRewardScRsp = 8367, - CmdGetRechargeBenefitInfoScRsp = 8362, + CmdTakeRechargeBenefitRewardScRsp = 8374, + CmdSyncRechargeBenefitInfoScNotify = 8365, + CmdTakeRechargeGiftRewardCsReq = 8370, + CmdGetRechargeGiftInfoCsReq = 8378, + CmdTakeRechargeBenefitRewardCsReq = 8363, + CmdGetRechargeGiftInfoScRsp = 8369, + CmdTakeRechargeGiftRewardScRsp = 8376, + CmdGetRechargeBenefitInfoCsReq = 8367, + CmdGetRechargeBenefitInfoScRsp = 8371, } impl CmdRechargeGiftType { /// String value of the enum field names used in the ProtoBuf definition. @@ -56008,20 +58351,20 @@ impl CmdRechargeGiftType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdRechargeGiftTypeNone", - Self::CmdGetRechargeGiftInfoCsReq => "CmdGetRechargeGiftInfoCsReq", - Self::CmdGetRechargeGiftInfoScRsp => "CmdGetRechargeGiftInfoScRsp", - Self::CmdGetRechargeBenefitInfoCsReq => "CmdGetRechargeBenefitInfoCsReq", - Self::CmdTakeRechargeGiftRewardCsReq => "CmdTakeRechargeGiftRewardCsReq", - Self::CmdTakeRechargeBenefitRewardCsReq => { - "CmdTakeRechargeBenefitRewardCsReq" + Self::CmdTakeRechargeBenefitRewardScRsp => { + "CmdTakeRechargeBenefitRewardScRsp" } Self::CmdSyncRechargeBenefitInfoScNotify => { "CmdSyncRechargeBenefitInfoScNotify" } - Self::CmdTakeRechargeGiftRewardScRsp => "CmdTakeRechargeGiftRewardScRsp", - Self::CmdTakeRechargeBenefitRewardScRsp => { - "CmdTakeRechargeBenefitRewardScRsp" + Self::CmdTakeRechargeGiftRewardCsReq => "CmdTakeRechargeGiftRewardCsReq", + Self::CmdGetRechargeGiftInfoCsReq => "CmdGetRechargeGiftInfoCsReq", + Self::CmdTakeRechargeBenefitRewardCsReq => { + "CmdTakeRechargeBenefitRewardCsReq" } + Self::CmdGetRechargeGiftInfoScRsp => "CmdGetRechargeGiftInfoScRsp", + Self::CmdTakeRechargeGiftRewardScRsp => "CmdTakeRechargeGiftRewardScRsp", + Self::CmdGetRechargeBenefitInfoCsReq => "CmdGetRechargeBenefitInfoCsReq", Self::CmdGetRechargeBenefitInfoScRsp => "CmdGetRechargeBenefitInfoScRsp", } } @@ -56029,25 +58372,25 @@ impl CmdRechargeGiftType { pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdRechargeGiftTypeNone" => Some(Self::None), - "CmdGetRechargeGiftInfoCsReq" => Some(Self::CmdGetRechargeGiftInfoCsReq), - "CmdGetRechargeGiftInfoScRsp" => Some(Self::CmdGetRechargeGiftInfoScRsp), - "CmdGetRechargeBenefitInfoCsReq" => { - Some(Self::CmdGetRechargeBenefitInfoCsReq) - } - "CmdTakeRechargeGiftRewardCsReq" => { - Some(Self::CmdTakeRechargeGiftRewardCsReq) - } - "CmdTakeRechargeBenefitRewardCsReq" => { - Some(Self::CmdTakeRechargeBenefitRewardCsReq) + "CmdTakeRechargeBenefitRewardScRsp" => { + Some(Self::CmdTakeRechargeBenefitRewardScRsp) } "CmdSyncRechargeBenefitInfoScNotify" => { Some(Self::CmdSyncRechargeBenefitInfoScNotify) } + "CmdTakeRechargeGiftRewardCsReq" => { + Some(Self::CmdTakeRechargeGiftRewardCsReq) + } + "CmdGetRechargeGiftInfoCsReq" => Some(Self::CmdGetRechargeGiftInfoCsReq), + "CmdTakeRechargeBenefitRewardCsReq" => { + Some(Self::CmdTakeRechargeBenefitRewardCsReq) + } + "CmdGetRechargeGiftInfoScRsp" => Some(Self::CmdGetRechargeGiftInfoScRsp), "CmdTakeRechargeGiftRewardScRsp" => { Some(Self::CmdTakeRechargeGiftRewardScRsp) } - "CmdTakeRechargeBenefitRewardScRsp" => { - Some(Self::CmdTakeRechargeBenefitRewardScRsp) + "CmdGetRechargeBenefitInfoCsReq" => { + Some(Self::CmdGetRechargeBenefitInfoCsReq) } "CmdGetRechargeBenefitInfoScRsp" => { Some(Self::CmdGetRechargeBenefitInfoScRsp) @@ -56062,12 +58405,12 @@ impl CmdRechargeGiftType { #[repr(i32)] pub enum CmdRecommendType { None = 0, - CmdGetBigDataAllRecommendScRsp = 2409, - CmdGetChallengeRecommendLineupListScRsp = 2417, - CmdGetBigDataRecommendScRsp = 2415, - CmdGetBigDataAllRecommendCsReq = 2443, - CmdGetBigDataRecommendCsReq = 2427, - CmdGetChallengeRecommendLineupListCsReq = 2436, + CmdGetBigDataRecommendScRsp = 2439, + CmdGetBigDataRecommendCsReq = 2417, + CmdGetBigDataAllRecommendScRsp = 2410, + CmdGetBigDataAllRecommendCsReq = 2412, + CmdGetChallengeRecommendLineupListCsReq = 2411, + CmdGetChallengeRecommendLineupListScRsp = 2437, } impl CmdRecommendType { /// String value of the enum field names used in the ProtoBuf definition. @@ -56077,36 +58420,36 @@ impl CmdRecommendType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CMD_RECOMMEND_TYPE_NONE", - Self::CmdGetBigDataAllRecommendScRsp => "CmdGetBigDataAllRecommendScRsp", - Self::CmdGetChallengeRecommendLineupListScRsp => { - "CmdGetChallengeRecommendLineupListScRsp" - } Self::CmdGetBigDataRecommendScRsp => "CmdGetBigDataRecommendScRsp", - Self::CmdGetBigDataAllRecommendCsReq => "CmdGetBigDataAllRecommendCsReq", Self::CmdGetBigDataRecommendCsReq => "CmdGetBigDataRecommendCsReq", + Self::CmdGetBigDataAllRecommendScRsp => "CmdGetBigDataAllRecommendScRsp", + Self::CmdGetBigDataAllRecommendCsReq => "CmdGetBigDataAllRecommendCsReq", Self::CmdGetChallengeRecommendLineupListCsReq => { "CmdGetChallengeRecommendLineupListCsReq" } + Self::CmdGetChallengeRecommendLineupListScRsp => { + "CmdGetChallengeRecommendLineupListScRsp" + } } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CMD_RECOMMEND_TYPE_NONE" => Some(Self::None), + "CmdGetBigDataRecommendScRsp" => Some(Self::CmdGetBigDataRecommendScRsp), + "CmdGetBigDataRecommendCsReq" => Some(Self::CmdGetBigDataRecommendCsReq), "CmdGetBigDataAllRecommendScRsp" => { Some(Self::CmdGetBigDataAllRecommendScRsp) } - "CmdGetChallengeRecommendLineupListScRsp" => { - Some(Self::CmdGetChallengeRecommendLineupListScRsp) - } - "CmdGetBigDataRecommendScRsp" => Some(Self::CmdGetBigDataRecommendScRsp), "CmdGetBigDataAllRecommendCsReq" => { Some(Self::CmdGetBigDataAllRecommendCsReq) } - "CmdGetBigDataRecommendCsReq" => Some(Self::CmdGetBigDataRecommendCsReq), "CmdGetChallengeRecommendLineupListCsReq" => { Some(Self::CmdGetChallengeRecommendLineupListCsReq) } + "CmdGetChallengeRecommendLineupListScRsp" => { + Some(Self::CmdGetChallengeRecommendLineupListScRsp) + } _ => None, } } @@ -56156,12 +58499,12 @@ impl BigDataRecommendType { #[repr(i32)] pub enum CmdRedDotType { None = 0, - CmdGetSingleRedDotParamGroupCsReq = 5976, - CmdUpdateRedDotDataScRsp = 5940, - CmdGetSingleRedDotParamGroupScRsp = 5948, - CmdGetAllRedDotDataScRsp = 5932, - CmdUpdateRedDotDataCsReq = 5931, - CmdGetAllRedDotDataCsReq = 5995, + CmdGetAllRedDotDataCsReq = 5949, + CmdUpdateRedDotDataScRsp = 5936, + CmdGetAllRedDotDataScRsp = 5927, + CmdUpdateRedDotDataCsReq = 5918, + CmdGetSingleRedDotParamGroupCsReq = 5911, + CmdGetSingleRedDotParamGroupScRsp = 5937, } impl CmdRedDotType { /// String value of the enum field names used in the ProtoBuf definition. @@ -56171,32 +58514,32 @@ impl CmdRedDotType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdRedDotTypeNone", + Self::CmdGetAllRedDotDataCsReq => "CmdGetAllRedDotDataCsReq", + Self::CmdUpdateRedDotDataScRsp => "CmdUpdateRedDotDataScRsp", + Self::CmdGetAllRedDotDataScRsp => "CmdGetAllRedDotDataScRsp", + Self::CmdUpdateRedDotDataCsReq => "CmdUpdateRedDotDataCsReq", Self::CmdGetSingleRedDotParamGroupCsReq => { "CmdGetSingleRedDotParamGroupCsReq" } - Self::CmdUpdateRedDotDataScRsp => "CmdUpdateRedDotDataScRsp", Self::CmdGetSingleRedDotParamGroupScRsp => { "CmdGetSingleRedDotParamGroupScRsp" } - Self::CmdGetAllRedDotDataScRsp => "CmdGetAllRedDotDataScRsp", - Self::CmdUpdateRedDotDataCsReq => "CmdUpdateRedDotDataCsReq", - Self::CmdGetAllRedDotDataCsReq => "CmdGetAllRedDotDataCsReq", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdRedDotTypeNone" => Some(Self::None), + "CmdGetAllRedDotDataCsReq" => Some(Self::CmdGetAllRedDotDataCsReq), + "CmdUpdateRedDotDataScRsp" => Some(Self::CmdUpdateRedDotDataScRsp), + "CmdGetAllRedDotDataScRsp" => Some(Self::CmdGetAllRedDotDataScRsp), + "CmdUpdateRedDotDataCsReq" => Some(Self::CmdUpdateRedDotDataCsReq), "CmdGetSingleRedDotParamGroupCsReq" => { Some(Self::CmdGetSingleRedDotParamGroupCsReq) } - "CmdUpdateRedDotDataScRsp" => Some(Self::CmdUpdateRedDotDataScRsp), "CmdGetSingleRedDotParamGroupScRsp" => { Some(Self::CmdGetSingleRedDotParamGroupScRsp) } - "CmdGetAllRedDotDataScRsp" => Some(Self::CmdGetAllRedDotDataScRsp), - "CmdUpdateRedDotDataCsReq" => Some(Self::CmdUpdateRedDotDataCsReq), - "CmdGetAllRedDotDataCsReq" => Some(Self::CmdGetAllRedDotDataCsReq), _ => None, } } @@ -56237,19 +58580,19 @@ impl Ojljhfnfdkp { #[repr(i32)] pub enum CmdRelicSmartWearType { None = 0, - CmdRelicSmartWearUpdatePlanCsReq = 8254, - CmdRelicSmartWearPinRelicScRsp = 8253, - CmdRelicSmartWearGetPlanScRsp = 8263, - CmdRelicSmartWearUpdatePlanScRsp = 8252, - CmdRelicSmartWearAddPlanCsReq = 8258, - CmdRelicSmartWearUpdatePinRelicScNotify = 8261, - CmdRelicSmartWearPinRelicCsReq = 8257, - CmdRelicSmartWearDeletePlanCsReq = 8270, - CmdRelicSmartWearGetPinRelicCsReq = 8255, - CmdRelicSmartWearDeletePlanScRsp = 8259, - CmdRelicSmartWearAddPlanScRsp = 8260, - CmdRelicSmartWearGetPlanCsReq = 8264, - CmdRelicSmartWearGetPinRelicScRsp = 8251, + CmdRelicSmartWearGetPinRelicCsReq = 8262, + CmdRelicSmartWearPinRelicCsReq = 8264, + CmdRelicSmartWearUpdatePlanCsReq = 8257, + CmdRelicSmartWearDeletePlanScRsp = 8253, + CmdRelicSmartWearUpdatePlanScRsp = 8261, + CmdRelicSmartWearPinRelicScRsp = 8269, + CmdRelicSmartWearAddPlanCsReq = 8260, + CmdRelicSmartWearGetPlanScRsp = 8259, + CmdRelicSmartWearGetPinRelicScRsp = 8256, + CmdRelicSmartWearUpdatePinRelicScNotify = 8263, + CmdRelicSmartWearDeletePlanCsReq = 8255, + CmdRelicSmartWearAddPlanScRsp = 8266, + CmdRelicSmartWearGetPlanCsReq = 8268, } impl CmdRelicSmartWearType { /// String value of the enum field names used in the ProtoBuf definition. @@ -56259,62 +58602,62 @@ impl CmdRelicSmartWearType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdRelicSmartWearTypeNone", - Self::CmdRelicSmartWearUpdatePlanCsReq => "CmdRelicSmartWearUpdatePlanCsReq", - Self::CmdRelicSmartWearPinRelicScRsp => "CmdRelicSmartWearPinRelicScRsp", - Self::CmdRelicSmartWearGetPlanScRsp => "CmdRelicSmartWearGetPlanScRsp", - Self::CmdRelicSmartWearUpdatePlanScRsp => "CmdRelicSmartWearUpdatePlanScRsp", - Self::CmdRelicSmartWearAddPlanCsReq => "CmdRelicSmartWearAddPlanCsReq", - Self::CmdRelicSmartWearUpdatePinRelicScNotify => { - "CmdRelicSmartWearUpdatePinRelicScNotify" - } - Self::CmdRelicSmartWearPinRelicCsReq => "CmdRelicSmartWearPinRelicCsReq", - Self::CmdRelicSmartWearDeletePlanCsReq => "CmdRelicSmartWearDeletePlanCsReq", Self::CmdRelicSmartWearGetPinRelicCsReq => { "CmdRelicSmartWearGetPinRelicCsReq" } + Self::CmdRelicSmartWearPinRelicCsReq => "CmdRelicSmartWearPinRelicCsReq", + Self::CmdRelicSmartWearUpdatePlanCsReq => "CmdRelicSmartWearUpdatePlanCsReq", Self::CmdRelicSmartWearDeletePlanScRsp => "CmdRelicSmartWearDeletePlanScRsp", - Self::CmdRelicSmartWearAddPlanScRsp => "CmdRelicSmartWearAddPlanScRsp", - Self::CmdRelicSmartWearGetPlanCsReq => "CmdRelicSmartWearGetPlanCsReq", + Self::CmdRelicSmartWearUpdatePlanScRsp => "CmdRelicSmartWearUpdatePlanScRsp", + Self::CmdRelicSmartWearPinRelicScRsp => "CmdRelicSmartWearPinRelicScRsp", + Self::CmdRelicSmartWearAddPlanCsReq => "CmdRelicSmartWearAddPlanCsReq", + Self::CmdRelicSmartWearGetPlanScRsp => "CmdRelicSmartWearGetPlanScRsp", Self::CmdRelicSmartWearGetPinRelicScRsp => { "CmdRelicSmartWearGetPinRelicScRsp" } + Self::CmdRelicSmartWearUpdatePinRelicScNotify => { + "CmdRelicSmartWearUpdatePinRelicScNotify" + } + Self::CmdRelicSmartWearDeletePlanCsReq => "CmdRelicSmartWearDeletePlanCsReq", + Self::CmdRelicSmartWearAddPlanScRsp => "CmdRelicSmartWearAddPlanScRsp", + Self::CmdRelicSmartWearGetPlanCsReq => "CmdRelicSmartWearGetPlanCsReq", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdRelicSmartWearTypeNone" => Some(Self::None), - "CmdRelicSmartWearUpdatePlanCsReq" => { - Some(Self::CmdRelicSmartWearUpdatePlanCsReq) - } - "CmdRelicSmartWearPinRelicScRsp" => { - Some(Self::CmdRelicSmartWearPinRelicScRsp) - } - "CmdRelicSmartWearGetPlanScRsp" => Some(Self::CmdRelicSmartWearGetPlanScRsp), - "CmdRelicSmartWearUpdatePlanScRsp" => { - Some(Self::CmdRelicSmartWearUpdatePlanScRsp) - } - "CmdRelicSmartWearAddPlanCsReq" => Some(Self::CmdRelicSmartWearAddPlanCsReq), - "CmdRelicSmartWearUpdatePinRelicScNotify" => { - Some(Self::CmdRelicSmartWearUpdatePinRelicScNotify) + "CmdRelicSmartWearGetPinRelicCsReq" => { + Some(Self::CmdRelicSmartWearGetPinRelicCsReq) } "CmdRelicSmartWearPinRelicCsReq" => { Some(Self::CmdRelicSmartWearPinRelicCsReq) } - "CmdRelicSmartWearDeletePlanCsReq" => { - Some(Self::CmdRelicSmartWearDeletePlanCsReq) - } - "CmdRelicSmartWearGetPinRelicCsReq" => { - Some(Self::CmdRelicSmartWearGetPinRelicCsReq) + "CmdRelicSmartWearUpdatePlanCsReq" => { + Some(Self::CmdRelicSmartWearUpdatePlanCsReq) } "CmdRelicSmartWearDeletePlanScRsp" => { Some(Self::CmdRelicSmartWearDeletePlanScRsp) } - "CmdRelicSmartWearAddPlanScRsp" => Some(Self::CmdRelicSmartWearAddPlanScRsp), - "CmdRelicSmartWearGetPlanCsReq" => Some(Self::CmdRelicSmartWearGetPlanCsReq), + "CmdRelicSmartWearUpdatePlanScRsp" => { + Some(Self::CmdRelicSmartWearUpdatePlanScRsp) + } + "CmdRelicSmartWearPinRelicScRsp" => { + Some(Self::CmdRelicSmartWearPinRelicScRsp) + } + "CmdRelicSmartWearAddPlanCsReq" => Some(Self::CmdRelicSmartWearAddPlanCsReq), + "CmdRelicSmartWearGetPlanScRsp" => Some(Self::CmdRelicSmartWearGetPlanScRsp), "CmdRelicSmartWearGetPinRelicScRsp" => { Some(Self::CmdRelicSmartWearGetPinRelicScRsp) } + "CmdRelicSmartWearUpdatePinRelicScNotify" => { + Some(Self::CmdRelicSmartWearUpdatePinRelicScNotify) + } + "CmdRelicSmartWearDeletePlanCsReq" => { + Some(Self::CmdRelicSmartWearDeletePlanCsReq) + } + "CmdRelicSmartWearAddPlanScRsp" => Some(Self::CmdRelicSmartWearAddPlanScRsp), + "CmdRelicSmartWearGetPlanCsReq" => Some(Self::CmdRelicSmartWearGetPlanCsReq), _ => None, } } @@ -56325,10 +58668,10 @@ impl CmdRelicSmartWearType { #[repr(i32)] pub enum CmdReplayType { None = 0, - CmdGetReplayTokenCsReq = 3595, - CmdGetPlayerReplayInfoScRsp = 3540, - CmdGetReplayTokenScRsp = 3532, - CmdGetPlayerReplayInfoCsReq = 3531, + CmdGetPlayerReplayInfoCsReq = 3567, + CmdGetPlayerReplayInfoScRsp = 3539, + CmdGetReplayTokenCsReq = 3520, + CmdGetReplayTokenScRsp = 3591, } impl CmdReplayType { /// String value of the enum field names used in the ProtoBuf definition. @@ -56338,20 +58681,20 @@ impl CmdReplayType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdReplayTypeNone", - Self::CmdGetReplayTokenCsReq => "CmdGetReplayTokenCsReq", - Self::CmdGetPlayerReplayInfoScRsp => "CmdGetPlayerReplayInfoScRsp", - Self::CmdGetReplayTokenScRsp => "CmdGetReplayTokenScRsp", Self::CmdGetPlayerReplayInfoCsReq => "CmdGetPlayerReplayInfoCsReq", + Self::CmdGetPlayerReplayInfoScRsp => "CmdGetPlayerReplayInfoScRsp", + Self::CmdGetReplayTokenCsReq => "CmdGetReplayTokenCsReq", + Self::CmdGetReplayTokenScRsp => "CmdGetReplayTokenScRsp", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdReplayTypeNone" => Some(Self::None), - "CmdGetReplayTokenCsReq" => Some(Self::CmdGetReplayTokenCsReq), - "CmdGetPlayerReplayInfoScRsp" => Some(Self::CmdGetPlayerReplayInfoScRsp), - "CmdGetReplayTokenScRsp" => Some(Self::CmdGetReplayTokenScRsp), "CmdGetPlayerReplayInfoCsReq" => Some(Self::CmdGetPlayerReplayInfoCsReq), + "CmdGetPlayerReplayInfoScRsp" => Some(Self::CmdGetPlayerReplayInfoScRsp), + "CmdGetReplayTokenCsReq" => Some(Self::CmdGetReplayTokenCsReq), + "CmdGetReplayTokenScRsp" => Some(Self::CmdGetReplayTokenScRsp), _ => None, } } @@ -56362,10 +58705,10 @@ impl CmdReplayType { #[repr(i32)] pub enum CmdRndOptionType { None = 0, - CmdDailyFirstMeetPamScRsp = 3440, - CmdDailyFirstMeetPamCsReq = 3431, - CmdGetRndOptionCsReq = 3495, - CmdGetRndOptionScRsp = 3432, + CmdGetRndOptionCsReq = 3420, + CmdGetRndOptionScRsp = 3491, + CmdDailyFirstMeetPamScRsp = 3439, + CmdDailyFirstMeetPamCsReq = 3467, } impl CmdRndOptionType { /// String value of the enum field names used in the ProtoBuf definition. @@ -56375,20 +58718,20 @@ impl CmdRndOptionType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdRndOptionTypeNone", - Self::CmdDailyFirstMeetPamScRsp => "CmdDailyFirstMeetPamScRsp", - Self::CmdDailyFirstMeetPamCsReq => "CmdDailyFirstMeetPamCsReq", Self::CmdGetRndOptionCsReq => "CmdGetRndOptionCsReq", Self::CmdGetRndOptionScRsp => "CmdGetRndOptionScRsp", + Self::CmdDailyFirstMeetPamScRsp => "CmdDailyFirstMeetPamScRsp", + Self::CmdDailyFirstMeetPamCsReq => "CmdDailyFirstMeetPamCsReq", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdRndOptionTypeNone" => Some(Self::None), - "CmdDailyFirstMeetPamScRsp" => Some(Self::CmdDailyFirstMeetPamScRsp), - "CmdDailyFirstMeetPamCsReq" => Some(Self::CmdDailyFirstMeetPamCsReq), "CmdGetRndOptionCsReq" => Some(Self::CmdGetRndOptionCsReq), "CmdGetRndOptionScRsp" => Some(Self::CmdGetRndOptionScRsp), + "CmdDailyFirstMeetPamScRsp" => Some(Self::CmdDailyFirstMeetPamScRsp), + "CmdDailyFirstMeetPamCsReq" => Some(Self::CmdDailyFirstMeetPamCsReq), _ => None, } } @@ -56399,59 +58742,59 @@ impl CmdRndOptionType { #[repr(i32)] pub enum CmdRogueType { None = 0, - CmdEnableRogueTalentScRsp = 1805, - CmdFinishAeonDialogueGroupScRsp = 1819, - CmdQuitRogueCsReq = 1837, - CmdExchangeRogueRewardKeyCsReq = 1868, - CmdTakeRogueScoreRewardScRsp = 1877, - CmdEnterRogueCsReq = 1876, - CmdGetRogueInitialScoreCsReq = 1864, - CmdGetRogueTalentInfoScRsp = 1888, - CmdSyncRogueRewardInfoScNotify = 1866, - CmdEnterRogueScRsp = 1848, - CmdSyncRogueMapRoomScNotify = 1845, - CmdFinishAeonDialogueGroupCsReq = 1850, - CmdGetRogueInfoCsReq = 1895, - CmdGetRogueAeonInfoCsReq = 1855, - CmdReviveRogueAvatarScRsp = 1833, - CmdStartRogueCsReq = 1831, - CmdEnhanceRogueBuffScRsp = 1863, - CmdSyncRogueVirtualItemInfoScNotify = 1865, - CmdLeaveRogueCsReq = 1871, - CmdOpenRogueChestScRsp = 1834, - CmdSyncRogueAreaUnlockScNotify = 1810, - CmdSyncRogueStatusScNotify = 1881, - CmdReviveRogueAvatarCsReq = 1843, - CmdGetRogueTalentInfoCsReq = 1889, - CmdTakeRogueScoreRewardCsReq = 1842, - CmdPickRogueAvatarScRsp = 1802, - CmdGetRogueBuffEnhanceInfoScRsp = 1821, - CmdEnterRogueMapRoomScRsp = 1898, - CmdSyncRogueReviveInfoScNotify = 1884, - CmdSyncRogueExploreWinScNotify = 1851, - CmdSyncRogueFinishScNotify = 1883, - CmdSyncRoguePickAvatarInfoScNotify = 1861, - CmdTakeRogueAeonLevelRewardScRsp = 1870, - CmdQuitRogueScRsp = 1830, - CmdStartRogueScRsp = 1840, - CmdLeaveRogueScRsp = 1852, - CmdTakeRogueAeonLevelRewardCsReq = 1879, - CmdExchangeRogueRewardKeyScRsp = 1801, - CmdGetRogueScoreRewardInfoCsReq = 1873, - CmdGetRogueAeonInfoScRsp = 1880, - CmdSyncRogueAeonScNotify = 1803, - CmdGetRogueInfoScRsp = 1832, - CmdGetRogueBuffEnhanceInfoCsReq = 1858, - CmdSyncRogueSeasonFinishScNotify = 1891, - CmdOpenRogueChestCsReq = 1835, - CmdSyncRogueGetItemScNotify = 1897, - CmdGetRogueInitialScoreScRsp = 1806, - CmdEnhanceRogueBuffCsReq = 1829, - CmdPickRogueAvatarCsReq = 1860, - CmdEnableRogueTalentCsReq = 1838, - CmdGetRogueScoreRewardInfoScRsp = 1867, - CmdEnterRogueMapRoomCsReq = 1807, - CmdSyncRogueAeonLevelUpRewardScNotify = 1826, + CmdGetRogueTalentInfoScRsp = 1846, + CmdSyncRogueAreaUnlockScNotify = 1862, + CmdFinishAeonDialogueGroupCsReq = 1817, + CmdGetRogueInfoScRsp = 1891, + CmdEnhanceRogueBuffCsReq = 1806, + CmdSyncRogueAeonScNotify = 1812, + CmdGetRogueBuffEnhanceInfoScRsp = 1809, + CmdGetRogueScoreRewardInfoCsReq = 1851, + CmdSyncRogueSeasonFinishScNotify = 1824, + CmdEnterRogueCsReq = 1827, + CmdEnableRogueTalentScRsp = 1892, + CmdOpenRogueChestCsReq = 1857, + CmdGetRogueAeonInfoCsReq = 1897, + CmdTakeRogueScoreRewardScRsp = 1836, + CmdSyncRoguePickAvatarInfoScNotify = 1829, + CmdGetRogueInitialScoreCsReq = 1818, + CmdStartRogueScRsp = 1839, + CmdPickRogueAvatarScRsp = 1885, + CmdTakeRogueScoreRewardCsReq = 1894, + CmdLeaveRogueCsReq = 1870, + CmdEnterRogueMapRoomCsReq = 1822, + CmdFinishAeonDialogueGroupScRsp = 1900, + CmdGetRogueTalentInfoCsReq = 1858, + CmdEnableRogueTalentCsReq = 1842, + CmdQuitRogueScRsp = 1845, + CmdEnterRogueScRsp = 1821, + CmdSyncRogueVirtualItemInfoScNotify = 1881, + CmdSyncRogueStatusScNotify = 1865, + CmdSyncRogueReviveInfoScNotify = 1878, + CmdSyncRogueAeonLevelUpRewardScNotify = 1811, + CmdReviveRogueAvatarCsReq = 1852, + CmdExchangeRogueRewardKeyScRsp = 1889, + CmdEnterRogueMapRoomScRsp = 1840, + CmdSyncRogueGetItemScNotify = 1814, + CmdQuitRogueCsReq = 1834, + CmdSyncRogueFinishScNotify = 1873, + CmdGetRogueScoreRewardInfoScRsp = 1856, + CmdEnhanceRogueBuffScRsp = 1831, + CmdSyncRogueExploreWinScNotify = 1803, + CmdPickRogueAvatarCsReq = 1898, + CmdStartRogueCsReq = 1867, + CmdOpenRogueChestScRsp = 1826, + CmdTakeRogueAeonLevelRewardScRsp = 1875, + CmdExchangeRogueRewardKeyCsReq = 1890, + CmdLeaveRogueScRsp = 1859, + CmdGetRogueAeonInfoScRsp = 1866, + CmdGetRogueInitialScoreScRsp = 1847, + CmdSyncRogueMapRoomScNotify = 1819, + CmdGetRogueInfoCsReq = 1820, + CmdSyncRogueRewardInfoScNotify = 1888, + CmdGetRogueBuffEnhanceInfoCsReq = 1887, + CmdTakeRogueAeonLevelRewardCsReq = 1886, + CmdReviveRogueAvatarScRsp = 1868, } impl CmdRogueType { /// String value of the enum field names used in the ProtoBuf definition. @@ -56461,160 +58804,160 @@ impl CmdRogueType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdRogueTypeNone", - Self::CmdEnableRogueTalentScRsp => "CmdEnableRogueTalentScRsp", - Self::CmdFinishAeonDialogueGroupScRsp => "CmdFinishAeonDialogueGroupScRsp", - Self::CmdQuitRogueCsReq => "CmdQuitRogueCsReq", - Self::CmdExchangeRogueRewardKeyCsReq => "CmdExchangeRogueRewardKeyCsReq", - Self::CmdTakeRogueScoreRewardScRsp => "CmdTakeRogueScoreRewardScRsp", - Self::CmdEnterRogueCsReq => "CmdEnterRogueCsReq", - Self::CmdGetRogueInitialScoreCsReq => "CmdGetRogueInitialScoreCsReq", Self::CmdGetRogueTalentInfoScRsp => "CmdGetRogueTalentInfoScRsp", - Self::CmdSyncRogueRewardInfoScNotify => "CmdSyncRogueRewardInfoScNotify", - Self::CmdEnterRogueScRsp => "CmdEnterRogueScRsp", - Self::CmdSyncRogueMapRoomScNotify => "CmdSyncRogueMapRoomScNotify", - Self::CmdFinishAeonDialogueGroupCsReq => "CmdFinishAeonDialogueGroupCsReq", - Self::CmdGetRogueInfoCsReq => "CmdGetRogueInfoCsReq", - Self::CmdGetRogueAeonInfoCsReq => "CmdGetRogueAeonInfoCsReq", - Self::CmdReviveRogueAvatarScRsp => "CmdReviveRogueAvatarScRsp", - Self::CmdStartRogueCsReq => "CmdStartRogueCsReq", - Self::CmdEnhanceRogueBuffScRsp => "CmdEnhanceRogueBuffScRsp", - Self::CmdSyncRogueVirtualItemInfoScNotify => { - "CmdSyncRogueVirtualItemInfoScNotify" - } - Self::CmdLeaveRogueCsReq => "CmdLeaveRogueCsReq", - Self::CmdOpenRogueChestScRsp => "CmdOpenRogueChestScRsp", Self::CmdSyncRogueAreaUnlockScNotify => "CmdSyncRogueAreaUnlockScNotify", - Self::CmdSyncRogueStatusScNotify => "CmdSyncRogueStatusScNotify", - Self::CmdReviveRogueAvatarCsReq => "CmdReviveRogueAvatarCsReq", - Self::CmdGetRogueTalentInfoCsReq => "CmdGetRogueTalentInfoCsReq", - Self::CmdTakeRogueScoreRewardCsReq => "CmdTakeRogueScoreRewardCsReq", - Self::CmdPickRogueAvatarScRsp => "CmdPickRogueAvatarScRsp", + Self::CmdFinishAeonDialogueGroupCsReq => "CmdFinishAeonDialogueGroupCsReq", + Self::CmdGetRogueInfoScRsp => "CmdGetRogueInfoScRsp", + Self::CmdEnhanceRogueBuffCsReq => "CmdEnhanceRogueBuffCsReq", + Self::CmdSyncRogueAeonScNotify => "CmdSyncRogueAeonScNotify", Self::CmdGetRogueBuffEnhanceInfoScRsp => "CmdGetRogueBuffEnhanceInfoScRsp", - Self::CmdEnterRogueMapRoomScRsp => "CmdEnterRogueMapRoomScRsp", - Self::CmdSyncRogueReviveInfoScNotify => "CmdSyncRogueReviveInfoScNotify", - Self::CmdSyncRogueExploreWinScNotify => "CmdSyncRogueExploreWinScNotify", - Self::CmdSyncRogueFinishScNotify => "CmdSyncRogueFinishScNotify", + Self::CmdGetRogueScoreRewardInfoCsReq => "CmdGetRogueScoreRewardInfoCsReq", + Self::CmdSyncRogueSeasonFinishScNotify => "CmdSyncRogueSeasonFinishScNotify", + Self::CmdEnterRogueCsReq => "CmdEnterRogueCsReq", + Self::CmdEnableRogueTalentScRsp => "CmdEnableRogueTalentScRsp", + Self::CmdOpenRogueChestCsReq => "CmdOpenRogueChestCsReq", + Self::CmdGetRogueAeonInfoCsReq => "CmdGetRogueAeonInfoCsReq", + Self::CmdTakeRogueScoreRewardScRsp => "CmdTakeRogueScoreRewardScRsp", Self::CmdSyncRoguePickAvatarInfoScNotify => { "CmdSyncRoguePickAvatarInfoScNotify" } - Self::CmdTakeRogueAeonLevelRewardScRsp => "CmdTakeRogueAeonLevelRewardScRsp", - Self::CmdQuitRogueScRsp => "CmdQuitRogueScRsp", + Self::CmdGetRogueInitialScoreCsReq => "CmdGetRogueInitialScoreCsReq", Self::CmdStartRogueScRsp => "CmdStartRogueScRsp", - Self::CmdLeaveRogueScRsp => "CmdLeaveRogueScRsp", - Self::CmdTakeRogueAeonLevelRewardCsReq => "CmdTakeRogueAeonLevelRewardCsReq", - Self::CmdExchangeRogueRewardKeyScRsp => "CmdExchangeRogueRewardKeyScRsp", - Self::CmdGetRogueScoreRewardInfoCsReq => "CmdGetRogueScoreRewardInfoCsReq", - Self::CmdGetRogueAeonInfoScRsp => "CmdGetRogueAeonInfoScRsp", - Self::CmdSyncRogueAeonScNotify => "CmdSyncRogueAeonScNotify", - Self::CmdGetRogueInfoScRsp => "CmdGetRogueInfoScRsp", - Self::CmdGetRogueBuffEnhanceInfoCsReq => "CmdGetRogueBuffEnhanceInfoCsReq", - Self::CmdSyncRogueSeasonFinishScNotify => "CmdSyncRogueSeasonFinishScNotify", - Self::CmdOpenRogueChestCsReq => "CmdOpenRogueChestCsReq", - Self::CmdSyncRogueGetItemScNotify => "CmdSyncRogueGetItemScNotify", - Self::CmdGetRogueInitialScoreScRsp => "CmdGetRogueInitialScoreScRsp", - Self::CmdEnhanceRogueBuffCsReq => "CmdEnhanceRogueBuffCsReq", - Self::CmdPickRogueAvatarCsReq => "CmdPickRogueAvatarCsReq", - Self::CmdEnableRogueTalentCsReq => "CmdEnableRogueTalentCsReq", - Self::CmdGetRogueScoreRewardInfoScRsp => "CmdGetRogueScoreRewardInfoScRsp", + Self::CmdPickRogueAvatarScRsp => "CmdPickRogueAvatarScRsp", + Self::CmdTakeRogueScoreRewardCsReq => "CmdTakeRogueScoreRewardCsReq", + Self::CmdLeaveRogueCsReq => "CmdLeaveRogueCsReq", Self::CmdEnterRogueMapRoomCsReq => "CmdEnterRogueMapRoomCsReq", + Self::CmdFinishAeonDialogueGroupScRsp => "CmdFinishAeonDialogueGroupScRsp", + Self::CmdGetRogueTalentInfoCsReq => "CmdGetRogueTalentInfoCsReq", + Self::CmdEnableRogueTalentCsReq => "CmdEnableRogueTalentCsReq", + Self::CmdQuitRogueScRsp => "CmdQuitRogueScRsp", + Self::CmdEnterRogueScRsp => "CmdEnterRogueScRsp", + Self::CmdSyncRogueVirtualItemInfoScNotify => { + "CmdSyncRogueVirtualItemInfoScNotify" + } + Self::CmdSyncRogueStatusScNotify => "CmdSyncRogueStatusScNotify", + Self::CmdSyncRogueReviveInfoScNotify => "CmdSyncRogueReviveInfoScNotify", Self::CmdSyncRogueAeonLevelUpRewardScNotify => { "CmdSyncRogueAeonLevelUpRewardScNotify" } + Self::CmdReviveRogueAvatarCsReq => "CmdReviveRogueAvatarCsReq", + Self::CmdExchangeRogueRewardKeyScRsp => "CmdExchangeRogueRewardKeyScRsp", + Self::CmdEnterRogueMapRoomScRsp => "CmdEnterRogueMapRoomScRsp", + Self::CmdSyncRogueGetItemScNotify => "CmdSyncRogueGetItemScNotify", + Self::CmdQuitRogueCsReq => "CmdQuitRogueCsReq", + Self::CmdSyncRogueFinishScNotify => "CmdSyncRogueFinishScNotify", + Self::CmdGetRogueScoreRewardInfoScRsp => "CmdGetRogueScoreRewardInfoScRsp", + Self::CmdEnhanceRogueBuffScRsp => "CmdEnhanceRogueBuffScRsp", + Self::CmdSyncRogueExploreWinScNotify => "CmdSyncRogueExploreWinScNotify", + Self::CmdPickRogueAvatarCsReq => "CmdPickRogueAvatarCsReq", + Self::CmdStartRogueCsReq => "CmdStartRogueCsReq", + Self::CmdOpenRogueChestScRsp => "CmdOpenRogueChestScRsp", + Self::CmdTakeRogueAeonLevelRewardScRsp => "CmdTakeRogueAeonLevelRewardScRsp", + Self::CmdExchangeRogueRewardKeyCsReq => "CmdExchangeRogueRewardKeyCsReq", + Self::CmdLeaveRogueScRsp => "CmdLeaveRogueScRsp", + Self::CmdGetRogueAeonInfoScRsp => "CmdGetRogueAeonInfoScRsp", + Self::CmdGetRogueInitialScoreScRsp => "CmdGetRogueInitialScoreScRsp", + Self::CmdSyncRogueMapRoomScNotify => "CmdSyncRogueMapRoomScNotify", + Self::CmdGetRogueInfoCsReq => "CmdGetRogueInfoCsReq", + Self::CmdSyncRogueRewardInfoScNotify => "CmdSyncRogueRewardInfoScNotify", + Self::CmdGetRogueBuffEnhanceInfoCsReq => "CmdGetRogueBuffEnhanceInfoCsReq", + Self::CmdTakeRogueAeonLevelRewardCsReq => "CmdTakeRogueAeonLevelRewardCsReq", + Self::CmdReviveRogueAvatarScRsp => "CmdReviveRogueAvatarScRsp", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdRogueTypeNone" => Some(Self::None), - "CmdEnableRogueTalentScRsp" => Some(Self::CmdEnableRogueTalentScRsp), - "CmdFinishAeonDialogueGroupScRsp" => { - Some(Self::CmdFinishAeonDialogueGroupScRsp) - } - "CmdQuitRogueCsReq" => Some(Self::CmdQuitRogueCsReq), - "CmdExchangeRogueRewardKeyCsReq" => { - Some(Self::CmdExchangeRogueRewardKeyCsReq) - } - "CmdTakeRogueScoreRewardScRsp" => Some(Self::CmdTakeRogueScoreRewardScRsp), - "CmdEnterRogueCsReq" => Some(Self::CmdEnterRogueCsReq), - "CmdGetRogueInitialScoreCsReq" => Some(Self::CmdGetRogueInitialScoreCsReq), "CmdGetRogueTalentInfoScRsp" => Some(Self::CmdGetRogueTalentInfoScRsp), - "CmdSyncRogueRewardInfoScNotify" => { - Some(Self::CmdSyncRogueRewardInfoScNotify) - } - "CmdEnterRogueScRsp" => Some(Self::CmdEnterRogueScRsp), - "CmdSyncRogueMapRoomScNotify" => Some(Self::CmdSyncRogueMapRoomScNotify), - "CmdFinishAeonDialogueGroupCsReq" => { - Some(Self::CmdFinishAeonDialogueGroupCsReq) - } - "CmdGetRogueInfoCsReq" => Some(Self::CmdGetRogueInfoCsReq), - "CmdGetRogueAeonInfoCsReq" => Some(Self::CmdGetRogueAeonInfoCsReq), - "CmdReviveRogueAvatarScRsp" => Some(Self::CmdReviveRogueAvatarScRsp), - "CmdStartRogueCsReq" => Some(Self::CmdStartRogueCsReq), - "CmdEnhanceRogueBuffScRsp" => Some(Self::CmdEnhanceRogueBuffScRsp), - "CmdSyncRogueVirtualItemInfoScNotify" => { - Some(Self::CmdSyncRogueVirtualItemInfoScNotify) - } - "CmdLeaveRogueCsReq" => Some(Self::CmdLeaveRogueCsReq), - "CmdOpenRogueChestScRsp" => Some(Self::CmdOpenRogueChestScRsp), "CmdSyncRogueAreaUnlockScNotify" => { Some(Self::CmdSyncRogueAreaUnlockScNotify) } - "CmdSyncRogueStatusScNotify" => Some(Self::CmdSyncRogueStatusScNotify), - "CmdReviveRogueAvatarCsReq" => Some(Self::CmdReviveRogueAvatarCsReq), - "CmdGetRogueTalentInfoCsReq" => Some(Self::CmdGetRogueTalentInfoCsReq), - "CmdTakeRogueScoreRewardCsReq" => Some(Self::CmdTakeRogueScoreRewardCsReq), - "CmdPickRogueAvatarScRsp" => Some(Self::CmdPickRogueAvatarScRsp), + "CmdFinishAeonDialogueGroupCsReq" => { + Some(Self::CmdFinishAeonDialogueGroupCsReq) + } + "CmdGetRogueInfoScRsp" => Some(Self::CmdGetRogueInfoScRsp), + "CmdEnhanceRogueBuffCsReq" => Some(Self::CmdEnhanceRogueBuffCsReq), + "CmdSyncRogueAeonScNotify" => Some(Self::CmdSyncRogueAeonScNotify), "CmdGetRogueBuffEnhanceInfoScRsp" => { Some(Self::CmdGetRogueBuffEnhanceInfoScRsp) } - "CmdEnterRogueMapRoomScRsp" => Some(Self::CmdEnterRogueMapRoomScRsp), - "CmdSyncRogueReviveInfoScNotify" => { - Some(Self::CmdSyncRogueReviveInfoScNotify) - } - "CmdSyncRogueExploreWinScNotify" => { - Some(Self::CmdSyncRogueExploreWinScNotify) - } - "CmdSyncRogueFinishScNotify" => Some(Self::CmdSyncRogueFinishScNotify), - "CmdSyncRoguePickAvatarInfoScNotify" => { - Some(Self::CmdSyncRoguePickAvatarInfoScNotify) - } - "CmdTakeRogueAeonLevelRewardScRsp" => { - Some(Self::CmdTakeRogueAeonLevelRewardScRsp) - } - "CmdQuitRogueScRsp" => Some(Self::CmdQuitRogueScRsp), - "CmdStartRogueScRsp" => Some(Self::CmdStartRogueScRsp), - "CmdLeaveRogueScRsp" => Some(Self::CmdLeaveRogueScRsp), - "CmdTakeRogueAeonLevelRewardCsReq" => { - Some(Self::CmdTakeRogueAeonLevelRewardCsReq) - } - "CmdExchangeRogueRewardKeyScRsp" => { - Some(Self::CmdExchangeRogueRewardKeyScRsp) - } "CmdGetRogueScoreRewardInfoCsReq" => { Some(Self::CmdGetRogueScoreRewardInfoCsReq) } - "CmdGetRogueAeonInfoScRsp" => Some(Self::CmdGetRogueAeonInfoScRsp), - "CmdSyncRogueAeonScNotify" => Some(Self::CmdSyncRogueAeonScNotify), - "CmdGetRogueInfoScRsp" => Some(Self::CmdGetRogueInfoScRsp), - "CmdGetRogueBuffEnhanceInfoCsReq" => { - Some(Self::CmdGetRogueBuffEnhanceInfoCsReq) - } "CmdSyncRogueSeasonFinishScNotify" => { Some(Self::CmdSyncRogueSeasonFinishScNotify) } + "CmdEnterRogueCsReq" => Some(Self::CmdEnterRogueCsReq), + "CmdEnableRogueTalentScRsp" => Some(Self::CmdEnableRogueTalentScRsp), "CmdOpenRogueChestCsReq" => Some(Self::CmdOpenRogueChestCsReq), - "CmdSyncRogueGetItemScNotify" => Some(Self::CmdSyncRogueGetItemScNotify), - "CmdGetRogueInitialScoreScRsp" => Some(Self::CmdGetRogueInitialScoreScRsp), - "CmdEnhanceRogueBuffCsReq" => Some(Self::CmdEnhanceRogueBuffCsReq), - "CmdPickRogueAvatarCsReq" => Some(Self::CmdPickRogueAvatarCsReq), - "CmdEnableRogueTalentCsReq" => Some(Self::CmdEnableRogueTalentCsReq), - "CmdGetRogueScoreRewardInfoScRsp" => { - Some(Self::CmdGetRogueScoreRewardInfoScRsp) + "CmdGetRogueAeonInfoCsReq" => Some(Self::CmdGetRogueAeonInfoCsReq), + "CmdTakeRogueScoreRewardScRsp" => Some(Self::CmdTakeRogueScoreRewardScRsp), + "CmdSyncRoguePickAvatarInfoScNotify" => { + Some(Self::CmdSyncRoguePickAvatarInfoScNotify) } + "CmdGetRogueInitialScoreCsReq" => Some(Self::CmdGetRogueInitialScoreCsReq), + "CmdStartRogueScRsp" => Some(Self::CmdStartRogueScRsp), + "CmdPickRogueAvatarScRsp" => Some(Self::CmdPickRogueAvatarScRsp), + "CmdTakeRogueScoreRewardCsReq" => Some(Self::CmdTakeRogueScoreRewardCsReq), + "CmdLeaveRogueCsReq" => Some(Self::CmdLeaveRogueCsReq), "CmdEnterRogueMapRoomCsReq" => Some(Self::CmdEnterRogueMapRoomCsReq), + "CmdFinishAeonDialogueGroupScRsp" => { + Some(Self::CmdFinishAeonDialogueGroupScRsp) + } + "CmdGetRogueTalentInfoCsReq" => Some(Self::CmdGetRogueTalentInfoCsReq), + "CmdEnableRogueTalentCsReq" => Some(Self::CmdEnableRogueTalentCsReq), + "CmdQuitRogueScRsp" => Some(Self::CmdQuitRogueScRsp), + "CmdEnterRogueScRsp" => Some(Self::CmdEnterRogueScRsp), + "CmdSyncRogueVirtualItemInfoScNotify" => { + Some(Self::CmdSyncRogueVirtualItemInfoScNotify) + } + "CmdSyncRogueStatusScNotify" => Some(Self::CmdSyncRogueStatusScNotify), + "CmdSyncRogueReviveInfoScNotify" => { + Some(Self::CmdSyncRogueReviveInfoScNotify) + } "CmdSyncRogueAeonLevelUpRewardScNotify" => { Some(Self::CmdSyncRogueAeonLevelUpRewardScNotify) } + "CmdReviveRogueAvatarCsReq" => Some(Self::CmdReviveRogueAvatarCsReq), + "CmdExchangeRogueRewardKeyScRsp" => { + Some(Self::CmdExchangeRogueRewardKeyScRsp) + } + "CmdEnterRogueMapRoomScRsp" => Some(Self::CmdEnterRogueMapRoomScRsp), + "CmdSyncRogueGetItemScNotify" => Some(Self::CmdSyncRogueGetItemScNotify), + "CmdQuitRogueCsReq" => Some(Self::CmdQuitRogueCsReq), + "CmdSyncRogueFinishScNotify" => Some(Self::CmdSyncRogueFinishScNotify), + "CmdGetRogueScoreRewardInfoScRsp" => { + Some(Self::CmdGetRogueScoreRewardInfoScRsp) + } + "CmdEnhanceRogueBuffScRsp" => Some(Self::CmdEnhanceRogueBuffScRsp), + "CmdSyncRogueExploreWinScNotify" => { + Some(Self::CmdSyncRogueExploreWinScNotify) + } + "CmdPickRogueAvatarCsReq" => Some(Self::CmdPickRogueAvatarCsReq), + "CmdStartRogueCsReq" => Some(Self::CmdStartRogueCsReq), + "CmdOpenRogueChestScRsp" => Some(Self::CmdOpenRogueChestScRsp), + "CmdTakeRogueAeonLevelRewardScRsp" => { + Some(Self::CmdTakeRogueAeonLevelRewardScRsp) + } + "CmdExchangeRogueRewardKeyCsReq" => { + Some(Self::CmdExchangeRogueRewardKeyCsReq) + } + "CmdLeaveRogueScRsp" => Some(Self::CmdLeaveRogueScRsp), + "CmdGetRogueAeonInfoScRsp" => Some(Self::CmdGetRogueAeonInfoScRsp), + "CmdGetRogueInitialScoreScRsp" => Some(Self::CmdGetRogueInitialScoreScRsp), + "CmdSyncRogueMapRoomScNotify" => Some(Self::CmdSyncRogueMapRoomScNotify), + "CmdGetRogueInfoCsReq" => Some(Self::CmdGetRogueInfoCsReq), + "CmdSyncRogueRewardInfoScNotify" => { + Some(Self::CmdSyncRogueRewardInfoScNotify) + } + "CmdGetRogueBuffEnhanceInfoCsReq" => { + Some(Self::CmdGetRogueBuffEnhanceInfoCsReq) + } + "CmdTakeRogueAeonLevelRewardCsReq" => { + Some(Self::CmdTakeRogueAeonLevelRewardCsReq) + } + "CmdReviveRogueAvatarScRsp" => Some(Self::CmdReviveRogueAvatarScRsp), _ => None, } } @@ -56622,35 +58965,35 @@ impl CmdRogueType { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Egpimdadfdi { - RogueStatusNone = 0, - RogueStatusDoing = 1, - RogueStatusPending = 2, - RogueStatusEndless = 3, - RogueStatusFinish = 4, +pub enum RogueStatus { + None = 0, + Doing = 1, + Pending = 2, + Endless = 3, + Finish = 4, } -impl Egpimdadfdi { +impl RogueStatus { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::RogueStatusNone => "ROGUE_STATUS_NONE", - Self::RogueStatusDoing => "ROGUE_STATUS_DOING", - Self::RogueStatusPending => "ROGUE_STATUS_PENDING", - Self::RogueStatusEndless => "ROGUE_STATUS_ENDLESS", - Self::RogueStatusFinish => "ROGUE_STATUS_FINISH", + Self::None => "ROGUE_STATUS_NONE", + Self::Doing => "ROGUE_STATUS_DOING", + Self::Pending => "ROGUE_STATUS_PENDING", + Self::Endless => "ROGUE_STATUS_ENDLESS", + Self::Finish => "ROGUE_STATUS_FINISH", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "ROGUE_STATUS_NONE" => Some(Self::RogueStatusNone), - "ROGUE_STATUS_DOING" => Some(Self::RogueStatusDoing), - "ROGUE_STATUS_PENDING" => Some(Self::RogueStatusPending), - "ROGUE_STATUS_ENDLESS" => Some(Self::RogueStatusEndless), - "ROGUE_STATUS_FINISH" => Some(Self::RogueStatusFinish), + "ROGUE_STATUS_NONE" => Some(Self::None), + "ROGUE_STATUS_DOING" => Some(Self::Doing), + "ROGUE_STATUS_PENDING" => Some(Self::Pending), + "ROGUE_STATUS_ENDLESS" => Some(Self::Endless), + "ROGUE_STATUS_FINISH" => Some(Self::Finish), _ => None, } } @@ -56896,14 +59239,14 @@ impl Ffnedmegpjd { #[repr(i32)] pub enum CmdRogueArcadeType { None = 0, - CmdRogueArcadeLeaveScRsp = 7687, - CmdRogueArcadeRestartCsReq = 7686, - CmdRogueArcadeGetInfoScRsp = 7665, - CmdRogueArcadeStartCsReq = 7654, - CmdRogueArcadeGetInfoCsReq = 7677, - CmdRogueArcadeLeaveCsReq = 7652, - CmdRogueArcadeRestartScRsp = 7667, - CmdRogueArcadeStartScRsp = 7696, + CmdRogueArcadeGetInfoScRsp = 7689, + CmdRogueArcadeRestartScRsp = 7687, + CmdRogueArcadeStartScRsp = 7677, + CmdRogueArcadeRestartCsReq = 7661, + CmdRogueArcadeGetInfoCsReq = 7667, + CmdRogueArcadeLeaveScRsp = 7686, + CmdRogueArcadeStartCsReq = 7699, + CmdRogueArcadeLeaveCsReq = 7668, } impl CmdRogueArcadeType { /// String value of the enum field names used in the ProtoBuf definition. @@ -56913,28 +59256,28 @@ impl CmdRogueArcadeType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdRogueArcadeTypeNone", - Self::CmdRogueArcadeLeaveScRsp => "CmdRogueArcadeLeaveScRsp", - Self::CmdRogueArcadeRestartCsReq => "CmdRogueArcadeRestartCsReq", Self::CmdRogueArcadeGetInfoScRsp => "CmdRogueArcadeGetInfoScRsp", - Self::CmdRogueArcadeStartCsReq => "CmdRogueArcadeStartCsReq", - Self::CmdRogueArcadeGetInfoCsReq => "CmdRogueArcadeGetInfoCsReq", - Self::CmdRogueArcadeLeaveCsReq => "CmdRogueArcadeLeaveCsReq", Self::CmdRogueArcadeRestartScRsp => "CmdRogueArcadeRestartScRsp", Self::CmdRogueArcadeStartScRsp => "CmdRogueArcadeStartScRsp", + Self::CmdRogueArcadeRestartCsReq => "CmdRogueArcadeRestartCsReq", + Self::CmdRogueArcadeGetInfoCsReq => "CmdRogueArcadeGetInfoCsReq", + Self::CmdRogueArcadeLeaveScRsp => "CmdRogueArcadeLeaveScRsp", + Self::CmdRogueArcadeStartCsReq => "CmdRogueArcadeStartCsReq", + Self::CmdRogueArcadeLeaveCsReq => "CmdRogueArcadeLeaveCsReq", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdRogueArcadeTypeNone" => Some(Self::None), - "CmdRogueArcadeLeaveScRsp" => Some(Self::CmdRogueArcadeLeaveScRsp), - "CmdRogueArcadeRestartCsReq" => Some(Self::CmdRogueArcadeRestartCsReq), "CmdRogueArcadeGetInfoScRsp" => Some(Self::CmdRogueArcadeGetInfoScRsp), - "CmdRogueArcadeStartCsReq" => Some(Self::CmdRogueArcadeStartCsReq), - "CmdRogueArcadeGetInfoCsReq" => Some(Self::CmdRogueArcadeGetInfoCsReq), - "CmdRogueArcadeLeaveCsReq" => Some(Self::CmdRogueArcadeLeaveCsReq), "CmdRogueArcadeRestartScRsp" => Some(Self::CmdRogueArcadeRestartScRsp), "CmdRogueArcadeStartScRsp" => Some(Self::CmdRogueArcadeStartScRsp), + "CmdRogueArcadeRestartCsReq" => Some(Self::CmdRogueArcadeRestartCsReq), + "CmdRogueArcadeGetInfoCsReq" => Some(Self::CmdRogueArcadeGetInfoCsReq), + "CmdRogueArcadeLeaveScRsp" => Some(Self::CmdRogueArcadeLeaveScRsp), + "CmdRogueArcadeStartCsReq" => Some(Self::CmdRogueArcadeStartCsReq), + "CmdRogueArcadeLeaveCsReq" => Some(Self::CmdRogueArcadeLeaveCsReq), _ => None, } } @@ -56945,75 +59288,75 @@ impl CmdRogueArcadeType { #[repr(i32)] pub enum CmdRogueCommonType { None = 0, - CmdGetRogueHandbookDataScRsp = 5657, - CmdHandleRogueCommonPendingActionScRsp = 5608, - CmdCommonRogueQueryScRsp = 5634, - CmdRogueShopBeginBattleScRsp = 5623, - CmdFinishRogueCommonDialogueScRsp = 5674, - CmdGetRogueCommonDialogueDataCsReq = 5601, - CmdGetRogueShopMiracleInfoCsReq = 5640, - CmdBuyRogueShopFormulaCsReq = 5682, - CmdRogueGetGambleInfoScRsp = 5615, - CmdEnhanceCommonRogueBuffScRsp = 5621, - CmdTakeRogueMiracleHandbookRewardScRsp = 5664, - CmdRogueWorkbenchHandleFuncScRsp = 5697, - CmdSetRogueCollectionScRsp = 5618, - CmdUpdateRogueAdventureRoomScoreCsReq = 5620, - CmdGetRogueShopFormulaInfoScRsp = 5605, - CmdHandleRogueCommonPendingActionCsReq = 5687, - CmdRogueDoGambleScRsp = 5680, - CmdSelectRogueCommonDialogueOptionScRsp = 5694, - CmdRogueDoGambleCsReq = 5655, - CmdSetRogueExhibitionCsReq = 5673, - CmdGetRogueHandbookDataCsReq = 5624, - CmdCommonRogueUpdateScNotify = 5668, - CmdSyncRogueHandbookDataUpdateScNotify = 5607, - CmdRogueWorkbenchGetInfoScRsp = 5603, - CmdFinishRogueCommonDialogueCsReq = 5627, - CmdStopRogueAdventureRoomCsReq = 5629, - CmdBuyRogueShopMiracleScRsp = 5622, - CmdBuyRogueShopBuffCsReq = 5656, - CmdPrepareRogueAdventureRoomScRsp = 5631, - CmdPrepareRogueAdventureRoomCsReq = 5632, - CmdRogueWorkbenchGetInfoCsReq = 5649, - CmdGetRogueShopFormulaInfoCsReq = 5638, - CmdTakeRogueEventHandbookRewardScRsp = 5645, - CmdGetRogueExhibitionScRsp = 5626, - CmdRogueWorkbenchHandleFuncCsReq = 5610, - CmdBuyRogueShopMiracleCsReq = 5652, - CmdCommonRogueQueryCsReq = 5635, - CmdSetRogueExhibitionScRsp = 5667, - CmdSyncRogueCommonDialogueDataScNotify = 5690, - CmdSyncRogueCommonVirtualItemInfoScNotify = 5700, - CmdGetRogueCollectionCsReq = 5679, - CmdRogueNpcDisappearScRsp = 5616, - CmdUpdateRogueAdventureRoomScoreScRsp = 5686, - CmdBuyRogueShopFormulaScRsp = 5647, - CmdRogueGetGambleInfoCsReq = 5628, - CmdSyncRogueAdventureRoomInfoScNotify = 5695, - CmdRogueDebugReplaySaveScNotify = 5688, - CmdSyncRogueCommonDialogueOptionFinishScNotify = 5617, - CmdGetRogueShopBuffInfoScRsp = 5671, - CmdSetRogueCollectionCsReq = 5604, - CmdStopRogueAdventureRoomScRsp = 5663, - CmdEnhanceCommonRogueBuffCsReq = 5658, - CmdTakeRogueEventHandbookRewardCsReq = 5606, - CmdGetRogueAdventureRoomInfoScRsp = 5683, - CmdSyncRogueCommonActionResultScNotify = 5613, - CmdGetRogueShopMiracleInfoScRsp = 5676, - CmdTakeRogueMiracleHandbookRewardCsReq = 5698, - CmdSelectRogueCommonDialogueOptionCsReq = 5636, - CmdGetEnhanceCommonRogueBuffInfoCsReq = 5642, - CmdRogueShopBeginBattleCsReq = 5692, - CmdRogueNpcDisappearCsReq = 5685, - CmdSyncRogueCommonPendingActionScNotify = 5678, - CmdGetRogueCollectionScRsp = 5670, - CmdGetEnhanceCommonRogueBuffInfoScRsp = 5677, - CmdGetRogueAdventureRoomInfoCsReq = 5646, - CmdGetRogueShopBuffInfoCsReq = 5648, - CmdGetRogueCommonDialogueDataScRsp = 5653, - CmdBuyRogueShopBuffScRsp = 5672, - CmdGetRogueExhibitionCsReq = 5644, + CmdBuyRogueShopBuffScRsp = 5680, + CmdGetRogueCollectionScRsp = 5675, + CmdGetRogueHandbookDataCsReq = 5628, + CmdGetRogueAdventureRoomInfoCsReq = 5674, + CmdGetRogueShopMiracleInfoCsReq = 5639, + CmdStopRogueAdventureRoomCsReq = 5606, + CmdGetEnhanceCommonRogueBuffInfoCsReq = 5694, + CmdRogueWorkbenchGetInfoScRsp = 5612, + CmdTakeRogueEventHandbookRewardScRsp = 5619, + CmdRogueDoGambleCsReq = 5697, + CmdSetRogueCollectionScRsp = 5683, + CmdRogueShopBeginBattleCsReq = 5615, + CmdRogueGetGambleInfoScRsp = 5608, + CmdTakeRogueEventHandbookRewardCsReq = 5647, + CmdStopRogueAdventureRoomScRsp = 5631, + CmdGetEnhanceCommonRogueBuffInfoScRsp = 5636, + CmdRogueDebugReplaySaveScNotify = 5646, + CmdGetRogueExhibitionCsReq = 5632, + CmdRogueShopBeginBattleScRsp = 5676, + CmdSyncRogueCommonDialogueOptionFinishScNotify = 5648, + CmdGetRogueAdventureRoomInfoScRsp = 5673, + CmdGetRogueShopMiracleInfoScRsp = 5627, + CmdEnhanceCommonRogueBuffScRsp = 5609, + CmdRogueWorkbenchGetInfoCsReq = 5643, + CmdHandleRogueCommonPendingActionScRsp = 5664, + CmdBuyRogueShopMiracleScRsp = 5654, + CmdSetRogueExhibitionScRsp = 5656, + CmdEnhanceCommonRogueBuffCsReq = 5687, + CmdGetRogueHandbookDataScRsp = 5623, + CmdSetRogueExhibitionCsReq = 5651, + CmdCommonRogueUpdateScNotify = 5690, + CmdGetRogueShopBuffInfoScRsp = 5670, + CmdBuyRogueShopMiracleCsReq = 5659, + CmdFinishRogueCommonDialogueScRsp = 5633, + CmdUpdateRogueAdventureRoomScoreCsReq = 5663, + CmdSyncRogueCommonActionResultScNotify = 5655, + CmdRogueWorkbenchHandleFuncCsReq = 5662, + CmdSyncRogueHandbookDataUpdateScNotify = 5622, + CmdGetRogueShopBuffInfoCsReq = 5621, + CmdGetRogueShopFormulaInfoCsReq = 5642, + CmdHandleRogueCommonPendingActionCsReq = 5693, + CmdTakeRogueMiracleHandbookRewardScRsp = 5618, + CmdSetRogueCollectionCsReq = 5630, + CmdRogueNpcDisappearScRsp = 5605, + CmdBuyRogueShopFormulaScRsp = 5604, + CmdPrepareRogueAdventureRoomScRsp = 5667, + CmdRogueDoGambleScRsp = 5666, + CmdRogueNpcDisappearCsReq = 5602, + CmdTakeRogueMiracleHandbookRewardCsReq = 5640, + CmdSelectRogueCommonDialogueOptionCsReq = 5672, + CmdGetRogueShopFormulaInfoScRsp = 5692, + CmdCommonRogueQueryCsReq = 5657, + CmdGetRogueCollectionCsReq = 5686, + CmdSyncRogueCommonVirtualItemInfoScNotify = 5695, + CmdRogueWorkbenchHandleFuncScRsp = 5614, + CmdSyncRogueCommonDialogueDataScNotify = 5607, + CmdFinishRogueCommonDialogueCsReq = 5653, + CmdRogueGetGambleInfoCsReq = 5661, + CmdCommonRogueQueryScRsp = 5626, + CmdSyncRogueCommonPendingActionScNotify = 5671, + CmdGetRogueCommonDialogueDataCsReq = 5689, + CmdGetRogueExhibitionScRsp = 5611, + CmdSyncRogueAdventureRoomInfoScNotify = 5620, + CmdUpdateRogueAdventureRoomScoreScRsp = 5650, + CmdBuyRogueShopBuffCsReq = 5677, + CmdSelectRogueCommonDialogueOptionScRsp = 5635, + CmdGetRogueCommonDialogueDataScRsp = 5637, + CmdPrepareRogueAdventureRoomCsReq = 5691, + CmdBuyRogueShopFormulaCsReq = 5610, } impl CmdRogueCommonType { /// String value of the enum field names used in the ProtoBuf definition. @@ -57023,280 +59366,280 @@ impl CmdRogueCommonType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdRogueCommonTypeNone", - Self::CmdGetRogueHandbookDataScRsp => "CmdGetRogueHandbookDataScRsp", - Self::CmdHandleRogueCommonPendingActionScRsp => { - "CmdHandleRogueCommonPendingActionScRsp" - } - Self::CmdCommonRogueQueryScRsp => "CmdCommonRogueQueryScRsp", - Self::CmdRogueShopBeginBattleScRsp => "CmdRogueShopBeginBattleScRsp", - Self::CmdFinishRogueCommonDialogueScRsp => { - "CmdFinishRogueCommonDialogueScRsp" - } - Self::CmdGetRogueCommonDialogueDataCsReq => { - "CmdGetRogueCommonDialogueDataCsReq" + Self::CmdBuyRogueShopBuffScRsp => "CmdBuyRogueShopBuffScRsp", + Self::CmdGetRogueCollectionScRsp => "CmdGetRogueCollectionScRsp", + Self::CmdGetRogueHandbookDataCsReq => "CmdGetRogueHandbookDataCsReq", + Self::CmdGetRogueAdventureRoomInfoCsReq => { + "CmdGetRogueAdventureRoomInfoCsReq" } Self::CmdGetRogueShopMiracleInfoCsReq => "CmdGetRogueShopMiracleInfoCsReq", - Self::CmdBuyRogueShopFormulaCsReq => "CmdBuyRogueShopFormulaCsReq", - Self::CmdRogueGetGambleInfoScRsp => "CmdRogueGetGambleInfoScRsp", - Self::CmdEnhanceCommonRogueBuffScRsp => "CmdEnhanceCommonRogueBuffScRsp", - Self::CmdTakeRogueMiracleHandbookRewardScRsp => { - "CmdTakeRogueMiracleHandbookRewardScRsp" - } - Self::CmdRogueWorkbenchHandleFuncScRsp => "CmdRogueWorkbenchHandleFuncScRsp", - Self::CmdSetRogueCollectionScRsp => "CmdSetRogueCollectionScRsp", - Self::CmdUpdateRogueAdventureRoomScoreCsReq => { - "CmdUpdateRogueAdventureRoomScoreCsReq" - } - Self::CmdGetRogueShopFormulaInfoScRsp => "CmdGetRogueShopFormulaInfoScRsp", - Self::CmdHandleRogueCommonPendingActionCsReq => { - "CmdHandleRogueCommonPendingActionCsReq" - } - Self::CmdRogueDoGambleScRsp => "CmdRogueDoGambleScRsp", - Self::CmdSelectRogueCommonDialogueOptionScRsp => { - "CmdSelectRogueCommonDialogueOptionScRsp" - } - Self::CmdRogueDoGambleCsReq => "CmdRogueDoGambleCsReq", - Self::CmdSetRogueExhibitionCsReq => "CmdSetRogueExhibitionCsReq", - Self::CmdGetRogueHandbookDataCsReq => "CmdGetRogueHandbookDataCsReq", - Self::CmdCommonRogueUpdateScNotify => "CmdCommonRogueUpdateScNotify", - Self::CmdSyncRogueHandbookDataUpdateScNotify => { - "CmdSyncRogueHandbookDataUpdateScNotify" + Self::CmdStopRogueAdventureRoomCsReq => "CmdStopRogueAdventureRoomCsReq", + Self::CmdGetEnhanceCommonRogueBuffInfoCsReq => { + "CmdGetEnhanceCommonRogueBuffInfoCsReq" } Self::CmdRogueWorkbenchGetInfoScRsp => "CmdRogueWorkbenchGetInfoScRsp", - Self::CmdFinishRogueCommonDialogueCsReq => { - "CmdFinishRogueCommonDialogueCsReq" - } - Self::CmdStopRogueAdventureRoomCsReq => "CmdStopRogueAdventureRoomCsReq", - Self::CmdBuyRogueShopMiracleScRsp => "CmdBuyRogueShopMiracleScRsp", - Self::CmdBuyRogueShopBuffCsReq => "CmdBuyRogueShopBuffCsReq", - Self::CmdPrepareRogueAdventureRoomScRsp => { - "CmdPrepareRogueAdventureRoomScRsp" - } - Self::CmdPrepareRogueAdventureRoomCsReq => { - "CmdPrepareRogueAdventureRoomCsReq" - } - Self::CmdRogueWorkbenchGetInfoCsReq => "CmdRogueWorkbenchGetInfoCsReq", - Self::CmdGetRogueShopFormulaInfoCsReq => "CmdGetRogueShopFormulaInfoCsReq", Self::CmdTakeRogueEventHandbookRewardScRsp => { "CmdTakeRogueEventHandbookRewardScRsp" } - Self::CmdGetRogueExhibitionScRsp => "CmdGetRogueExhibitionScRsp", - Self::CmdRogueWorkbenchHandleFuncCsReq => "CmdRogueWorkbenchHandleFuncCsReq", - Self::CmdBuyRogueShopMiracleCsReq => "CmdBuyRogueShopMiracleCsReq", - Self::CmdCommonRogueQueryCsReq => "CmdCommonRogueQueryCsReq", - Self::CmdSetRogueExhibitionScRsp => "CmdSetRogueExhibitionScRsp", - Self::CmdSyncRogueCommonDialogueDataScNotify => { - "CmdSyncRogueCommonDialogueDataScNotify" - } - Self::CmdSyncRogueCommonVirtualItemInfoScNotify => { - "CmdSyncRogueCommonVirtualItemInfoScNotify" - } - Self::CmdGetRogueCollectionCsReq => "CmdGetRogueCollectionCsReq", - Self::CmdRogueNpcDisappearScRsp => "CmdRogueNpcDisappearScRsp", - Self::CmdUpdateRogueAdventureRoomScoreScRsp => { - "CmdUpdateRogueAdventureRoomScoreScRsp" - } - Self::CmdBuyRogueShopFormulaScRsp => "CmdBuyRogueShopFormulaScRsp", - Self::CmdRogueGetGambleInfoCsReq => "CmdRogueGetGambleInfoCsReq", - Self::CmdSyncRogueAdventureRoomInfoScNotify => { - "CmdSyncRogueAdventureRoomInfoScNotify" - } - Self::CmdRogueDebugReplaySaveScNotify => "CmdRogueDebugReplaySaveScNotify", - Self::CmdSyncRogueCommonDialogueOptionFinishScNotify => { - "CmdSyncRogueCommonDialogueOptionFinishScNotify" - } - Self::CmdGetRogueShopBuffInfoScRsp => "CmdGetRogueShopBuffInfoScRsp", - Self::CmdSetRogueCollectionCsReq => "CmdSetRogueCollectionCsReq", - Self::CmdStopRogueAdventureRoomScRsp => "CmdStopRogueAdventureRoomScRsp", - Self::CmdEnhanceCommonRogueBuffCsReq => "CmdEnhanceCommonRogueBuffCsReq", + Self::CmdRogueDoGambleCsReq => "CmdRogueDoGambleCsReq", + Self::CmdSetRogueCollectionScRsp => "CmdSetRogueCollectionScRsp", + Self::CmdRogueShopBeginBattleCsReq => "CmdRogueShopBeginBattleCsReq", + Self::CmdRogueGetGambleInfoScRsp => "CmdRogueGetGambleInfoScRsp", Self::CmdTakeRogueEventHandbookRewardCsReq => { "CmdTakeRogueEventHandbookRewardCsReq" } + Self::CmdStopRogueAdventureRoomScRsp => "CmdStopRogueAdventureRoomScRsp", + Self::CmdGetEnhanceCommonRogueBuffInfoScRsp => { + "CmdGetEnhanceCommonRogueBuffInfoScRsp" + } + Self::CmdRogueDebugReplaySaveScNotify => "CmdRogueDebugReplaySaveScNotify", + Self::CmdGetRogueExhibitionCsReq => "CmdGetRogueExhibitionCsReq", + Self::CmdRogueShopBeginBattleScRsp => "CmdRogueShopBeginBattleScRsp", + Self::CmdSyncRogueCommonDialogueOptionFinishScNotify => { + "CmdSyncRogueCommonDialogueOptionFinishScNotify" + } Self::CmdGetRogueAdventureRoomInfoScRsp => { "CmdGetRogueAdventureRoomInfoScRsp" } + Self::CmdGetRogueShopMiracleInfoScRsp => "CmdGetRogueShopMiracleInfoScRsp", + Self::CmdEnhanceCommonRogueBuffScRsp => "CmdEnhanceCommonRogueBuffScRsp", + Self::CmdRogueWorkbenchGetInfoCsReq => "CmdRogueWorkbenchGetInfoCsReq", + Self::CmdHandleRogueCommonPendingActionScRsp => { + "CmdHandleRogueCommonPendingActionScRsp" + } + Self::CmdBuyRogueShopMiracleScRsp => "CmdBuyRogueShopMiracleScRsp", + Self::CmdSetRogueExhibitionScRsp => "CmdSetRogueExhibitionScRsp", + Self::CmdEnhanceCommonRogueBuffCsReq => "CmdEnhanceCommonRogueBuffCsReq", + Self::CmdGetRogueHandbookDataScRsp => "CmdGetRogueHandbookDataScRsp", + Self::CmdSetRogueExhibitionCsReq => "CmdSetRogueExhibitionCsReq", + Self::CmdCommonRogueUpdateScNotify => "CmdCommonRogueUpdateScNotify", + Self::CmdGetRogueShopBuffInfoScRsp => "CmdGetRogueShopBuffInfoScRsp", + Self::CmdBuyRogueShopMiracleCsReq => "CmdBuyRogueShopMiracleCsReq", + Self::CmdFinishRogueCommonDialogueScRsp => { + "CmdFinishRogueCommonDialogueScRsp" + } + Self::CmdUpdateRogueAdventureRoomScoreCsReq => { + "CmdUpdateRogueAdventureRoomScoreCsReq" + } Self::CmdSyncRogueCommonActionResultScNotify => { "CmdSyncRogueCommonActionResultScNotify" } - Self::CmdGetRogueShopMiracleInfoScRsp => "CmdGetRogueShopMiracleInfoScRsp", + Self::CmdRogueWorkbenchHandleFuncCsReq => "CmdRogueWorkbenchHandleFuncCsReq", + Self::CmdSyncRogueHandbookDataUpdateScNotify => { + "CmdSyncRogueHandbookDataUpdateScNotify" + } + Self::CmdGetRogueShopBuffInfoCsReq => "CmdGetRogueShopBuffInfoCsReq", + Self::CmdGetRogueShopFormulaInfoCsReq => "CmdGetRogueShopFormulaInfoCsReq", + Self::CmdHandleRogueCommonPendingActionCsReq => { + "CmdHandleRogueCommonPendingActionCsReq" + } + Self::CmdTakeRogueMiracleHandbookRewardScRsp => { + "CmdTakeRogueMiracleHandbookRewardScRsp" + } + Self::CmdSetRogueCollectionCsReq => "CmdSetRogueCollectionCsReq", + Self::CmdRogueNpcDisappearScRsp => "CmdRogueNpcDisappearScRsp", + Self::CmdBuyRogueShopFormulaScRsp => "CmdBuyRogueShopFormulaScRsp", + Self::CmdPrepareRogueAdventureRoomScRsp => { + "CmdPrepareRogueAdventureRoomScRsp" + } + Self::CmdRogueDoGambleScRsp => "CmdRogueDoGambleScRsp", + Self::CmdRogueNpcDisappearCsReq => "CmdRogueNpcDisappearCsReq", Self::CmdTakeRogueMiracleHandbookRewardCsReq => { "CmdTakeRogueMiracleHandbookRewardCsReq" } Self::CmdSelectRogueCommonDialogueOptionCsReq => { "CmdSelectRogueCommonDialogueOptionCsReq" } - Self::CmdGetEnhanceCommonRogueBuffInfoCsReq => { - "CmdGetEnhanceCommonRogueBuffInfoCsReq" + Self::CmdGetRogueShopFormulaInfoScRsp => "CmdGetRogueShopFormulaInfoScRsp", + Self::CmdCommonRogueQueryCsReq => "CmdCommonRogueQueryCsReq", + Self::CmdGetRogueCollectionCsReq => "CmdGetRogueCollectionCsReq", + Self::CmdSyncRogueCommonVirtualItemInfoScNotify => { + "CmdSyncRogueCommonVirtualItemInfoScNotify" } - Self::CmdRogueShopBeginBattleCsReq => "CmdRogueShopBeginBattleCsReq", - Self::CmdRogueNpcDisappearCsReq => "CmdRogueNpcDisappearCsReq", + Self::CmdRogueWorkbenchHandleFuncScRsp => "CmdRogueWorkbenchHandleFuncScRsp", + Self::CmdSyncRogueCommonDialogueDataScNotify => { + "CmdSyncRogueCommonDialogueDataScNotify" + } + Self::CmdFinishRogueCommonDialogueCsReq => { + "CmdFinishRogueCommonDialogueCsReq" + } + Self::CmdRogueGetGambleInfoCsReq => "CmdRogueGetGambleInfoCsReq", + Self::CmdCommonRogueQueryScRsp => "CmdCommonRogueQueryScRsp", Self::CmdSyncRogueCommonPendingActionScNotify => { "CmdSyncRogueCommonPendingActionScNotify" } - Self::CmdGetRogueCollectionScRsp => "CmdGetRogueCollectionScRsp", - Self::CmdGetEnhanceCommonRogueBuffInfoScRsp => { - "CmdGetEnhanceCommonRogueBuffInfoScRsp" + Self::CmdGetRogueCommonDialogueDataCsReq => { + "CmdGetRogueCommonDialogueDataCsReq" } - Self::CmdGetRogueAdventureRoomInfoCsReq => { - "CmdGetRogueAdventureRoomInfoCsReq" + Self::CmdGetRogueExhibitionScRsp => "CmdGetRogueExhibitionScRsp", + Self::CmdSyncRogueAdventureRoomInfoScNotify => { + "CmdSyncRogueAdventureRoomInfoScNotify" + } + Self::CmdUpdateRogueAdventureRoomScoreScRsp => { + "CmdUpdateRogueAdventureRoomScoreScRsp" + } + Self::CmdBuyRogueShopBuffCsReq => "CmdBuyRogueShopBuffCsReq", + Self::CmdSelectRogueCommonDialogueOptionScRsp => { + "CmdSelectRogueCommonDialogueOptionScRsp" } - Self::CmdGetRogueShopBuffInfoCsReq => "CmdGetRogueShopBuffInfoCsReq", Self::CmdGetRogueCommonDialogueDataScRsp => { "CmdGetRogueCommonDialogueDataScRsp" } - Self::CmdBuyRogueShopBuffScRsp => "CmdBuyRogueShopBuffScRsp", - Self::CmdGetRogueExhibitionCsReq => "CmdGetRogueExhibitionCsReq", + Self::CmdPrepareRogueAdventureRoomCsReq => { + "CmdPrepareRogueAdventureRoomCsReq" + } + Self::CmdBuyRogueShopFormulaCsReq => "CmdBuyRogueShopFormulaCsReq", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdRogueCommonTypeNone" => Some(Self::None), - "CmdGetRogueHandbookDataScRsp" => Some(Self::CmdGetRogueHandbookDataScRsp), - "CmdHandleRogueCommonPendingActionScRsp" => { - Some(Self::CmdHandleRogueCommonPendingActionScRsp) - } - "CmdCommonRogueQueryScRsp" => Some(Self::CmdCommonRogueQueryScRsp), - "CmdRogueShopBeginBattleScRsp" => Some(Self::CmdRogueShopBeginBattleScRsp), - "CmdFinishRogueCommonDialogueScRsp" => { - Some(Self::CmdFinishRogueCommonDialogueScRsp) - } - "CmdGetRogueCommonDialogueDataCsReq" => { - Some(Self::CmdGetRogueCommonDialogueDataCsReq) + "CmdBuyRogueShopBuffScRsp" => Some(Self::CmdBuyRogueShopBuffScRsp), + "CmdGetRogueCollectionScRsp" => Some(Self::CmdGetRogueCollectionScRsp), + "CmdGetRogueHandbookDataCsReq" => Some(Self::CmdGetRogueHandbookDataCsReq), + "CmdGetRogueAdventureRoomInfoCsReq" => { + Some(Self::CmdGetRogueAdventureRoomInfoCsReq) } "CmdGetRogueShopMiracleInfoCsReq" => { Some(Self::CmdGetRogueShopMiracleInfoCsReq) } - "CmdBuyRogueShopFormulaCsReq" => Some(Self::CmdBuyRogueShopFormulaCsReq), - "CmdRogueGetGambleInfoScRsp" => Some(Self::CmdRogueGetGambleInfoScRsp), - "CmdEnhanceCommonRogueBuffScRsp" => { - Some(Self::CmdEnhanceCommonRogueBuffScRsp) - } - "CmdTakeRogueMiracleHandbookRewardScRsp" => { - Some(Self::CmdTakeRogueMiracleHandbookRewardScRsp) - } - "CmdRogueWorkbenchHandleFuncScRsp" => { - Some(Self::CmdRogueWorkbenchHandleFuncScRsp) - } - "CmdSetRogueCollectionScRsp" => Some(Self::CmdSetRogueCollectionScRsp), - "CmdUpdateRogueAdventureRoomScoreCsReq" => { - Some(Self::CmdUpdateRogueAdventureRoomScoreCsReq) - } - "CmdGetRogueShopFormulaInfoScRsp" => { - Some(Self::CmdGetRogueShopFormulaInfoScRsp) - } - "CmdHandleRogueCommonPendingActionCsReq" => { - Some(Self::CmdHandleRogueCommonPendingActionCsReq) - } - "CmdRogueDoGambleScRsp" => Some(Self::CmdRogueDoGambleScRsp), - "CmdSelectRogueCommonDialogueOptionScRsp" => { - Some(Self::CmdSelectRogueCommonDialogueOptionScRsp) - } - "CmdRogueDoGambleCsReq" => Some(Self::CmdRogueDoGambleCsReq), - "CmdSetRogueExhibitionCsReq" => Some(Self::CmdSetRogueExhibitionCsReq), - "CmdGetRogueHandbookDataCsReq" => Some(Self::CmdGetRogueHandbookDataCsReq), - "CmdCommonRogueUpdateScNotify" => Some(Self::CmdCommonRogueUpdateScNotify), - "CmdSyncRogueHandbookDataUpdateScNotify" => { - Some(Self::CmdSyncRogueHandbookDataUpdateScNotify) - } - "CmdRogueWorkbenchGetInfoScRsp" => Some(Self::CmdRogueWorkbenchGetInfoScRsp), - "CmdFinishRogueCommonDialogueCsReq" => { - Some(Self::CmdFinishRogueCommonDialogueCsReq) - } "CmdStopRogueAdventureRoomCsReq" => { Some(Self::CmdStopRogueAdventureRoomCsReq) } - "CmdBuyRogueShopMiracleScRsp" => Some(Self::CmdBuyRogueShopMiracleScRsp), - "CmdBuyRogueShopBuffCsReq" => Some(Self::CmdBuyRogueShopBuffCsReq), - "CmdPrepareRogueAdventureRoomScRsp" => { - Some(Self::CmdPrepareRogueAdventureRoomScRsp) - } - "CmdPrepareRogueAdventureRoomCsReq" => { - Some(Self::CmdPrepareRogueAdventureRoomCsReq) - } - "CmdRogueWorkbenchGetInfoCsReq" => Some(Self::CmdRogueWorkbenchGetInfoCsReq), - "CmdGetRogueShopFormulaInfoCsReq" => { - Some(Self::CmdGetRogueShopFormulaInfoCsReq) + "CmdGetEnhanceCommonRogueBuffInfoCsReq" => { + Some(Self::CmdGetEnhanceCommonRogueBuffInfoCsReq) } + "CmdRogueWorkbenchGetInfoScRsp" => Some(Self::CmdRogueWorkbenchGetInfoScRsp), "CmdTakeRogueEventHandbookRewardScRsp" => { Some(Self::CmdTakeRogueEventHandbookRewardScRsp) } - "CmdGetRogueExhibitionScRsp" => Some(Self::CmdGetRogueExhibitionScRsp), - "CmdRogueWorkbenchHandleFuncCsReq" => { - Some(Self::CmdRogueWorkbenchHandleFuncCsReq) + "CmdRogueDoGambleCsReq" => Some(Self::CmdRogueDoGambleCsReq), + "CmdSetRogueCollectionScRsp" => Some(Self::CmdSetRogueCollectionScRsp), + "CmdRogueShopBeginBattleCsReq" => Some(Self::CmdRogueShopBeginBattleCsReq), + "CmdRogueGetGambleInfoScRsp" => Some(Self::CmdRogueGetGambleInfoScRsp), + "CmdTakeRogueEventHandbookRewardCsReq" => { + Some(Self::CmdTakeRogueEventHandbookRewardCsReq) } - "CmdBuyRogueShopMiracleCsReq" => Some(Self::CmdBuyRogueShopMiracleCsReq), - "CmdCommonRogueQueryCsReq" => Some(Self::CmdCommonRogueQueryCsReq), - "CmdSetRogueExhibitionScRsp" => Some(Self::CmdSetRogueExhibitionScRsp), - "CmdSyncRogueCommonDialogueDataScNotify" => { - Some(Self::CmdSyncRogueCommonDialogueDataScNotify) + "CmdStopRogueAdventureRoomScRsp" => { + Some(Self::CmdStopRogueAdventureRoomScRsp) } - "CmdSyncRogueCommonVirtualItemInfoScNotify" => { - Some(Self::CmdSyncRogueCommonVirtualItemInfoScNotify) - } - "CmdGetRogueCollectionCsReq" => Some(Self::CmdGetRogueCollectionCsReq), - "CmdRogueNpcDisappearScRsp" => Some(Self::CmdRogueNpcDisappearScRsp), - "CmdUpdateRogueAdventureRoomScoreScRsp" => { - Some(Self::CmdUpdateRogueAdventureRoomScoreScRsp) - } - "CmdBuyRogueShopFormulaScRsp" => Some(Self::CmdBuyRogueShopFormulaScRsp), - "CmdRogueGetGambleInfoCsReq" => Some(Self::CmdRogueGetGambleInfoCsReq), - "CmdSyncRogueAdventureRoomInfoScNotify" => { - Some(Self::CmdSyncRogueAdventureRoomInfoScNotify) + "CmdGetEnhanceCommonRogueBuffInfoScRsp" => { + Some(Self::CmdGetEnhanceCommonRogueBuffInfoScRsp) } "CmdRogueDebugReplaySaveScNotify" => { Some(Self::CmdRogueDebugReplaySaveScNotify) } + "CmdGetRogueExhibitionCsReq" => Some(Self::CmdGetRogueExhibitionCsReq), + "CmdRogueShopBeginBattleScRsp" => Some(Self::CmdRogueShopBeginBattleScRsp), "CmdSyncRogueCommonDialogueOptionFinishScNotify" => { Some(Self::CmdSyncRogueCommonDialogueOptionFinishScNotify) } - "CmdGetRogueShopBuffInfoScRsp" => Some(Self::CmdGetRogueShopBuffInfoScRsp), - "CmdSetRogueCollectionCsReq" => Some(Self::CmdSetRogueCollectionCsReq), - "CmdStopRogueAdventureRoomScRsp" => { - Some(Self::CmdStopRogueAdventureRoomScRsp) - } - "CmdEnhanceCommonRogueBuffCsReq" => { - Some(Self::CmdEnhanceCommonRogueBuffCsReq) - } - "CmdTakeRogueEventHandbookRewardCsReq" => { - Some(Self::CmdTakeRogueEventHandbookRewardCsReq) - } "CmdGetRogueAdventureRoomInfoScRsp" => { Some(Self::CmdGetRogueAdventureRoomInfoScRsp) } - "CmdSyncRogueCommonActionResultScNotify" => { - Some(Self::CmdSyncRogueCommonActionResultScNotify) - } "CmdGetRogueShopMiracleInfoScRsp" => { Some(Self::CmdGetRogueShopMiracleInfoScRsp) } + "CmdEnhanceCommonRogueBuffScRsp" => { + Some(Self::CmdEnhanceCommonRogueBuffScRsp) + } + "CmdRogueWorkbenchGetInfoCsReq" => Some(Self::CmdRogueWorkbenchGetInfoCsReq), + "CmdHandleRogueCommonPendingActionScRsp" => { + Some(Self::CmdHandleRogueCommonPendingActionScRsp) + } + "CmdBuyRogueShopMiracleScRsp" => Some(Self::CmdBuyRogueShopMiracleScRsp), + "CmdSetRogueExhibitionScRsp" => Some(Self::CmdSetRogueExhibitionScRsp), + "CmdEnhanceCommonRogueBuffCsReq" => { + Some(Self::CmdEnhanceCommonRogueBuffCsReq) + } + "CmdGetRogueHandbookDataScRsp" => Some(Self::CmdGetRogueHandbookDataScRsp), + "CmdSetRogueExhibitionCsReq" => Some(Self::CmdSetRogueExhibitionCsReq), + "CmdCommonRogueUpdateScNotify" => Some(Self::CmdCommonRogueUpdateScNotify), + "CmdGetRogueShopBuffInfoScRsp" => Some(Self::CmdGetRogueShopBuffInfoScRsp), + "CmdBuyRogueShopMiracleCsReq" => Some(Self::CmdBuyRogueShopMiracleCsReq), + "CmdFinishRogueCommonDialogueScRsp" => { + Some(Self::CmdFinishRogueCommonDialogueScRsp) + } + "CmdUpdateRogueAdventureRoomScoreCsReq" => { + Some(Self::CmdUpdateRogueAdventureRoomScoreCsReq) + } + "CmdSyncRogueCommonActionResultScNotify" => { + Some(Self::CmdSyncRogueCommonActionResultScNotify) + } + "CmdRogueWorkbenchHandleFuncCsReq" => { + Some(Self::CmdRogueWorkbenchHandleFuncCsReq) + } + "CmdSyncRogueHandbookDataUpdateScNotify" => { + Some(Self::CmdSyncRogueHandbookDataUpdateScNotify) + } + "CmdGetRogueShopBuffInfoCsReq" => Some(Self::CmdGetRogueShopBuffInfoCsReq), + "CmdGetRogueShopFormulaInfoCsReq" => { + Some(Self::CmdGetRogueShopFormulaInfoCsReq) + } + "CmdHandleRogueCommonPendingActionCsReq" => { + Some(Self::CmdHandleRogueCommonPendingActionCsReq) + } + "CmdTakeRogueMiracleHandbookRewardScRsp" => { + Some(Self::CmdTakeRogueMiracleHandbookRewardScRsp) + } + "CmdSetRogueCollectionCsReq" => Some(Self::CmdSetRogueCollectionCsReq), + "CmdRogueNpcDisappearScRsp" => Some(Self::CmdRogueNpcDisappearScRsp), + "CmdBuyRogueShopFormulaScRsp" => Some(Self::CmdBuyRogueShopFormulaScRsp), + "CmdPrepareRogueAdventureRoomScRsp" => { + Some(Self::CmdPrepareRogueAdventureRoomScRsp) + } + "CmdRogueDoGambleScRsp" => Some(Self::CmdRogueDoGambleScRsp), + "CmdRogueNpcDisappearCsReq" => Some(Self::CmdRogueNpcDisappearCsReq), "CmdTakeRogueMiracleHandbookRewardCsReq" => { Some(Self::CmdTakeRogueMiracleHandbookRewardCsReq) } "CmdSelectRogueCommonDialogueOptionCsReq" => { Some(Self::CmdSelectRogueCommonDialogueOptionCsReq) } - "CmdGetEnhanceCommonRogueBuffInfoCsReq" => { - Some(Self::CmdGetEnhanceCommonRogueBuffInfoCsReq) + "CmdGetRogueShopFormulaInfoScRsp" => { + Some(Self::CmdGetRogueShopFormulaInfoScRsp) } - "CmdRogueShopBeginBattleCsReq" => Some(Self::CmdRogueShopBeginBattleCsReq), - "CmdRogueNpcDisappearCsReq" => Some(Self::CmdRogueNpcDisappearCsReq), + "CmdCommonRogueQueryCsReq" => Some(Self::CmdCommonRogueQueryCsReq), + "CmdGetRogueCollectionCsReq" => Some(Self::CmdGetRogueCollectionCsReq), + "CmdSyncRogueCommonVirtualItemInfoScNotify" => { + Some(Self::CmdSyncRogueCommonVirtualItemInfoScNotify) + } + "CmdRogueWorkbenchHandleFuncScRsp" => { + Some(Self::CmdRogueWorkbenchHandleFuncScRsp) + } + "CmdSyncRogueCommonDialogueDataScNotify" => { + Some(Self::CmdSyncRogueCommonDialogueDataScNotify) + } + "CmdFinishRogueCommonDialogueCsReq" => { + Some(Self::CmdFinishRogueCommonDialogueCsReq) + } + "CmdRogueGetGambleInfoCsReq" => Some(Self::CmdRogueGetGambleInfoCsReq), + "CmdCommonRogueQueryScRsp" => Some(Self::CmdCommonRogueQueryScRsp), "CmdSyncRogueCommonPendingActionScNotify" => { Some(Self::CmdSyncRogueCommonPendingActionScNotify) } - "CmdGetRogueCollectionScRsp" => Some(Self::CmdGetRogueCollectionScRsp), - "CmdGetEnhanceCommonRogueBuffInfoScRsp" => { - Some(Self::CmdGetEnhanceCommonRogueBuffInfoScRsp) + "CmdGetRogueCommonDialogueDataCsReq" => { + Some(Self::CmdGetRogueCommonDialogueDataCsReq) } - "CmdGetRogueAdventureRoomInfoCsReq" => { - Some(Self::CmdGetRogueAdventureRoomInfoCsReq) + "CmdGetRogueExhibitionScRsp" => Some(Self::CmdGetRogueExhibitionScRsp), + "CmdSyncRogueAdventureRoomInfoScNotify" => { + Some(Self::CmdSyncRogueAdventureRoomInfoScNotify) + } + "CmdUpdateRogueAdventureRoomScoreScRsp" => { + Some(Self::CmdUpdateRogueAdventureRoomScoreScRsp) + } + "CmdBuyRogueShopBuffCsReq" => Some(Self::CmdBuyRogueShopBuffCsReq), + "CmdSelectRogueCommonDialogueOptionScRsp" => { + Some(Self::CmdSelectRogueCommonDialogueOptionScRsp) } - "CmdGetRogueShopBuffInfoCsReq" => Some(Self::CmdGetRogueShopBuffInfoCsReq), "CmdGetRogueCommonDialogueDataScRsp" => { Some(Self::CmdGetRogueCommonDialogueDataScRsp) } - "CmdBuyRogueShopBuffScRsp" => Some(Self::CmdBuyRogueShopBuffScRsp), - "CmdGetRogueExhibitionCsReq" => Some(Self::CmdGetRogueExhibitionCsReq), + "CmdPrepareRogueAdventureRoomCsReq" => { + Some(Self::CmdPrepareRogueAdventureRoomCsReq) + } + "CmdBuyRogueShopFormulaCsReq" => Some(Self::CmdBuyRogueShopFormulaCsReq), _ => None, } } @@ -57649,41 +59992,29 @@ impl Paickpmogdg { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Nemklkdbeap { - RogueCommonActionResultDisplayTypeNone = 0, - RogueCommonActionResultDisplayTypeSingle = 1, - RogueCommonActionResultDisplayTypeMulti = 2, +pub enum RogueCommonActionResultDisplayType { + None = 0, + Single = 1, + Multi = 2, } -impl Nemklkdbeap { +impl RogueCommonActionResultDisplayType { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::RogueCommonActionResultDisplayTypeNone => { - "ROGUE_COMMON_ACTION_RESULT_DISPLAY_TYPE_NONE" - } - Self::RogueCommonActionResultDisplayTypeSingle => { - "ROGUE_COMMON_ACTION_RESULT_DISPLAY_TYPE_SINGLE" - } - Self::RogueCommonActionResultDisplayTypeMulti => { - "ROGUE_COMMON_ACTION_RESULT_DISPLAY_TYPE_MULTI" - } + Self::None => "ROGUE_COMMON_ACTION_RESULT_DISPLAY_TYPE_NONE", + Self::Single => "ROGUE_COMMON_ACTION_RESULT_DISPLAY_TYPE_SINGLE", + Self::Multi => "ROGUE_COMMON_ACTION_RESULT_DISPLAY_TYPE_MULTI", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "ROGUE_COMMON_ACTION_RESULT_DISPLAY_TYPE_NONE" => { - Some(Self::RogueCommonActionResultDisplayTypeNone) - } - "ROGUE_COMMON_ACTION_RESULT_DISPLAY_TYPE_SINGLE" => { - Some(Self::RogueCommonActionResultDisplayTypeSingle) - } - "ROGUE_COMMON_ACTION_RESULT_DISPLAY_TYPE_MULTI" => { - Some(Self::RogueCommonActionResultDisplayTypeMulti) - } + "ROGUE_COMMON_ACTION_RESULT_DISPLAY_TYPE_NONE" => Some(Self::None), + "ROGUE_COMMON_ACTION_RESULT_DISPLAY_TYPE_SINGLE" => Some(Self::Single), + "ROGUE_COMMON_ACTION_RESULT_DISPLAY_TYPE_MULTI" => Some(Self::Multi), _ => None, } } @@ -58007,15 +60338,15 @@ impl Ehcobodeeje { #[repr(i32)] pub enum CmdRogueEndless { None = 0, - CmdTakeRogueEndlessActivityAllBonusRewardScRsp = 6010, - CmdGetRogueEndlessActivityDataCsReq = 6002, - CmdTakeRogueEndlessActivityPointRewardScRsp = 6006, - CmdEnterRogueEndlessActivityStageCsReq = 6004, - CmdGetRogueEndlessActivityDataScRsp = 6005, - ActivityBattleEndScNotify = 6001, - CmdTakeRogueEndlessActivityAllBonusRewardCsReq = 6003, - CmdTakeRogueEndlessActivityPointRewardCsReq = 6009, - CmdEnterRogueEndlessActivityStageScRsp = 6007, + ActivityBattleEndScNotify = 6006, + CmdTakeRogueEndlessActivityPointRewardScRsp = 6001, + CmdGetRogueEndlessActivityDataScRsp = 6009, + CmdTakeRogueEndlessActivityPointRewardCsReq = 6007, + CmdTakeRogueEndlessActivityAllBonusRewardCsReq = 6010, + CmdGetRogueEndlessActivityDataCsReq = 6005, + CmdTakeRogueEndlessActivityAllBonusRewardScRsp = 6004, + CmdEnterRogueEndlessActivityStageScRsp = 6003, + CmdEnterRogueEndlessActivityStageCsReq = 6008, } impl CmdRogueEndless { /// String value of the enum field names used in the ProtoBuf definition. @@ -58025,64 +60356,64 @@ impl CmdRogueEndless { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdRogueEndlessNone", - Self::CmdTakeRogueEndlessActivityAllBonusRewardScRsp => { - "CmdTakeRogueEndlessActivityAllBonusRewardScRsp" - } - Self::CmdGetRogueEndlessActivityDataCsReq => { - "CmdGetRogueEndlessActivityDataCsReq" - } + Self::ActivityBattleEndScNotify => "CmdRogueEndlessActivityBattleEndScNotify", Self::CmdTakeRogueEndlessActivityPointRewardScRsp => { "CmdTakeRogueEndlessActivityPointRewardScRsp" } - Self::CmdEnterRogueEndlessActivityStageCsReq => { - "CmdEnterRogueEndlessActivityStageCsReq" - } Self::CmdGetRogueEndlessActivityDataScRsp => { "CmdGetRogueEndlessActivityDataScRsp" } - Self::ActivityBattleEndScNotify => "CmdRogueEndlessActivityBattleEndScNotify", - Self::CmdTakeRogueEndlessActivityAllBonusRewardCsReq => { - "CmdTakeRogueEndlessActivityAllBonusRewardCsReq" - } Self::CmdTakeRogueEndlessActivityPointRewardCsReq => { "CmdTakeRogueEndlessActivityPointRewardCsReq" } + Self::CmdTakeRogueEndlessActivityAllBonusRewardCsReq => { + "CmdTakeRogueEndlessActivityAllBonusRewardCsReq" + } + Self::CmdGetRogueEndlessActivityDataCsReq => { + "CmdGetRogueEndlessActivityDataCsReq" + } + Self::CmdTakeRogueEndlessActivityAllBonusRewardScRsp => { + "CmdTakeRogueEndlessActivityAllBonusRewardScRsp" + } Self::CmdEnterRogueEndlessActivityStageScRsp => { "CmdEnterRogueEndlessActivityStageScRsp" } + Self::CmdEnterRogueEndlessActivityStageCsReq => { + "CmdEnterRogueEndlessActivityStageCsReq" + } } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdRogueEndlessNone" => Some(Self::None), - "CmdTakeRogueEndlessActivityAllBonusRewardScRsp" => { - Some(Self::CmdTakeRogueEndlessActivityAllBonusRewardScRsp) - } - "CmdGetRogueEndlessActivityDataCsReq" => { - Some(Self::CmdGetRogueEndlessActivityDataCsReq) + "CmdRogueEndlessActivityBattleEndScNotify" => { + Some(Self::ActivityBattleEndScNotify) } "CmdTakeRogueEndlessActivityPointRewardScRsp" => { Some(Self::CmdTakeRogueEndlessActivityPointRewardScRsp) } - "CmdEnterRogueEndlessActivityStageCsReq" => { - Some(Self::CmdEnterRogueEndlessActivityStageCsReq) - } "CmdGetRogueEndlessActivityDataScRsp" => { Some(Self::CmdGetRogueEndlessActivityDataScRsp) } - "CmdRogueEndlessActivityBattleEndScNotify" => { - Some(Self::ActivityBattleEndScNotify) - } - "CmdTakeRogueEndlessActivityAllBonusRewardCsReq" => { - Some(Self::CmdTakeRogueEndlessActivityAllBonusRewardCsReq) - } "CmdTakeRogueEndlessActivityPointRewardCsReq" => { Some(Self::CmdTakeRogueEndlessActivityPointRewardCsReq) } + "CmdTakeRogueEndlessActivityAllBonusRewardCsReq" => { + Some(Self::CmdTakeRogueEndlessActivityAllBonusRewardCsReq) + } + "CmdGetRogueEndlessActivityDataCsReq" => { + Some(Self::CmdGetRogueEndlessActivityDataCsReq) + } + "CmdTakeRogueEndlessActivityAllBonusRewardScRsp" => { + Some(Self::CmdTakeRogueEndlessActivityAllBonusRewardScRsp) + } "CmdEnterRogueEndlessActivityStageScRsp" => { Some(Self::CmdEnterRogueEndlessActivityStageScRsp) } + "CmdEnterRogueEndlessActivityStageCsReq" => { + Some(Self::CmdEnterRogueEndlessActivityStageCsReq) + } _ => None, } } @@ -58093,46 +60424,46 @@ impl CmdRogueEndless { #[repr(i32)] pub enum CmdRogueMagic { None = 0, - SetAutoDressInMagicUnitCsReq = 7724, - ScepterTakeOffUnitCsReq = 7711, - StartCsReq = 7795, - EnterCsReq = 7731, - ScepterDressInUnitScRsp = 7763, - AutoDressInMagicUnitChangeScNotify = 7713, - EnterScRsp = 7740, - ScepterDressInUnitCsReq = 7729, - EnterRoomCsReq = 7722, - QueryScRsp = 7758, - EnterLayerCsReq = 7772, - ReviveCostUpdateScNotify = 7743, - LevelInfoUpdateScNotify = 7716, - SettleScRsp = 7752, - SettleCsReq = 7771, - ScepterTakeOffUnitScRsp = 7793, - StartScRsp = 7732, - EnterRoomScRsp = 7756, - EnableTalentCsReq = 7751, - ReviveAvatarCsReq = 7733, - SetAutoDressInMagicUnitScRsp = 7757, - GetMiscRealTimeDataScRsp = 7798, - AreaUpdateScNotify = 7746, - EnterLayerScRsp = 7785, - UnitComposeScRsp = 7714, - LeaveCsReq = 7776, - AutoDressInUnitScRsp = 7706, - AutoDressInUnitCsReq = 7764, - ReviveAvatarScRsp = 7742, - BattleFailSettleInfoScNotify = 7739, - LeaveScRsp = 7748, - UnitReforgeCsReq = 7784, - QueryCsReq = 7777, - UnitReforgeScRsp = 7737, - GetTalentInfoCsReq = 7730, - StoryInfoUpdateScNotify = 7745, - GetTalentInfoScRsp = 7775, - UnitComposeCsReq = 7725, - GetMiscRealTimeDataCsReq = 7707, - EnableTalentScRsp = 7791, + ScepterDressInUnitScRsp = 7731, + EnableTalentCsReq = 7703, + EnterLayerCsReq = 7780, + StoryInfoUpdateScNotify = 7719, + EnterRoomCsReq = 7754, + SettleCsReq = 7770, + GetTalentInfoScRsp = 7769, + LeaveScRsp = 7721, + SetAutoDressInMagicUnitCsReq = 7728, + ScepterDressInUnitCsReq = 7706, + AutoDressInUnitScRsp = 7747, + QueryCsReq = 7736, + UnitReforgeScRsp = 7734, + EnterLayerScRsp = 7702, + StartScRsp = 7791, + ReviveCostUpdateScNotify = 7752, + BattleFailSettleInfoScNotify = 7738, + UnitReforgeCsReq = 7778, + AutoDressInMagicUnitChangeScNotify = 7755, + LevelInfoUpdateScNotify = 7705, + ScepterTakeOffUnitCsReq = 7744, + GetMiscRealTimeDataCsReq = 7722, + AreaUpdateScNotify = 7774, + EnterRoomScRsp = 7777, + LeaveCsReq = 7727, + GetTalentInfoCsReq = 7745, + AutoDressInUnitCsReq = 7718, + SettleScRsp = 7759, + QueryScRsp = 7787, + ReviveAvatarScRsp = 7794, + UnitComposeCsReq = 7741, + ScepterTakeOffUnitScRsp = 7749, + StartCsReq = 7720, + EnableTalentScRsp = 7724, + GetMiscRealTimeDataScRsp = 7740, + EnterCsReq = 7767, + UnitComposeScRsp = 7784, + EnterScRsp = 7739, + ReviveAvatarCsReq = 7768, + SetAutoDressInMagicUnitScRsp = 7723, } impl CmdRogueMagic { /// String value of the enum field names used in the ProtoBuf definition. @@ -58142,114 +60473,114 @@ impl CmdRogueMagic { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdRogueMagicNone", + Self::ScepterDressInUnitScRsp => "CmdRogueMagicScepterDressInUnitScRsp", + Self::EnableTalentCsReq => "CmdRogueMagicEnableTalentCsReq", + Self::EnterLayerCsReq => "CmdRogueMagicEnterLayerCsReq", + Self::StoryInfoUpdateScNotify => "CmdRogueMagicStoryInfoUpdateScNotify", + Self::EnterRoomCsReq => "CmdRogueMagicEnterRoomCsReq", + Self::SettleCsReq => "CmdRogueMagicSettleCsReq", + Self::GetTalentInfoScRsp => "CmdRogueMagicGetTalentInfoScRsp", + Self::LeaveScRsp => "CmdRogueMagicLeaveScRsp", Self::SetAutoDressInMagicUnitCsReq => { "CmdRogueMagicSetAutoDressInMagicUnitCsReq" } - Self::ScepterTakeOffUnitCsReq => "CmdRogueMagicScepterTakeOffUnitCsReq", - Self::StartCsReq => "CmdRogueMagicStartCsReq", - Self::EnterCsReq => "CmdRogueMagicEnterCsReq", - Self::ScepterDressInUnitScRsp => "CmdRogueMagicScepterDressInUnitScRsp", + Self::ScepterDressInUnitCsReq => "CmdRogueMagicScepterDressInUnitCsReq", + Self::AutoDressInUnitScRsp => "CmdRogueMagicAutoDressInUnitScRsp", + Self::QueryCsReq => "CmdRogueMagicQueryCsReq", + Self::UnitReforgeScRsp => "CmdRogueMagicUnitReforgeScRsp", + Self::EnterLayerScRsp => "CmdRogueMagicEnterLayerScRsp", + Self::StartScRsp => "CmdRogueMagicStartScRsp", + Self::ReviveCostUpdateScNotify => "CmdRogueMagicReviveCostUpdateScNotify", + Self::BattleFailSettleInfoScNotify => { + "CmdRogueMagicBattleFailSettleInfoScNotify" + } + Self::UnitReforgeCsReq => "CmdRogueMagicUnitReforgeCsReq", Self::AutoDressInMagicUnitChangeScNotify => { "CmdRogueMagicAutoDressInMagicUnitChangeScNotify" } - Self::EnterScRsp => "CmdRogueMagicEnterScRsp", - Self::ScepterDressInUnitCsReq => "CmdRogueMagicScepterDressInUnitCsReq", - Self::EnterRoomCsReq => "CmdRogueMagicEnterRoomCsReq", - Self::QueryScRsp => "CmdRogueMagicQueryScRsp", - Self::EnterLayerCsReq => "CmdRogueMagicEnterLayerCsReq", - Self::ReviveCostUpdateScNotify => "CmdRogueMagicReviveCostUpdateScNotify", Self::LevelInfoUpdateScNotify => "CmdRogueMagicLevelInfoUpdateScNotify", - Self::SettleScRsp => "CmdRogueMagicSettleScRsp", - Self::SettleCsReq => "CmdRogueMagicSettleCsReq", - Self::ScepterTakeOffUnitScRsp => "CmdRogueMagicScepterTakeOffUnitScRsp", - Self::StartScRsp => "CmdRogueMagicStartScRsp", + Self::ScepterTakeOffUnitCsReq => "CmdRogueMagicScepterTakeOffUnitCsReq", + Self::GetMiscRealTimeDataCsReq => "CmdRogueMagicGetMiscRealTimeDataCsReq", + Self::AreaUpdateScNotify => "CmdRogueMagicAreaUpdateScNotify", Self::EnterRoomScRsp => "CmdRogueMagicEnterRoomScRsp", - Self::EnableTalentCsReq => "CmdRogueMagicEnableTalentCsReq", + Self::LeaveCsReq => "CmdRogueMagicLeaveCsReq", + Self::GetTalentInfoCsReq => "CmdRogueMagicGetTalentInfoCsReq", + Self::AutoDressInUnitCsReq => "CmdRogueMagicAutoDressInUnitCsReq", + Self::SettleScRsp => "CmdRogueMagicSettleScRsp", + Self::QueryScRsp => "CmdRogueMagicQueryScRsp", + Self::ReviveAvatarScRsp => "CmdRogueMagicReviveAvatarScRsp", + Self::UnitComposeCsReq => "CmdRogueMagicUnitComposeCsReq", + Self::ScepterTakeOffUnitScRsp => "CmdRogueMagicScepterTakeOffUnitScRsp", + Self::StartCsReq => "CmdRogueMagicStartCsReq", + Self::EnableTalentScRsp => "CmdRogueMagicEnableTalentScRsp", + Self::GetMiscRealTimeDataScRsp => "CmdRogueMagicGetMiscRealTimeDataScRsp", + Self::EnterCsReq => "CmdRogueMagicEnterCsReq", + Self::UnitComposeScRsp => "CmdRogueMagicUnitComposeScRsp", + Self::EnterScRsp => "CmdRogueMagicEnterScRsp", Self::ReviveAvatarCsReq => "CmdRogueMagicReviveAvatarCsReq", Self::SetAutoDressInMagicUnitScRsp => { "CmdRogueMagicSetAutoDressInMagicUnitScRsp" } - Self::GetMiscRealTimeDataScRsp => "CmdRogueMagicGetMiscRealTimeDataScRsp", - Self::AreaUpdateScNotify => "CmdRogueMagicAreaUpdateScNotify", - Self::EnterLayerScRsp => "CmdRogueMagicEnterLayerScRsp", - Self::UnitComposeScRsp => "CmdRogueMagicUnitComposeScRsp", - Self::LeaveCsReq => "CmdRogueMagicLeaveCsReq", - Self::AutoDressInUnitScRsp => "CmdRogueMagicAutoDressInUnitScRsp", - Self::AutoDressInUnitCsReq => "CmdRogueMagicAutoDressInUnitCsReq", - Self::ReviveAvatarScRsp => "CmdRogueMagicReviveAvatarScRsp", - Self::BattleFailSettleInfoScNotify => { - "CmdRogueMagicBattleFailSettleInfoScNotify" - } - Self::LeaveScRsp => "CmdRogueMagicLeaveScRsp", - Self::UnitReforgeCsReq => "CmdRogueMagicUnitReforgeCsReq", - Self::QueryCsReq => "CmdRogueMagicQueryCsReq", - Self::UnitReforgeScRsp => "CmdRogueMagicUnitReforgeScRsp", - Self::GetTalentInfoCsReq => "CmdRogueMagicGetTalentInfoCsReq", - Self::StoryInfoUpdateScNotify => "CmdRogueMagicStoryInfoUpdateScNotify", - Self::GetTalentInfoScRsp => "CmdRogueMagicGetTalentInfoScRsp", - Self::UnitComposeCsReq => "CmdRogueMagicUnitComposeCsReq", - Self::GetMiscRealTimeDataCsReq => "CmdRogueMagicGetMiscRealTimeDataCsReq", - Self::EnableTalentScRsp => "CmdRogueMagicEnableTalentScRsp", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdRogueMagicNone" => Some(Self::None), + "CmdRogueMagicScepterDressInUnitScRsp" => Some(Self::ScepterDressInUnitScRsp), + "CmdRogueMagicEnableTalentCsReq" => Some(Self::EnableTalentCsReq), + "CmdRogueMagicEnterLayerCsReq" => Some(Self::EnterLayerCsReq), + "CmdRogueMagicStoryInfoUpdateScNotify" => Some(Self::StoryInfoUpdateScNotify), + "CmdRogueMagicEnterRoomCsReq" => Some(Self::EnterRoomCsReq), + "CmdRogueMagicSettleCsReq" => Some(Self::SettleCsReq), + "CmdRogueMagicGetTalentInfoScRsp" => Some(Self::GetTalentInfoScRsp), + "CmdRogueMagicLeaveScRsp" => Some(Self::LeaveScRsp), "CmdRogueMagicSetAutoDressInMagicUnitCsReq" => { Some(Self::SetAutoDressInMagicUnitCsReq) } - "CmdRogueMagicScepterTakeOffUnitCsReq" => Some(Self::ScepterTakeOffUnitCsReq), - "CmdRogueMagicStartCsReq" => Some(Self::StartCsReq), - "CmdRogueMagicEnterCsReq" => Some(Self::EnterCsReq), - "CmdRogueMagicScepterDressInUnitScRsp" => Some(Self::ScepterDressInUnitScRsp), - "CmdRogueMagicAutoDressInMagicUnitChangeScNotify" => { - Some(Self::AutoDressInMagicUnitChangeScNotify) - } - "CmdRogueMagicEnterScRsp" => Some(Self::EnterScRsp), "CmdRogueMagicScepterDressInUnitCsReq" => Some(Self::ScepterDressInUnitCsReq), - "CmdRogueMagicEnterRoomCsReq" => Some(Self::EnterRoomCsReq), - "CmdRogueMagicQueryScRsp" => Some(Self::QueryScRsp), - "CmdRogueMagicEnterLayerCsReq" => Some(Self::EnterLayerCsReq), + "CmdRogueMagicAutoDressInUnitScRsp" => Some(Self::AutoDressInUnitScRsp), + "CmdRogueMagicQueryCsReq" => Some(Self::QueryCsReq), + "CmdRogueMagicUnitReforgeScRsp" => Some(Self::UnitReforgeScRsp), + "CmdRogueMagicEnterLayerScRsp" => Some(Self::EnterLayerScRsp), + "CmdRogueMagicStartScRsp" => Some(Self::StartScRsp), "CmdRogueMagicReviveCostUpdateScNotify" => { Some(Self::ReviveCostUpdateScNotify) } + "CmdRogueMagicBattleFailSettleInfoScNotify" => { + Some(Self::BattleFailSettleInfoScNotify) + } + "CmdRogueMagicUnitReforgeCsReq" => Some(Self::UnitReforgeCsReq), + "CmdRogueMagicAutoDressInMagicUnitChangeScNotify" => { + Some(Self::AutoDressInMagicUnitChangeScNotify) + } "CmdRogueMagicLevelInfoUpdateScNotify" => Some(Self::LevelInfoUpdateScNotify), - "CmdRogueMagicSettleScRsp" => Some(Self::SettleScRsp), - "CmdRogueMagicSettleCsReq" => Some(Self::SettleCsReq), - "CmdRogueMagicScepterTakeOffUnitScRsp" => Some(Self::ScepterTakeOffUnitScRsp), - "CmdRogueMagicStartScRsp" => Some(Self::StartScRsp), + "CmdRogueMagicScepterTakeOffUnitCsReq" => Some(Self::ScepterTakeOffUnitCsReq), + "CmdRogueMagicGetMiscRealTimeDataCsReq" => { + Some(Self::GetMiscRealTimeDataCsReq) + } + "CmdRogueMagicAreaUpdateScNotify" => Some(Self::AreaUpdateScNotify), "CmdRogueMagicEnterRoomScRsp" => Some(Self::EnterRoomScRsp), - "CmdRogueMagicEnableTalentCsReq" => Some(Self::EnableTalentCsReq), + "CmdRogueMagicLeaveCsReq" => Some(Self::LeaveCsReq), + "CmdRogueMagicGetTalentInfoCsReq" => Some(Self::GetTalentInfoCsReq), + "CmdRogueMagicAutoDressInUnitCsReq" => Some(Self::AutoDressInUnitCsReq), + "CmdRogueMagicSettleScRsp" => Some(Self::SettleScRsp), + "CmdRogueMagicQueryScRsp" => Some(Self::QueryScRsp), + "CmdRogueMagicReviveAvatarScRsp" => Some(Self::ReviveAvatarScRsp), + "CmdRogueMagicUnitComposeCsReq" => Some(Self::UnitComposeCsReq), + "CmdRogueMagicScepterTakeOffUnitScRsp" => Some(Self::ScepterTakeOffUnitScRsp), + "CmdRogueMagicStartCsReq" => Some(Self::StartCsReq), + "CmdRogueMagicEnableTalentScRsp" => Some(Self::EnableTalentScRsp), + "CmdRogueMagicGetMiscRealTimeDataScRsp" => { + Some(Self::GetMiscRealTimeDataScRsp) + } + "CmdRogueMagicEnterCsReq" => Some(Self::EnterCsReq), + "CmdRogueMagicUnitComposeScRsp" => Some(Self::UnitComposeScRsp), + "CmdRogueMagicEnterScRsp" => Some(Self::EnterScRsp), "CmdRogueMagicReviveAvatarCsReq" => Some(Self::ReviveAvatarCsReq), "CmdRogueMagicSetAutoDressInMagicUnitScRsp" => { Some(Self::SetAutoDressInMagicUnitScRsp) } - "CmdRogueMagicGetMiscRealTimeDataScRsp" => { - Some(Self::GetMiscRealTimeDataScRsp) - } - "CmdRogueMagicAreaUpdateScNotify" => Some(Self::AreaUpdateScNotify), - "CmdRogueMagicEnterLayerScRsp" => Some(Self::EnterLayerScRsp), - "CmdRogueMagicUnitComposeScRsp" => Some(Self::UnitComposeScRsp), - "CmdRogueMagicLeaveCsReq" => Some(Self::LeaveCsReq), - "CmdRogueMagicAutoDressInUnitScRsp" => Some(Self::AutoDressInUnitScRsp), - "CmdRogueMagicAutoDressInUnitCsReq" => Some(Self::AutoDressInUnitCsReq), - "CmdRogueMagicReviveAvatarScRsp" => Some(Self::ReviveAvatarScRsp), - "CmdRogueMagicBattleFailSettleInfoScNotify" => { - Some(Self::BattleFailSettleInfoScNotify) - } - "CmdRogueMagicLeaveScRsp" => Some(Self::LeaveScRsp), - "CmdRogueMagicUnitReforgeCsReq" => Some(Self::UnitReforgeCsReq), - "CmdRogueMagicQueryCsReq" => Some(Self::QueryCsReq), - "CmdRogueMagicUnitReforgeScRsp" => Some(Self::UnitReforgeScRsp), - "CmdRogueMagicGetTalentInfoCsReq" => Some(Self::GetTalentInfoCsReq), - "CmdRogueMagicStoryInfoUpdateScNotify" => Some(Self::StoryInfoUpdateScNotify), - "CmdRogueMagicGetTalentInfoScRsp" => Some(Self::GetTalentInfoScRsp), - "CmdRogueMagicUnitComposeCsReq" => Some(Self::UnitComposeCsReq), - "CmdRogueMagicGetMiscRealTimeDataCsReq" => { - Some(Self::GetMiscRealTimeDataCsReq) - } - "CmdRogueMagicEnableTalentScRsp" => Some(Self::EnableTalentScRsp), _ => None, } } @@ -58407,12 +60738,12 @@ impl Jmpphgigffi { #[repr(i32)] pub enum CmdRogueModifierType { None = 0, - CmdRogueModifierSelectCellScRsp = 5376, - CmdRogueModifierDelNotify = 5322, - CmdRogueModifierUpdateNotify = 5352, - CmdRogueModifierStageStartNotify = 5356, - CmdRogueModifierAddNotify = 5331, - CmdRogueModifierSelectCellCsReq = 5340, + CmdRogueModifierStageStartNotify = 5377, + CmdRogueModifierUpdateNotify = 5359, + CmdRogueModifierAddNotify = 5367, + CmdRogueModifierDelNotify = 5354, + CmdRogueModifierSelectCellScRsp = 5327, + CmdRogueModifierSelectCellCsReq = 5339, } impl CmdRogueModifierType { /// String value of the enum field names used in the ProtoBuf definition. @@ -58422,11 +60753,11 @@ impl CmdRogueModifierType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdRogueModifierTypeNone", - Self::CmdRogueModifierSelectCellScRsp => "CmdRogueModifierSelectCellScRsp", - Self::CmdRogueModifierDelNotify => "CmdRogueModifierDelNotify", - Self::CmdRogueModifierUpdateNotify => "CmdRogueModifierUpdateNotify", Self::CmdRogueModifierStageStartNotify => "CmdRogueModifierStageStartNotify", + Self::CmdRogueModifierUpdateNotify => "CmdRogueModifierUpdateNotify", Self::CmdRogueModifierAddNotify => "CmdRogueModifierAddNotify", + Self::CmdRogueModifierDelNotify => "CmdRogueModifierDelNotify", + Self::CmdRogueModifierSelectCellScRsp => "CmdRogueModifierSelectCellScRsp", Self::CmdRogueModifierSelectCellCsReq => "CmdRogueModifierSelectCellCsReq", } } @@ -58434,15 +60765,15 @@ impl CmdRogueModifierType { pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdRogueModifierTypeNone" => Some(Self::None), - "CmdRogueModifierSelectCellScRsp" => { - Some(Self::CmdRogueModifierSelectCellScRsp) - } - "CmdRogueModifierDelNotify" => Some(Self::CmdRogueModifierDelNotify), - "CmdRogueModifierUpdateNotify" => Some(Self::CmdRogueModifierUpdateNotify), "CmdRogueModifierStageStartNotify" => { Some(Self::CmdRogueModifierStageStartNotify) } + "CmdRogueModifierUpdateNotify" => Some(Self::CmdRogueModifierUpdateNotify), "CmdRogueModifierAddNotify" => Some(Self::CmdRogueModifierAddNotify), + "CmdRogueModifierDelNotify" => Some(Self::CmdRogueModifierDelNotify), + "CmdRogueModifierSelectCellScRsp" => { + Some(Self::CmdRogueModifierSelectCellScRsp) + } "CmdRogueModifierSelectCellCsReq" => { Some(Self::CmdRogueModifierSelectCellCsReq) } @@ -58544,74 +60875,74 @@ impl Njchljfiodm { #[repr(i32)] pub enum CmdRogueTournType { None = 0, - CmdRogueTournGetArchiveRepositoryCsReq = 6074, - CmdRogueTournAreaUpdateScNotify = 6040, - CmdRogueTournLeaveCsReq = 6026, - CmdRogueTournGetMiscRealTimeDataCsReq = 6045, - CmdRogueTournConfirmSettleCsReq = 6088, - CmdRogueTournDeleteArchiveCsReq = 6043, - CmdRogueTournDeleteBuildRefScRsp = 6083, - CmdRogueTournGetCurRogueCocoonInfoCsReq = 6055, - CmdRogueTournRenameArchiveCsReq = 6024, - CmdRogueTournReEnterRogueCocoonStageCsReq = 6027, - CmdRogueTournStartCsReq = 6032, - CmdRogueTournEnterLayerScRsp = 6073, - CmdRogueTournEnablePermanentTalentScRsp = 6058, - CmdRogueTournQueryCsReq = 6095, - CmdRogueTournRenameArchiveScRsp = 6093, - CmdRogueTournSaveBuildRefScRsp = 6020, - CmdRogueTournTakeExpRewardScRsp = 6094, - CmdRogueTournGetCurRogueCocoonInfoScRsp = 6063, - CmdRogueTournConfirmSettleScRsp = 6090, - CmdRogueTournReEnterRogueCocoonStageScRsp = 6016, - CmdRogueTournExpNotify = 6030, - CmdRogueTournEnterCsReq = 6064, - CmdRogueTournStartScRsp = 6078, - CmdRogueTournQueryScRsp = 6052, - CmdRogueTournRenameBuildRefScRsp = 6028, - CmdRogueTournEnableSeasonTalentScRsp = 6041, - CmdRogueTournLeaveScRsp = 6042, - CmdRogueTournTitanUpdateTitanBlessProgressScNotify = 6053, - CmdRogueTournWeekChallengeUpdateScNotify = 6018, - CmdRogueTournEnterLayerCsReq = 6081, + CmdRogueTournGetSettleInfoCsReq = 6069, + CmdRogueTournSaveBuildRefScRsp = 6083, + CmdRogueTournGetPermanentTalentInfoCsReq = 6028, + CmdRogueTournResetPermanentTalentScRsp = 6012, + CmdRogueTournGetSettleInfoScRsp = 6047, + CmdRogueTournStartCsReq = 6080, + CmdRogueTournWeekChallengeUpdateScNotify = 6043, + CmdRogueTournDifficultyCompNotify = 6072, + CmdRogueTournQueryScRsp = 6058, CmdRogueTournEnableSeasonTalentCsReq = 6019, - CmdRogueTournGetAllBuildRefCsReq = 6035, - CmdRogueTournSaveBuildRefCsReq = 6012, - CmdRogueTournTakeExpRewardCsReq = 6039, - CmdRogueTournClearArchiveNameScNotify = 6082, - CmdRogueTournDeleteArchiveScRsp = 6049, - CmdRogueTournGetSeasonTalentInfoCsReq = 6079, - CmdRogueTournEnterRogueCocoonSceneScRsp = 6062, - CmdRogueTournGetAllBuildRefScRsp = 6046, - CmdRogueTournReviveAvatarCsReq = 6098, - CmdRogueTournBattleFailSettleInfoScNotify = 6037, - CmdRogueTournGetSeasonTalentInfoScRsp = 6097, - CmdRogueTournEnablePermanentTalentCsReq = 6013, - CmdRogueTournEnterRoomScRsp = 6061, - CmdRogueTournLevelInfoUpdateScNotify = 6087, - CmdRogueTournReviveAvatarScRsp = 6047, - CmdRogueTournResetPermanentTalentScRsp = 6089, - CmdRogueTournSettleCsReq = 6080, - CmdRogueTournEnterScRsp = 6070, - CmdRogueTournDeleteBuildRefCsReq = 6085, - CmdRogueTournReviveCostUpdateScNotify = 6086, - CmdRogueTournGetPermanentTalentInfoCsReq = 6099, - CmdRogueTournSettleScRsp = 6056, - CmdRogueTournResetPermanentTalentCsReq = 6031, - CmdRogueTournDifficultyCompNotify = 6050, - CmdRogueTournGetPermanentTalentInfoScRsp = 6067, - CmdRogueTournEnterRogueCocoonSceneCsReq = 6034, - CmdRogueTournLeaveRogueCocoonSceneScRsp = 6066, - CmdRogueTournEnterRoomCsReq = 6084, - CmdRogueTournGetSettleInfoCsReq = 6068, - CmdRogueTournLeaveRogueCocoonSceneCsReq = 6017, - CmdRogueTournGetSettleInfoScRsp = 6059, - CmdRogueTournGetAllArchiveCsReq = 6021, - CmdRogueTournGetAllArchiveScRsp = 6100, - CmdRogueTournGetArchiveRepositoryScRsp = 6011, - CmdRogueTournRenameBuildRefCsReq = 6014, - CmdRogueTournHandBookNotify = 6023, - CmdRogueTournGetMiscRealTimeDataScRsp = 6044, + CmdRogueTournEnterRogueCocoonSceneCsReq = 6029, + CmdRogueTournRenameBuildRefCsReq = 6061, + CmdRogueTournConfirmSettleCsReq = 6040, + CmdRogueTournGetAllBuildRefScRsp = 6057, + CmdRogueTournDeleteBuildRefScRsp = 6021, + CmdRogueTournExpNotify = 6026, + CmdRogueTournGetMiscRealTimeDataScRsp = 6034, + CmdRogueTournGetAllArchiveCsReq = 6037, + CmdRogueTournStartScRsp = 6044, + CmdRogueTournClearArchiveNameScNotify = 6032, + CmdRogueTournEnterLayerScRsp = 6035, + CmdRogueTournLeaveCsReq = 6038, + CmdRogueTournSettleCsReq = 6048, + CmdRogueTournEnterLayerCsReq = 6074, + CmdRogueTournGetAllBuildRefCsReq = 6094, + CmdRogueTournLevelInfoUpdateScNotify = 6077, + CmdRogueTournDeleteBuildRefCsReq = 6042, + CmdRogueTournDeleteArchiveScRsp = 6030, + CmdRogueTournLeaveRogueCocoonSceneCsReq = 6085, + CmdRogueTournTakeExpRewardScRsp = 6015, + CmdRogueTournGetCurRogueCocoonInfoCsReq = 6093, + CmdRogueTournHandBookNotify = 6081, + CmdRogueTournResetPermanentTalentCsReq = 6046, + CmdRogueTournGetArchiveRepositoryCsReq = 6049, + CmdRogueTournGetSeasonTalentInfoScRsp = 6017, + CmdRogueTournEnterCsReq = 6065, + CmdRogueTournLeaveScRsp = 6096, + CmdRogueTournDeleteArchiveCsReq = 6089, + CmdRogueTournRenameBuildRefScRsp = 6066, + CmdRogueTournReEnterRogueCocoonStageCsReq = 6050, + CmdRogueTournEnterScRsp = 6073, + CmdRogueTournEnterRoomScRsp = 6031, + CmdRogueTournBattleFailSettleInfoScNotify = 6041, + CmdRogueTournQueryCsReq = 6095, + CmdRogueTournEnableSeasonTalentScRsp = 6090, + CmdRogueTournTitanUpdateTitanBlessProgressScNotify = 6016, + CmdRogueTournGetSeasonTalentInfoCsReq = 6078, + CmdRogueTournEnablePermanentTalentCsReq = 6063, + CmdRogueTournLeaveRogueCocoonSceneScRsp = 6059, + CmdRogueTournConfirmSettleScRsp = 6045, + CmdRogueTournRenameArchiveCsReq = 6088, + CmdRogueTournReviveAvatarScRsp = 6022, + CmdRogueTournReEnterRogueCocoonStageScRsp = 6051, + CmdRogueTournSaveBuildRefCsReq = 6054, + CmdRogueTournEnterRogueCocoonSceneScRsp = 6053, + CmdRogueTournGetArchiveRepositoryScRsp = 6087, + CmdRogueTournGetPermanentTalentInfoScRsp = 6079, + CmdRogueTournAreaUpdateScNotify = 6013, + CmdRogueTournReviveCostUpdateScNotify = 6070, + CmdRogueTournGetMiscRealTimeDataCsReq = 6067, + CmdRogueTournRenameArchiveScRsp = 6055, + CmdRogueTournTakeExpRewardCsReq = 6084, + CmdRogueTournEnterRoomCsReq = 6033, + CmdRogueTournEnablePermanentTalentScRsp = 6064, + CmdRogueTournSettleScRsp = 6062, + CmdRogueTournGetCurRogueCocoonInfoScRsp = 6036, + CmdRogueTournGetAllArchiveScRsp = 6024, + CmdRogueTournReviveAvatarCsReq = 6060, } impl CmdRogueTournType { /// String value of the enum field names used in the ProtoBuf definition. @@ -58621,309 +60952,309 @@ impl CmdRogueTournType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdRogueTournTypeNone", - Self::CmdRogueTournGetArchiveRepositoryCsReq => { - "CmdRogueTournGetArchiveRepositoryCsReq" - } - Self::CmdRogueTournAreaUpdateScNotify => "CmdRogueTournAreaUpdateScNotify", - Self::CmdRogueTournLeaveCsReq => "CmdRogueTournLeaveCsReq", - Self::CmdRogueTournGetMiscRealTimeDataCsReq => { - "CmdRogueTournGetMiscRealTimeDataCsReq" - } - Self::CmdRogueTournConfirmSettleCsReq => "CmdRogueTournConfirmSettleCsReq", - Self::CmdRogueTournDeleteArchiveCsReq => "CmdRogueTournDeleteArchiveCsReq", - Self::CmdRogueTournDeleteBuildRefScRsp => "CmdRogueTournDeleteBuildRefScRsp", - Self::CmdRogueTournGetCurRogueCocoonInfoCsReq => { - "CmdRogueTournGetCurRogueCocoonInfoCsReq" - } - Self::CmdRogueTournRenameArchiveCsReq => "CmdRogueTournRenameArchiveCsReq", - Self::CmdRogueTournReEnterRogueCocoonStageCsReq => { - "CmdRogueTournReEnterRogueCocoonStageCsReq" - } - Self::CmdRogueTournStartCsReq => "CmdRogueTournStartCsReq", - Self::CmdRogueTournEnterLayerScRsp => "CmdRogueTournEnterLayerScRsp", - Self::CmdRogueTournEnablePermanentTalentScRsp => { - "CmdRogueTournEnablePermanentTalentScRsp" - } - Self::CmdRogueTournQueryCsReq => "CmdRogueTournQueryCsReq", - Self::CmdRogueTournRenameArchiveScRsp => "CmdRogueTournRenameArchiveScRsp", + Self::CmdRogueTournGetSettleInfoCsReq => "CmdRogueTournGetSettleInfoCsReq", Self::CmdRogueTournSaveBuildRefScRsp => "CmdRogueTournSaveBuildRefScRsp", - Self::CmdRogueTournTakeExpRewardScRsp => "CmdRogueTournTakeExpRewardScRsp", - Self::CmdRogueTournGetCurRogueCocoonInfoScRsp => { - "CmdRogueTournGetCurRogueCocoonInfoScRsp" - } - Self::CmdRogueTournConfirmSettleScRsp => "CmdRogueTournConfirmSettleScRsp", - Self::CmdRogueTournReEnterRogueCocoonStageScRsp => { - "CmdRogueTournReEnterRogueCocoonStageScRsp" - } - Self::CmdRogueTournExpNotify => "CmdRogueTournExpNotify", - Self::CmdRogueTournEnterCsReq => "CmdRogueTournEnterCsReq", - Self::CmdRogueTournStartScRsp => "CmdRogueTournStartScRsp", - Self::CmdRogueTournQueryScRsp => "CmdRogueTournQueryScRsp", - Self::CmdRogueTournRenameBuildRefScRsp => "CmdRogueTournRenameBuildRefScRsp", - Self::CmdRogueTournEnableSeasonTalentScRsp => { - "CmdRogueTournEnableSeasonTalentScRsp" - } - Self::CmdRogueTournLeaveScRsp => "CmdRogueTournLeaveScRsp", - Self::CmdRogueTournTitanUpdateTitanBlessProgressScNotify => { - "CmdRogueTournTitanUpdateTitanBlessProgressScNotify" - } - Self::CmdRogueTournWeekChallengeUpdateScNotify => { - "CmdRogueTournWeekChallengeUpdateScNotify" - } - Self::CmdRogueTournEnterLayerCsReq => "CmdRogueTournEnterLayerCsReq", - Self::CmdRogueTournEnableSeasonTalentCsReq => { - "CmdRogueTournEnableSeasonTalentCsReq" - } - Self::CmdRogueTournGetAllBuildRefCsReq => "CmdRogueTournGetAllBuildRefCsReq", - Self::CmdRogueTournSaveBuildRefCsReq => "CmdRogueTournSaveBuildRefCsReq", - Self::CmdRogueTournTakeExpRewardCsReq => "CmdRogueTournTakeExpRewardCsReq", - Self::CmdRogueTournClearArchiveNameScNotify => { - "CmdRogueTournClearArchiveNameScNotify" - } - Self::CmdRogueTournDeleteArchiveScRsp => "CmdRogueTournDeleteArchiveScRsp", - Self::CmdRogueTournGetSeasonTalentInfoCsReq => { - "CmdRogueTournGetSeasonTalentInfoCsReq" - } - Self::CmdRogueTournEnterRogueCocoonSceneScRsp => { - "CmdRogueTournEnterRogueCocoonSceneScRsp" - } - Self::CmdRogueTournGetAllBuildRefScRsp => "CmdRogueTournGetAllBuildRefScRsp", - Self::CmdRogueTournReviveAvatarCsReq => "CmdRogueTournReviveAvatarCsReq", - Self::CmdRogueTournBattleFailSettleInfoScNotify => { - "CmdRogueTournBattleFailSettleInfoScNotify" - } - Self::CmdRogueTournGetSeasonTalentInfoScRsp => { - "CmdRogueTournGetSeasonTalentInfoScRsp" - } - Self::CmdRogueTournEnablePermanentTalentCsReq => { - "CmdRogueTournEnablePermanentTalentCsReq" - } - Self::CmdRogueTournEnterRoomScRsp => "CmdRogueTournEnterRoomScRsp", - Self::CmdRogueTournLevelInfoUpdateScNotify => { - "CmdRogueTournLevelInfoUpdateScNotify" - } - Self::CmdRogueTournReviveAvatarScRsp => "CmdRogueTournReviveAvatarScRsp", - Self::CmdRogueTournResetPermanentTalentScRsp => { - "CmdRogueTournResetPermanentTalentScRsp" - } - Self::CmdRogueTournSettleCsReq => "CmdRogueTournSettleCsReq", - Self::CmdRogueTournEnterScRsp => "CmdRogueTournEnterScRsp", - Self::CmdRogueTournDeleteBuildRefCsReq => "CmdRogueTournDeleteBuildRefCsReq", - Self::CmdRogueTournReviveCostUpdateScNotify => { - "CmdRogueTournReviveCostUpdateScNotify" - } Self::CmdRogueTournGetPermanentTalentInfoCsReq => { "CmdRogueTournGetPermanentTalentInfoCsReq" } - Self::CmdRogueTournSettleScRsp => "CmdRogueTournSettleScRsp", - Self::CmdRogueTournResetPermanentTalentCsReq => { - "CmdRogueTournResetPermanentTalentCsReq" + Self::CmdRogueTournResetPermanentTalentScRsp => { + "CmdRogueTournResetPermanentTalentScRsp" + } + Self::CmdRogueTournGetSettleInfoScRsp => "CmdRogueTournGetSettleInfoScRsp", + Self::CmdRogueTournStartCsReq => "CmdRogueTournStartCsReq", + Self::CmdRogueTournWeekChallengeUpdateScNotify => { + "CmdRogueTournWeekChallengeUpdateScNotify" } Self::CmdRogueTournDifficultyCompNotify => { "CmdRogueTournDifficultyCompNotify" } - Self::CmdRogueTournGetPermanentTalentInfoScRsp => { - "CmdRogueTournGetPermanentTalentInfoScRsp" + Self::CmdRogueTournQueryScRsp => "CmdRogueTournQueryScRsp", + Self::CmdRogueTournEnableSeasonTalentCsReq => { + "CmdRogueTournEnableSeasonTalentCsReq" } Self::CmdRogueTournEnterRogueCocoonSceneCsReq => { "CmdRogueTournEnterRogueCocoonSceneCsReq" } - Self::CmdRogueTournLeaveRogueCocoonSceneScRsp => { - "CmdRogueTournLeaveRogueCocoonSceneScRsp" - } - Self::CmdRogueTournEnterRoomCsReq => "CmdRogueTournEnterRoomCsReq", - Self::CmdRogueTournGetSettleInfoCsReq => "CmdRogueTournGetSettleInfoCsReq", - Self::CmdRogueTournLeaveRogueCocoonSceneCsReq => { - "CmdRogueTournLeaveRogueCocoonSceneCsReq" - } - Self::CmdRogueTournGetSettleInfoScRsp => "CmdRogueTournGetSettleInfoScRsp", - Self::CmdRogueTournGetAllArchiveCsReq => "CmdRogueTournGetAllArchiveCsReq", - Self::CmdRogueTournGetAllArchiveScRsp => "CmdRogueTournGetAllArchiveScRsp", - Self::CmdRogueTournGetArchiveRepositoryScRsp => { - "CmdRogueTournGetArchiveRepositoryScRsp" - } Self::CmdRogueTournRenameBuildRefCsReq => "CmdRogueTournRenameBuildRefCsReq", - Self::CmdRogueTournHandBookNotify => "CmdRogueTournHandBookNotify", + Self::CmdRogueTournConfirmSettleCsReq => "CmdRogueTournConfirmSettleCsReq", + Self::CmdRogueTournGetAllBuildRefScRsp => "CmdRogueTournGetAllBuildRefScRsp", + Self::CmdRogueTournDeleteBuildRefScRsp => "CmdRogueTournDeleteBuildRefScRsp", + Self::CmdRogueTournExpNotify => "CmdRogueTournExpNotify", Self::CmdRogueTournGetMiscRealTimeDataScRsp => { "CmdRogueTournGetMiscRealTimeDataScRsp" } + Self::CmdRogueTournGetAllArchiveCsReq => "CmdRogueTournGetAllArchiveCsReq", + Self::CmdRogueTournStartScRsp => "CmdRogueTournStartScRsp", + Self::CmdRogueTournClearArchiveNameScNotify => { + "CmdRogueTournClearArchiveNameScNotify" + } + Self::CmdRogueTournEnterLayerScRsp => "CmdRogueTournEnterLayerScRsp", + Self::CmdRogueTournLeaveCsReq => "CmdRogueTournLeaveCsReq", + Self::CmdRogueTournSettleCsReq => "CmdRogueTournSettleCsReq", + Self::CmdRogueTournEnterLayerCsReq => "CmdRogueTournEnterLayerCsReq", + Self::CmdRogueTournGetAllBuildRefCsReq => "CmdRogueTournGetAllBuildRefCsReq", + Self::CmdRogueTournLevelInfoUpdateScNotify => { + "CmdRogueTournLevelInfoUpdateScNotify" + } + Self::CmdRogueTournDeleteBuildRefCsReq => "CmdRogueTournDeleteBuildRefCsReq", + Self::CmdRogueTournDeleteArchiveScRsp => "CmdRogueTournDeleteArchiveScRsp", + Self::CmdRogueTournLeaveRogueCocoonSceneCsReq => { + "CmdRogueTournLeaveRogueCocoonSceneCsReq" + } + Self::CmdRogueTournTakeExpRewardScRsp => "CmdRogueTournTakeExpRewardScRsp", + Self::CmdRogueTournGetCurRogueCocoonInfoCsReq => { + "CmdRogueTournGetCurRogueCocoonInfoCsReq" + } + Self::CmdRogueTournHandBookNotify => "CmdRogueTournHandBookNotify", + Self::CmdRogueTournResetPermanentTalentCsReq => { + "CmdRogueTournResetPermanentTalentCsReq" + } + Self::CmdRogueTournGetArchiveRepositoryCsReq => { + "CmdRogueTournGetArchiveRepositoryCsReq" + } + Self::CmdRogueTournGetSeasonTalentInfoScRsp => { + "CmdRogueTournGetSeasonTalentInfoScRsp" + } + Self::CmdRogueTournEnterCsReq => "CmdRogueTournEnterCsReq", + Self::CmdRogueTournLeaveScRsp => "CmdRogueTournLeaveScRsp", + Self::CmdRogueTournDeleteArchiveCsReq => "CmdRogueTournDeleteArchiveCsReq", + Self::CmdRogueTournRenameBuildRefScRsp => "CmdRogueTournRenameBuildRefScRsp", + Self::CmdRogueTournReEnterRogueCocoonStageCsReq => { + "CmdRogueTournReEnterRogueCocoonStageCsReq" + } + Self::CmdRogueTournEnterScRsp => "CmdRogueTournEnterScRsp", + Self::CmdRogueTournEnterRoomScRsp => "CmdRogueTournEnterRoomScRsp", + Self::CmdRogueTournBattleFailSettleInfoScNotify => { + "CmdRogueTournBattleFailSettleInfoScNotify" + } + Self::CmdRogueTournQueryCsReq => "CmdRogueTournQueryCsReq", + Self::CmdRogueTournEnableSeasonTalentScRsp => { + "CmdRogueTournEnableSeasonTalentScRsp" + } + Self::CmdRogueTournTitanUpdateTitanBlessProgressScNotify => { + "CmdRogueTournTitanUpdateTitanBlessProgressScNotify" + } + Self::CmdRogueTournGetSeasonTalentInfoCsReq => { + "CmdRogueTournGetSeasonTalentInfoCsReq" + } + Self::CmdRogueTournEnablePermanentTalentCsReq => { + "CmdRogueTournEnablePermanentTalentCsReq" + } + Self::CmdRogueTournLeaveRogueCocoonSceneScRsp => { + "CmdRogueTournLeaveRogueCocoonSceneScRsp" + } + Self::CmdRogueTournConfirmSettleScRsp => "CmdRogueTournConfirmSettleScRsp", + Self::CmdRogueTournRenameArchiveCsReq => "CmdRogueTournRenameArchiveCsReq", + Self::CmdRogueTournReviveAvatarScRsp => "CmdRogueTournReviveAvatarScRsp", + Self::CmdRogueTournReEnterRogueCocoonStageScRsp => { + "CmdRogueTournReEnterRogueCocoonStageScRsp" + } + Self::CmdRogueTournSaveBuildRefCsReq => "CmdRogueTournSaveBuildRefCsReq", + Self::CmdRogueTournEnterRogueCocoonSceneScRsp => { + "CmdRogueTournEnterRogueCocoonSceneScRsp" + } + Self::CmdRogueTournGetArchiveRepositoryScRsp => { + "CmdRogueTournGetArchiveRepositoryScRsp" + } + Self::CmdRogueTournGetPermanentTalentInfoScRsp => { + "CmdRogueTournGetPermanentTalentInfoScRsp" + } + Self::CmdRogueTournAreaUpdateScNotify => "CmdRogueTournAreaUpdateScNotify", + Self::CmdRogueTournReviveCostUpdateScNotify => { + "CmdRogueTournReviveCostUpdateScNotify" + } + Self::CmdRogueTournGetMiscRealTimeDataCsReq => { + "CmdRogueTournGetMiscRealTimeDataCsReq" + } + Self::CmdRogueTournRenameArchiveScRsp => "CmdRogueTournRenameArchiveScRsp", + Self::CmdRogueTournTakeExpRewardCsReq => "CmdRogueTournTakeExpRewardCsReq", + Self::CmdRogueTournEnterRoomCsReq => "CmdRogueTournEnterRoomCsReq", + Self::CmdRogueTournEnablePermanentTalentScRsp => { + "CmdRogueTournEnablePermanentTalentScRsp" + } + Self::CmdRogueTournSettleScRsp => "CmdRogueTournSettleScRsp", + Self::CmdRogueTournGetCurRogueCocoonInfoScRsp => { + "CmdRogueTournGetCurRogueCocoonInfoScRsp" + } + Self::CmdRogueTournGetAllArchiveScRsp => "CmdRogueTournGetAllArchiveScRsp", + Self::CmdRogueTournReviveAvatarCsReq => "CmdRogueTournReviveAvatarCsReq", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdRogueTournTypeNone" => Some(Self::None), - "CmdRogueTournGetArchiveRepositoryCsReq" => { - Some(Self::CmdRogueTournGetArchiveRepositoryCsReq) - } - "CmdRogueTournAreaUpdateScNotify" => { - Some(Self::CmdRogueTournAreaUpdateScNotify) - } - "CmdRogueTournLeaveCsReq" => Some(Self::CmdRogueTournLeaveCsReq), - "CmdRogueTournGetMiscRealTimeDataCsReq" => { - Some(Self::CmdRogueTournGetMiscRealTimeDataCsReq) - } - "CmdRogueTournConfirmSettleCsReq" => { - Some(Self::CmdRogueTournConfirmSettleCsReq) - } - "CmdRogueTournDeleteArchiveCsReq" => { - Some(Self::CmdRogueTournDeleteArchiveCsReq) - } - "CmdRogueTournDeleteBuildRefScRsp" => { - Some(Self::CmdRogueTournDeleteBuildRefScRsp) - } - "CmdRogueTournGetCurRogueCocoonInfoCsReq" => { - Some(Self::CmdRogueTournGetCurRogueCocoonInfoCsReq) - } - "CmdRogueTournRenameArchiveCsReq" => { - Some(Self::CmdRogueTournRenameArchiveCsReq) - } - "CmdRogueTournReEnterRogueCocoonStageCsReq" => { - Some(Self::CmdRogueTournReEnterRogueCocoonStageCsReq) - } - "CmdRogueTournStartCsReq" => Some(Self::CmdRogueTournStartCsReq), - "CmdRogueTournEnterLayerScRsp" => Some(Self::CmdRogueTournEnterLayerScRsp), - "CmdRogueTournEnablePermanentTalentScRsp" => { - Some(Self::CmdRogueTournEnablePermanentTalentScRsp) - } - "CmdRogueTournQueryCsReq" => Some(Self::CmdRogueTournQueryCsReq), - "CmdRogueTournRenameArchiveScRsp" => { - Some(Self::CmdRogueTournRenameArchiveScRsp) + "CmdRogueTournGetSettleInfoCsReq" => { + Some(Self::CmdRogueTournGetSettleInfoCsReq) } "CmdRogueTournSaveBuildRefScRsp" => { Some(Self::CmdRogueTournSaveBuildRefScRsp) } - "CmdRogueTournTakeExpRewardScRsp" => { - Some(Self::CmdRogueTournTakeExpRewardScRsp) - } - "CmdRogueTournGetCurRogueCocoonInfoScRsp" => { - Some(Self::CmdRogueTournGetCurRogueCocoonInfoScRsp) - } - "CmdRogueTournConfirmSettleScRsp" => { - Some(Self::CmdRogueTournConfirmSettleScRsp) - } - "CmdRogueTournReEnterRogueCocoonStageScRsp" => { - Some(Self::CmdRogueTournReEnterRogueCocoonStageScRsp) - } - "CmdRogueTournExpNotify" => Some(Self::CmdRogueTournExpNotify), - "CmdRogueTournEnterCsReq" => Some(Self::CmdRogueTournEnterCsReq), - "CmdRogueTournStartScRsp" => Some(Self::CmdRogueTournStartScRsp), - "CmdRogueTournQueryScRsp" => Some(Self::CmdRogueTournQueryScRsp), - "CmdRogueTournRenameBuildRefScRsp" => { - Some(Self::CmdRogueTournRenameBuildRefScRsp) - } - "CmdRogueTournEnableSeasonTalentScRsp" => { - Some(Self::CmdRogueTournEnableSeasonTalentScRsp) - } - "CmdRogueTournLeaveScRsp" => Some(Self::CmdRogueTournLeaveScRsp), - "CmdRogueTournTitanUpdateTitanBlessProgressScNotify" => { - Some(Self::CmdRogueTournTitanUpdateTitanBlessProgressScNotify) - } - "CmdRogueTournWeekChallengeUpdateScNotify" => { - Some(Self::CmdRogueTournWeekChallengeUpdateScNotify) - } - "CmdRogueTournEnterLayerCsReq" => Some(Self::CmdRogueTournEnterLayerCsReq), - "CmdRogueTournEnableSeasonTalentCsReq" => { - Some(Self::CmdRogueTournEnableSeasonTalentCsReq) - } - "CmdRogueTournGetAllBuildRefCsReq" => { - Some(Self::CmdRogueTournGetAllBuildRefCsReq) - } - "CmdRogueTournSaveBuildRefCsReq" => { - Some(Self::CmdRogueTournSaveBuildRefCsReq) - } - "CmdRogueTournTakeExpRewardCsReq" => { - Some(Self::CmdRogueTournTakeExpRewardCsReq) - } - "CmdRogueTournClearArchiveNameScNotify" => { - Some(Self::CmdRogueTournClearArchiveNameScNotify) - } - "CmdRogueTournDeleteArchiveScRsp" => { - Some(Self::CmdRogueTournDeleteArchiveScRsp) - } - "CmdRogueTournGetSeasonTalentInfoCsReq" => { - Some(Self::CmdRogueTournGetSeasonTalentInfoCsReq) - } - "CmdRogueTournEnterRogueCocoonSceneScRsp" => { - Some(Self::CmdRogueTournEnterRogueCocoonSceneScRsp) - } - "CmdRogueTournGetAllBuildRefScRsp" => { - Some(Self::CmdRogueTournGetAllBuildRefScRsp) - } - "CmdRogueTournReviveAvatarCsReq" => { - Some(Self::CmdRogueTournReviveAvatarCsReq) - } - "CmdRogueTournBattleFailSettleInfoScNotify" => { - Some(Self::CmdRogueTournBattleFailSettleInfoScNotify) - } - "CmdRogueTournGetSeasonTalentInfoScRsp" => { - Some(Self::CmdRogueTournGetSeasonTalentInfoScRsp) - } - "CmdRogueTournEnablePermanentTalentCsReq" => { - Some(Self::CmdRogueTournEnablePermanentTalentCsReq) - } - "CmdRogueTournEnterRoomScRsp" => Some(Self::CmdRogueTournEnterRoomScRsp), - "CmdRogueTournLevelInfoUpdateScNotify" => { - Some(Self::CmdRogueTournLevelInfoUpdateScNotify) - } - "CmdRogueTournReviveAvatarScRsp" => { - Some(Self::CmdRogueTournReviveAvatarScRsp) + "CmdRogueTournGetPermanentTalentInfoCsReq" => { + Some(Self::CmdRogueTournGetPermanentTalentInfoCsReq) } "CmdRogueTournResetPermanentTalentScRsp" => { Some(Self::CmdRogueTournResetPermanentTalentScRsp) } - "CmdRogueTournSettleCsReq" => Some(Self::CmdRogueTournSettleCsReq), - "CmdRogueTournEnterScRsp" => Some(Self::CmdRogueTournEnterScRsp), - "CmdRogueTournDeleteBuildRefCsReq" => { - Some(Self::CmdRogueTournDeleteBuildRefCsReq) + "CmdRogueTournGetSettleInfoScRsp" => { + Some(Self::CmdRogueTournGetSettleInfoScRsp) } - "CmdRogueTournReviveCostUpdateScNotify" => { - Some(Self::CmdRogueTournReviveCostUpdateScNotify) - } - "CmdRogueTournGetPermanentTalentInfoCsReq" => { - Some(Self::CmdRogueTournGetPermanentTalentInfoCsReq) - } - "CmdRogueTournSettleScRsp" => Some(Self::CmdRogueTournSettleScRsp), - "CmdRogueTournResetPermanentTalentCsReq" => { - Some(Self::CmdRogueTournResetPermanentTalentCsReq) + "CmdRogueTournStartCsReq" => Some(Self::CmdRogueTournStartCsReq), + "CmdRogueTournWeekChallengeUpdateScNotify" => { + Some(Self::CmdRogueTournWeekChallengeUpdateScNotify) } "CmdRogueTournDifficultyCompNotify" => { Some(Self::CmdRogueTournDifficultyCompNotify) } - "CmdRogueTournGetPermanentTalentInfoScRsp" => { - Some(Self::CmdRogueTournGetPermanentTalentInfoScRsp) + "CmdRogueTournQueryScRsp" => Some(Self::CmdRogueTournQueryScRsp), + "CmdRogueTournEnableSeasonTalentCsReq" => { + Some(Self::CmdRogueTournEnableSeasonTalentCsReq) } "CmdRogueTournEnterRogueCocoonSceneCsReq" => { Some(Self::CmdRogueTournEnterRogueCocoonSceneCsReq) } - "CmdRogueTournLeaveRogueCocoonSceneScRsp" => { - Some(Self::CmdRogueTournLeaveRogueCocoonSceneScRsp) + "CmdRogueTournRenameBuildRefCsReq" => { + Some(Self::CmdRogueTournRenameBuildRefCsReq) } - "CmdRogueTournEnterRoomCsReq" => Some(Self::CmdRogueTournEnterRoomCsReq), - "CmdRogueTournGetSettleInfoCsReq" => { - Some(Self::CmdRogueTournGetSettleInfoCsReq) + "CmdRogueTournConfirmSettleCsReq" => { + Some(Self::CmdRogueTournConfirmSettleCsReq) } - "CmdRogueTournLeaveRogueCocoonSceneCsReq" => { - Some(Self::CmdRogueTournLeaveRogueCocoonSceneCsReq) + "CmdRogueTournGetAllBuildRefScRsp" => { + Some(Self::CmdRogueTournGetAllBuildRefScRsp) } - "CmdRogueTournGetSettleInfoScRsp" => { - Some(Self::CmdRogueTournGetSettleInfoScRsp) + "CmdRogueTournDeleteBuildRefScRsp" => { + Some(Self::CmdRogueTournDeleteBuildRefScRsp) + } + "CmdRogueTournExpNotify" => Some(Self::CmdRogueTournExpNotify), + "CmdRogueTournGetMiscRealTimeDataScRsp" => { + Some(Self::CmdRogueTournGetMiscRealTimeDataScRsp) } "CmdRogueTournGetAllArchiveCsReq" => { Some(Self::CmdRogueTournGetAllArchiveCsReq) } - "CmdRogueTournGetAllArchiveScRsp" => { - Some(Self::CmdRogueTournGetAllArchiveScRsp) + "CmdRogueTournStartScRsp" => Some(Self::CmdRogueTournStartScRsp), + "CmdRogueTournClearArchiveNameScNotify" => { + Some(Self::CmdRogueTournClearArchiveNameScNotify) + } + "CmdRogueTournEnterLayerScRsp" => Some(Self::CmdRogueTournEnterLayerScRsp), + "CmdRogueTournLeaveCsReq" => Some(Self::CmdRogueTournLeaveCsReq), + "CmdRogueTournSettleCsReq" => Some(Self::CmdRogueTournSettleCsReq), + "CmdRogueTournEnterLayerCsReq" => Some(Self::CmdRogueTournEnterLayerCsReq), + "CmdRogueTournGetAllBuildRefCsReq" => { + Some(Self::CmdRogueTournGetAllBuildRefCsReq) + } + "CmdRogueTournLevelInfoUpdateScNotify" => { + Some(Self::CmdRogueTournLevelInfoUpdateScNotify) + } + "CmdRogueTournDeleteBuildRefCsReq" => { + Some(Self::CmdRogueTournDeleteBuildRefCsReq) + } + "CmdRogueTournDeleteArchiveScRsp" => { + Some(Self::CmdRogueTournDeleteArchiveScRsp) + } + "CmdRogueTournLeaveRogueCocoonSceneCsReq" => { + Some(Self::CmdRogueTournLeaveRogueCocoonSceneCsReq) + } + "CmdRogueTournTakeExpRewardScRsp" => { + Some(Self::CmdRogueTournTakeExpRewardScRsp) + } + "CmdRogueTournGetCurRogueCocoonInfoCsReq" => { + Some(Self::CmdRogueTournGetCurRogueCocoonInfoCsReq) + } + "CmdRogueTournHandBookNotify" => Some(Self::CmdRogueTournHandBookNotify), + "CmdRogueTournResetPermanentTalentCsReq" => { + Some(Self::CmdRogueTournResetPermanentTalentCsReq) + } + "CmdRogueTournGetArchiveRepositoryCsReq" => { + Some(Self::CmdRogueTournGetArchiveRepositoryCsReq) + } + "CmdRogueTournGetSeasonTalentInfoScRsp" => { + Some(Self::CmdRogueTournGetSeasonTalentInfoScRsp) + } + "CmdRogueTournEnterCsReq" => Some(Self::CmdRogueTournEnterCsReq), + "CmdRogueTournLeaveScRsp" => Some(Self::CmdRogueTournLeaveScRsp), + "CmdRogueTournDeleteArchiveCsReq" => { + Some(Self::CmdRogueTournDeleteArchiveCsReq) + } + "CmdRogueTournRenameBuildRefScRsp" => { + Some(Self::CmdRogueTournRenameBuildRefScRsp) + } + "CmdRogueTournReEnterRogueCocoonStageCsReq" => { + Some(Self::CmdRogueTournReEnterRogueCocoonStageCsReq) + } + "CmdRogueTournEnterScRsp" => Some(Self::CmdRogueTournEnterScRsp), + "CmdRogueTournEnterRoomScRsp" => Some(Self::CmdRogueTournEnterRoomScRsp), + "CmdRogueTournBattleFailSettleInfoScNotify" => { + Some(Self::CmdRogueTournBattleFailSettleInfoScNotify) + } + "CmdRogueTournQueryCsReq" => Some(Self::CmdRogueTournQueryCsReq), + "CmdRogueTournEnableSeasonTalentScRsp" => { + Some(Self::CmdRogueTournEnableSeasonTalentScRsp) + } + "CmdRogueTournTitanUpdateTitanBlessProgressScNotify" => { + Some(Self::CmdRogueTournTitanUpdateTitanBlessProgressScNotify) + } + "CmdRogueTournGetSeasonTalentInfoCsReq" => { + Some(Self::CmdRogueTournGetSeasonTalentInfoCsReq) + } + "CmdRogueTournEnablePermanentTalentCsReq" => { + Some(Self::CmdRogueTournEnablePermanentTalentCsReq) + } + "CmdRogueTournLeaveRogueCocoonSceneScRsp" => { + Some(Self::CmdRogueTournLeaveRogueCocoonSceneScRsp) + } + "CmdRogueTournConfirmSettleScRsp" => { + Some(Self::CmdRogueTournConfirmSettleScRsp) + } + "CmdRogueTournRenameArchiveCsReq" => { + Some(Self::CmdRogueTournRenameArchiveCsReq) + } + "CmdRogueTournReviveAvatarScRsp" => { + Some(Self::CmdRogueTournReviveAvatarScRsp) + } + "CmdRogueTournReEnterRogueCocoonStageScRsp" => { + Some(Self::CmdRogueTournReEnterRogueCocoonStageScRsp) + } + "CmdRogueTournSaveBuildRefCsReq" => { + Some(Self::CmdRogueTournSaveBuildRefCsReq) + } + "CmdRogueTournEnterRogueCocoonSceneScRsp" => { + Some(Self::CmdRogueTournEnterRogueCocoonSceneScRsp) } "CmdRogueTournGetArchiveRepositoryScRsp" => { Some(Self::CmdRogueTournGetArchiveRepositoryScRsp) } - "CmdRogueTournRenameBuildRefCsReq" => { - Some(Self::CmdRogueTournRenameBuildRefCsReq) + "CmdRogueTournGetPermanentTalentInfoScRsp" => { + Some(Self::CmdRogueTournGetPermanentTalentInfoScRsp) } - "CmdRogueTournHandBookNotify" => Some(Self::CmdRogueTournHandBookNotify), - "CmdRogueTournGetMiscRealTimeDataScRsp" => { - Some(Self::CmdRogueTournGetMiscRealTimeDataScRsp) + "CmdRogueTournAreaUpdateScNotify" => { + Some(Self::CmdRogueTournAreaUpdateScNotify) + } + "CmdRogueTournReviveCostUpdateScNotify" => { + Some(Self::CmdRogueTournReviveCostUpdateScNotify) + } + "CmdRogueTournGetMiscRealTimeDataCsReq" => { + Some(Self::CmdRogueTournGetMiscRealTimeDataCsReq) + } + "CmdRogueTournRenameArchiveScRsp" => { + Some(Self::CmdRogueTournRenameArchiveScRsp) + } + "CmdRogueTournTakeExpRewardCsReq" => { + Some(Self::CmdRogueTournTakeExpRewardCsReq) + } + "CmdRogueTournEnterRoomCsReq" => Some(Self::CmdRogueTournEnterRoomCsReq), + "CmdRogueTournEnablePermanentTalentScRsp" => { + Some(Self::CmdRogueTournEnablePermanentTalentScRsp) + } + "CmdRogueTournSettleScRsp" => Some(Self::CmdRogueTournSettleScRsp), + "CmdRogueTournGetCurRogueCocoonInfoScRsp" => { + Some(Self::CmdRogueTournGetCurRogueCocoonInfoScRsp) + } + "CmdRogueTournGetAllArchiveScRsp" => { + Some(Self::CmdRogueTournGetAllArchiveScRsp) + } + "CmdRogueTournReviveAvatarCsReq" => { + Some(Self::CmdRogueTournReviveAvatarCsReq) } _ => None, } @@ -59132,12 +61463,12 @@ impl Ollchpfkhaa { #[repr(i32)] pub enum CmdRollShopType { None = 0, - CmdDoGachaInRollShopScRsp = 6910, - CmdTakeRollShopRewardScRsp = 6902, - CmdGetRollShopInfoCsReq = 6914, - CmdTakeRollShopRewardCsReq = 6904, - CmdGetRollShopInfoScRsp = 6913, - CmdDoGachaInRollShopCsReq = 6908, + CmdTakeRollShopRewardCsReq = 6907, + CmdDoGachaInRollShopScRsp = 6916, + CmdGetRollShopInfoCsReq = 6918, + CmdTakeRollShopRewardScRsp = 6911, + CmdDoGachaInRollShopCsReq = 6910, + CmdGetRollShopInfoScRsp = 6909, } impl CmdRollShopType { /// String value of the enum field names used in the ProtoBuf definition. @@ -59147,24 +61478,24 @@ impl CmdRollShopType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdRollShopTypeNone", - Self::CmdDoGachaInRollShopScRsp => "CmdDoGachaInRollShopScRsp", - Self::CmdTakeRollShopRewardScRsp => "CmdTakeRollShopRewardScRsp", - Self::CmdGetRollShopInfoCsReq => "CmdGetRollShopInfoCsReq", Self::CmdTakeRollShopRewardCsReq => "CmdTakeRollShopRewardCsReq", - Self::CmdGetRollShopInfoScRsp => "CmdGetRollShopInfoScRsp", + Self::CmdDoGachaInRollShopScRsp => "CmdDoGachaInRollShopScRsp", + Self::CmdGetRollShopInfoCsReq => "CmdGetRollShopInfoCsReq", + Self::CmdTakeRollShopRewardScRsp => "CmdTakeRollShopRewardScRsp", Self::CmdDoGachaInRollShopCsReq => "CmdDoGachaInRollShopCsReq", + Self::CmdGetRollShopInfoScRsp => "CmdGetRollShopInfoScRsp", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdRollShopTypeNone" => Some(Self::None), - "CmdDoGachaInRollShopScRsp" => Some(Self::CmdDoGachaInRollShopScRsp), - "CmdTakeRollShopRewardScRsp" => Some(Self::CmdTakeRollShopRewardScRsp), - "CmdGetRollShopInfoCsReq" => Some(Self::CmdGetRollShopInfoCsReq), "CmdTakeRollShopRewardCsReq" => Some(Self::CmdTakeRollShopRewardCsReq), - "CmdGetRollShopInfoScRsp" => Some(Self::CmdGetRollShopInfoScRsp), + "CmdDoGachaInRollShopScRsp" => Some(Self::CmdDoGachaInRollShopScRsp), + "CmdGetRollShopInfoCsReq" => Some(Self::CmdGetRollShopInfoCsReq), + "CmdTakeRollShopRewardScRsp" => Some(Self::CmdTakeRollShopRewardScRsp), "CmdDoGachaInRollShopCsReq" => Some(Self::CmdDoGachaInRollShopCsReq), + "CmdGetRollShopInfoScRsp" => Some(Self::CmdGetRollShopInfoScRsp), _ => None, } } @@ -59175,88 +61506,88 @@ impl CmdRollShopType { #[repr(i32)] pub enum CmdSceneType { None = 0, - CmdUpdateMechanismBarScNotify = 1468, - CmdSpringRefreshScRsp = 1443, - CmdSceneCastSkillCostMpScRsp = 1483, - CmdSceneEnterStageScRsp = 1421, - CmdSceneReviveAfterRebattleScRsp = 1463, - CmdGetUnlockTeleportScRsp = 1418, - CmdDeactivateFarmElementCsReq = 1445, - CmdSceneCastSkillScRsp = 1448, - CmdUnlockTeleportNotify = 1466, - CmdReturnLastTownScRsp = 1477, - CmdActivateFarmElementScRsp = 1420, - CmdUpdateGroupPropertyCsReq = 1461, - CmdSceneGroupRefreshScNotify = 1412, - CmdGroupStateChangeCsReq = 1428, - CmdRecoverAllLineupScRsp = 1475, - CmdStartCocoonStageCsReq = 1491, - CmdEntityBindPropCsReq = 1457, - CmdEnterSectionCsReq = 1411, - CmdInteractPropCsReq = 1431, - CmdSetClientPausedCsReq = 1498, - CmdSetGroupCustomSaveDataScRsp = 1453, - CmdReturnLastTownCsReq = 1442, - CmdRefreshTriggerByClientScRsp = 1488, - CmdSceneEntityTeleportCsReq = 1490, - CmdStartCocoonStageScRsp = 1424, - CmdUpdateGroupPropertyScRsp = 1459, - CmdGameplayCounterRecoverCsReq = 1441, - CmdReEnterLastElementStageCsReq = 1427, - CmdSceneEnterStageCsReq = 1458, - CmdGetCurSceneInfoScRsp = 1452, - CmdSceneUpdatePositionVersionNotify = 1485, - CmdSetCurInteractEntityCsReq = 1484, - CmdSetClientPausedScRsp = 1464, - CmdSyncEntityBuffChangeListScNotify = 1416, - CmdEnterSceneCsReq = 1469, - CmdGroupStateChangeScRsp = 1415, - CmdSetCurInteractEntityScRsp = 1437, - CmdEnteredSceneChangeScNotify = 1419, - CmdGetEnteredSceneScRsp = 1450, - CmdDeleteSummonUnitCsReq = 1405, - CmdSpringRefreshCsReq = 1439, - CmdGameplayCounterCountDownScRsp = 1467, - CmdDeactivateFarmElementScRsp = 1413, - CmdOpenChestScNotify = 1444, - CmdDeleteSummonUnitScRsp = 1482, - CmdSyncServerSceneChangeNotify = 1470, - CmdLastSpringRefreshTimeNotify = 1433, - CmdSceneEntityMoveScRsp = 1432, - CmdRefreshTriggerByClientScNotify = 1438, - CmdGameplayCounterCountDownCsReq = 1473, - CmdTrainWorldIdChangeScNotify = 1492, - CmdRecoverAllLineupCsReq = 1430, - CmdSceneCastSkillCostMpCsReq = 1446, - CmdEnterSceneScRsp = 1449, - CmdGameplayCounterRecoverScRsp = 1462, - CmdSceneReviveAfterRebattleCsReq = 1429, - CmdUnlockedAreaMapScNotify = 1447, - CmdChangePropTimelineInfoCsReq = 1422, - CmdGetSceneMapInfoScRsp = 1479, - CmdSavePointsInfoNotify = 1451, - CmdGetUnlockTeleportCsReq = 1404, - CmdUpdateFloorSavedValueNotify = 1426, - CmdGetSceneMapInfoCsReq = 1497, - CmdEnterSceneByServerScNotify = 1403, - CmdReEnterLastElementStageScRsp = 1474, - CmdEnterSectionScRsp = 1493, - CmdGroupStateChangeScNotify = 1455, - CmdSetGroupCustomSaveDataCsReq = 1401, - CmdSceneCastSkillMpUpdateScNotify = 1460, - CmdChangePropTimelineInfoScRsp = 1456, - CmdGameplayCounterUpdateScNotify = 1496, - CmdSceneCastSkillCsReq = 1476, - CmdInteractPropScRsp = 1440, - CmdGetEnteredSceneCsReq = 1480, - CmdSceneEntityMoveCsReq = 1495, - CmdGetCurSceneInfoCsReq = 1471, - CmdSceneEntityTeleportScRsp = 1417, - CmdSceneEntityMoveScNotify = 1472, - CmdActivateFarmElementCsReq = 1478, - CmdRefreshTriggerByClientCsReq = 1489, - CmdScenePlaneEventScNotify = 1410, - CmdEntityBindPropScRsp = 1407, + CmdSceneCastSkillCostMpScRsp = 1473, + CmdGameplayCounterCountDownCsReq = 1451, + CmdRecoverAllLineupScRsp = 1469, + CmdReturnLastTownScRsp = 1436, + CmdReEnterLastElementStageScRsp = 1433, + CmdSetCurInteractEntityScRsp = 1434, + CmdSetClientPausedCsReq = 1440, + CmdUnlockTeleportNotify = 1488, + CmdRefreshTriggerByClientCsReq = 1458, + CmdSpringRefreshCsReq = 1438, + CmdRecoverAllLineupCsReq = 1445, + CmdSetClientPausedScRsp = 1418, + CmdGetCurSceneInfoCsReq = 1470, + CmdGetUnlockTeleportScRsp = 1483, + CmdSceneReviveAfterRebattleScRsp = 1431, + CmdEntityBindPropScRsp = 1422, + CmdChangePropTimelineInfoCsReq = 1454, + CmdSceneGroupRefreshScNotify = 1479, + CmdGetSceneMapInfoCsReq = 1414, + CmdRefreshTriggerByClientScRsp = 1446, + CmdSceneEnterStageCsReq = 1487, + CmdDeleteSummonUnitCsReq = 1492, + CmdEntityBindPropCsReq = 1423, + CmdEnterSceneScRsp = 1443, + CmdGetUnlockTeleportCsReq = 1430, + CmdLastSpringRefreshTimeNotify = 1468, + CmdSetGroupCustomSaveDataScRsp = 1437, + CmdReEnterLastElementStageCsReq = 1453, + CmdDeleteSummonUnitScRsp = 1410, + CmdEnterSectionCsReq = 1444, + CmdSceneEntityMoveScRsp = 1491, + CmdRefreshTriggerByClientScNotify = 1442, + CmdSetCurInteractEntityCsReq = 1478, + CmdGroupStateChangeCsReq = 1461, + CmdSpringRefreshScRsp = 1452, + CmdOpenChestScNotify = 1432, + CmdSceneCastSkillMpUpdateScNotify = 1498, + CmdEnterSceneCsReq = 1425, + CmdSceneCastSkillScRsp = 1421, + CmdGetSceneMapInfoScRsp = 1486, + CmdSceneCastSkillCsReq = 1427, + CmdSceneEntityTeleportCsReq = 1407, + CmdSyncEntityBuffChangeListScNotify = 1405, + CmdStartCocoonStageCsReq = 1424, + CmdInteractPropScRsp = 1439, + CmdGroupStateChangeScRsp = 1408, + CmdUpdateGroupPropertyCsReq = 1429, + CmdGameplayCounterUpdateScNotify = 1401, + CmdActivateFarmElementScRsp = 1463, + CmdGroupStateChangeScNotify = 1497, + CmdGetEnteredSceneScRsp = 1417, + CmdGetEnteredSceneCsReq = 1466, + CmdTrainWorldIdChangeScNotify = 1415, + CmdUnlockedAreaMapScNotify = 1404, + CmdEnteredSceneChangeScNotify = 1500, + CmdReturnLastTownCsReq = 1494, + CmdEnterSectionScRsp = 1449, + CmdSetGroupCustomSaveDataCsReq = 1489, + CmdSceneEntityTeleportScRsp = 1448, + CmdSceneReviveAfterRebattleCsReq = 1406, + CmdGetCurSceneInfoScRsp = 1459, + CmdGameplayCounterCountDownScRsp = 1456, + CmdSavePointsInfoNotify = 1403, + CmdUpdateFloorSavedValueNotify = 1411, + CmdStartCocoonStageScRsp = 1428, + CmdGameplayCounterRecoverScRsp = 1499, + CmdSceneEntityMoveCsReq = 1420, + CmdSceneUpdatePositionVersionNotify = 1402, + CmdChangePropTimelineInfoScRsp = 1477, + CmdSceneEntityMoveScNotify = 1480, + CmdDeactivateFarmElementCsReq = 1419, + CmdScenePlaneEventScNotify = 1462, + CmdSceneEnterStageScRsp = 1409, + CmdInteractPropCsReq = 1467, + CmdUpdateGroupPropertyScRsp = 1413, + CmdDeactivateFarmElementScRsp = 1455, + CmdGameplayCounterRecoverCsReq = 1482, + CmdUpdateMechanismBarScNotify = 1490, + CmdSceneCastSkillCostMpCsReq = 1474, + CmdActivateFarmElementCsReq = 1471, + CmdSyncServerSceneChangeNotify = 1475, + CmdEnterSceneByServerScNotify = 1412, } impl CmdSceneType { /// String value of the enum field names used in the ProtoBuf definition. @@ -59266,228 +61597,228 @@ impl CmdSceneType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdSceneTypeNone", - Self::CmdUpdateMechanismBarScNotify => "CmdUpdateMechanismBarScNotify", - Self::CmdSpringRefreshScRsp => "CmdSpringRefreshScRsp", Self::CmdSceneCastSkillCostMpScRsp => "CmdSceneCastSkillCostMpScRsp", - Self::CmdSceneEnterStageScRsp => "CmdSceneEnterStageScRsp", - Self::CmdSceneReviveAfterRebattleScRsp => "CmdSceneReviveAfterRebattleScRsp", - Self::CmdGetUnlockTeleportScRsp => "CmdGetUnlockTeleportScRsp", - Self::CmdDeactivateFarmElementCsReq => "CmdDeactivateFarmElementCsReq", - Self::CmdSceneCastSkillScRsp => "CmdSceneCastSkillScRsp", - Self::CmdUnlockTeleportNotify => "CmdUnlockTeleportNotify", - Self::CmdReturnLastTownScRsp => "CmdReturnLastTownScRsp", - Self::CmdActivateFarmElementScRsp => "CmdActivateFarmElementScRsp", - Self::CmdUpdateGroupPropertyCsReq => "CmdUpdateGroupPropertyCsReq", - Self::CmdSceneGroupRefreshScNotify => "CmdSceneGroupRefreshScNotify", - Self::CmdGroupStateChangeCsReq => "CmdGroupStateChangeCsReq", + Self::CmdGameplayCounterCountDownCsReq => "CmdGameplayCounterCountDownCsReq", Self::CmdRecoverAllLineupScRsp => "CmdRecoverAllLineupScRsp", - Self::CmdStartCocoonStageCsReq => "CmdStartCocoonStageCsReq", - Self::CmdEntityBindPropCsReq => "CmdEntityBindPropCsReq", - Self::CmdEnterSectionCsReq => "CmdEnterSectionCsReq", - Self::CmdInteractPropCsReq => "CmdInteractPropCsReq", - Self::CmdSetClientPausedCsReq => "CmdSetClientPausedCsReq", - Self::CmdSetGroupCustomSaveDataScRsp => "CmdSetGroupCustomSaveDataScRsp", - Self::CmdReturnLastTownCsReq => "CmdReturnLastTownCsReq", - Self::CmdRefreshTriggerByClientScRsp => "CmdRefreshTriggerByClientScRsp", - Self::CmdSceneEntityTeleportCsReq => "CmdSceneEntityTeleportCsReq", - Self::CmdStartCocoonStageScRsp => "CmdStartCocoonStageScRsp", - Self::CmdUpdateGroupPropertyScRsp => "CmdUpdateGroupPropertyScRsp", - Self::CmdGameplayCounterRecoverCsReq => "CmdGameplayCounterRecoverCsReq", - Self::CmdReEnterLastElementStageCsReq => "CmdReEnterLastElementStageCsReq", - Self::CmdSceneEnterStageCsReq => "CmdSceneEnterStageCsReq", - Self::CmdGetCurSceneInfoScRsp => "CmdGetCurSceneInfoScRsp", - Self::CmdSceneUpdatePositionVersionNotify => { - "CmdSceneUpdatePositionVersionNotify" - } - Self::CmdSetCurInteractEntityCsReq => "CmdSetCurInteractEntityCsReq", - Self::CmdSetClientPausedScRsp => "CmdSetClientPausedScRsp", - Self::CmdSyncEntityBuffChangeListScNotify => { - "CmdSyncEntityBuffChangeListScNotify" - } - Self::CmdEnterSceneCsReq => "CmdEnterSceneCsReq", - Self::CmdGroupStateChangeScRsp => "CmdGroupStateChangeScRsp", + Self::CmdReturnLastTownScRsp => "CmdReturnLastTownScRsp", + Self::CmdReEnterLastElementStageScRsp => "CmdReEnterLastElementStageScRsp", Self::CmdSetCurInteractEntityScRsp => "CmdSetCurInteractEntityScRsp", - Self::CmdEnteredSceneChangeScNotify => "CmdEnteredSceneChangeScNotify", - Self::CmdGetEnteredSceneScRsp => "CmdGetEnteredSceneScRsp", - Self::CmdDeleteSummonUnitCsReq => "CmdDeleteSummonUnitCsReq", + Self::CmdSetClientPausedCsReq => "CmdSetClientPausedCsReq", + Self::CmdUnlockTeleportNotify => "CmdUnlockTeleportNotify", + Self::CmdRefreshTriggerByClientCsReq => "CmdRefreshTriggerByClientCsReq", Self::CmdSpringRefreshCsReq => "CmdSpringRefreshCsReq", - Self::CmdGameplayCounterCountDownScRsp => "CmdGameplayCounterCountDownScRsp", - Self::CmdDeactivateFarmElementScRsp => "CmdDeactivateFarmElementScRsp", - Self::CmdOpenChestScNotify => "CmdOpenChestScNotify", - Self::CmdDeleteSummonUnitScRsp => "CmdDeleteSummonUnitScRsp", - Self::CmdSyncServerSceneChangeNotify => "CmdSyncServerSceneChangeNotify", + Self::CmdRecoverAllLineupCsReq => "CmdRecoverAllLineupCsReq", + Self::CmdSetClientPausedScRsp => "CmdSetClientPausedScRsp", + Self::CmdGetCurSceneInfoCsReq => "CmdGetCurSceneInfoCsReq", + Self::CmdGetUnlockTeleportScRsp => "CmdGetUnlockTeleportScRsp", + Self::CmdSceneReviveAfterRebattleScRsp => "CmdSceneReviveAfterRebattleScRsp", + Self::CmdEntityBindPropScRsp => "CmdEntityBindPropScRsp", + Self::CmdChangePropTimelineInfoCsReq => "CmdChangePropTimelineInfoCsReq", + Self::CmdSceneGroupRefreshScNotify => "CmdSceneGroupRefreshScNotify", + Self::CmdGetSceneMapInfoCsReq => "CmdGetSceneMapInfoCsReq", + Self::CmdRefreshTriggerByClientScRsp => "CmdRefreshTriggerByClientScRsp", + Self::CmdSceneEnterStageCsReq => "CmdSceneEnterStageCsReq", + Self::CmdDeleteSummonUnitCsReq => "CmdDeleteSummonUnitCsReq", + Self::CmdEntityBindPropCsReq => "CmdEntityBindPropCsReq", + Self::CmdEnterSceneScRsp => "CmdEnterSceneScRsp", + Self::CmdGetUnlockTeleportCsReq => "CmdGetUnlockTeleportCsReq", Self::CmdLastSpringRefreshTimeNotify => "CmdLastSpringRefreshTimeNotify", + Self::CmdSetGroupCustomSaveDataScRsp => "CmdSetGroupCustomSaveDataScRsp", + Self::CmdReEnterLastElementStageCsReq => "CmdReEnterLastElementStageCsReq", + Self::CmdDeleteSummonUnitScRsp => "CmdDeleteSummonUnitScRsp", + Self::CmdEnterSectionCsReq => "CmdEnterSectionCsReq", Self::CmdSceneEntityMoveScRsp => "CmdSceneEntityMoveScRsp", Self::CmdRefreshTriggerByClientScNotify => { "CmdRefreshTriggerByClientScNotify" } - Self::CmdGameplayCounterCountDownCsReq => "CmdGameplayCounterCountDownCsReq", - Self::CmdTrainWorldIdChangeScNotify => "CmdTrainWorldIdChangeScNotify", - Self::CmdRecoverAllLineupCsReq => "CmdRecoverAllLineupCsReq", - Self::CmdSceneCastSkillCostMpCsReq => "CmdSceneCastSkillCostMpCsReq", - Self::CmdEnterSceneScRsp => "CmdEnterSceneScRsp", - Self::CmdGameplayCounterRecoverScRsp => "CmdGameplayCounterRecoverScRsp", - Self::CmdSceneReviveAfterRebattleCsReq => "CmdSceneReviveAfterRebattleCsReq", - Self::CmdUnlockedAreaMapScNotify => "CmdUnlockedAreaMapScNotify", - Self::CmdChangePropTimelineInfoCsReq => "CmdChangePropTimelineInfoCsReq", - Self::CmdGetSceneMapInfoScRsp => "CmdGetSceneMapInfoScRsp", - Self::CmdSavePointsInfoNotify => "CmdSavePointsInfoNotify", - Self::CmdGetUnlockTeleportCsReq => "CmdGetUnlockTeleportCsReq", - Self::CmdUpdateFloorSavedValueNotify => "CmdUpdateFloorSavedValueNotify", - Self::CmdGetSceneMapInfoCsReq => "CmdGetSceneMapInfoCsReq", - Self::CmdEnterSceneByServerScNotify => "CmdEnterSceneByServerScNotify", - Self::CmdReEnterLastElementStageScRsp => "CmdReEnterLastElementStageScRsp", - Self::CmdEnterSectionScRsp => "CmdEnterSectionScRsp", - Self::CmdGroupStateChangeScNotify => "CmdGroupStateChangeScNotify", - Self::CmdSetGroupCustomSaveDataCsReq => "CmdSetGroupCustomSaveDataCsReq", + Self::CmdSetCurInteractEntityCsReq => "CmdSetCurInteractEntityCsReq", + Self::CmdGroupStateChangeCsReq => "CmdGroupStateChangeCsReq", + Self::CmdSpringRefreshScRsp => "CmdSpringRefreshScRsp", + Self::CmdOpenChestScNotify => "CmdOpenChestScNotify", Self::CmdSceneCastSkillMpUpdateScNotify => { "CmdSceneCastSkillMpUpdateScNotify" } - Self::CmdChangePropTimelineInfoScRsp => "CmdChangePropTimelineInfoScRsp", - Self::CmdGameplayCounterUpdateScNotify => "CmdGameplayCounterUpdateScNotify", + Self::CmdEnterSceneCsReq => "CmdEnterSceneCsReq", + Self::CmdSceneCastSkillScRsp => "CmdSceneCastSkillScRsp", + Self::CmdGetSceneMapInfoScRsp => "CmdGetSceneMapInfoScRsp", Self::CmdSceneCastSkillCsReq => "CmdSceneCastSkillCsReq", + Self::CmdSceneEntityTeleportCsReq => "CmdSceneEntityTeleportCsReq", + Self::CmdSyncEntityBuffChangeListScNotify => { + "CmdSyncEntityBuffChangeListScNotify" + } + Self::CmdStartCocoonStageCsReq => "CmdStartCocoonStageCsReq", Self::CmdInteractPropScRsp => "CmdInteractPropScRsp", + Self::CmdGroupStateChangeScRsp => "CmdGroupStateChangeScRsp", + Self::CmdUpdateGroupPropertyCsReq => "CmdUpdateGroupPropertyCsReq", + Self::CmdGameplayCounterUpdateScNotify => "CmdGameplayCounterUpdateScNotify", + Self::CmdActivateFarmElementScRsp => "CmdActivateFarmElementScRsp", + Self::CmdGroupStateChangeScNotify => "CmdGroupStateChangeScNotify", + Self::CmdGetEnteredSceneScRsp => "CmdGetEnteredSceneScRsp", Self::CmdGetEnteredSceneCsReq => "CmdGetEnteredSceneCsReq", - Self::CmdSceneEntityMoveCsReq => "CmdSceneEntityMoveCsReq", - Self::CmdGetCurSceneInfoCsReq => "CmdGetCurSceneInfoCsReq", + Self::CmdTrainWorldIdChangeScNotify => "CmdTrainWorldIdChangeScNotify", + Self::CmdUnlockedAreaMapScNotify => "CmdUnlockedAreaMapScNotify", + Self::CmdEnteredSceneChangeScNotify => "CmdEnteredSceneChangeScNotify", + Self::CmdReturnLastTownCsReq => "CmdReturnLastTownCsReq", + Self::CmdEnterSectionScRsp => "CmdEnterSectionScRsp", + Self::CmdSetGroupCustomSaveDataCsReq => "CmdSetGroupCustomSaveDataCsReq", Self::CmdSceneEntityTeleportScRsp => "CmdSceneEntityTeleportScRsp", + Self::CmdSceneReviveAfterRebattleCsReq => "CmdSceneReviveAfterRebattleCsReq", + Self::CmdGetCurSceneInfoScRsp => "CmdGetCurSceneInfoScRsp", + Self::CmdGameplayCounterCountDownScRsp => "CmdGameplayCounterCountDownScRsp", + Self::CmdSavePointsInfoNotify => "CmdSavePointsInfoNotify", + Self::CmdUpdateFloorSavedValueNotify => "CmdUpdateFloorSavedValueNotify", + Self::CmdStartCocoonStageScRsp => "CmdStartCocoonStageScRsp", + Self::CmdGameplayCounterRecoverScRsp => "CmdGameplayCounterRecoverScRsp", + Self::CmdSceneEntityMoveCsReq => "CmdSceneEntityMoveCsReq", + Self::CmdSceneUpdatePositionVersionNotify => { + "CmdSceneUpdatePositionVersionNotify" + } + Self::CmdChangePropTimelineInfoScRsp => "CmdChangePropTimelineInfoScRsp", Self::CmdSceneEntityMoveScNotify => "CmdSceneEntityMoveScNotify", - Self::CmdActivateFarmElementCsReq => "CmdActivateFarmElementCsReq", - Self::CmdRefreshTriggerByClientCsReq => "CmdRefreshTriggerByClientCsReq", + Self::CmdDeactivateFarmElementCsReq => "CmdDeactivateFarmElementCsReq", Self::CmdScenePlaneEventScNotify => "CmdScenePlaneEventScNotify", - Self::CmdEntityBindPropScRsp => "CmdEntityBindPropScRsp", + Self::CmdSceneEnterStageScRsp => "CmdSceneEnterStageScRsp", + Self::CmdInteractPropCsReq => "CmdInteractPropCsReq", + Self::CmdUpdateGroupPropertyScRsp => "CmdUpdateGroupPropertyScRsp", + Self::CmdDeactivateFarmElementScRsp => "CmdDeactivateFarmElementScRsp", + Self::CmdGameplayCounterRecoverCsReq => "CmdGameplayCounterRecoverCsReq", + Self::CmdUpdateMechanismBarScNotify => "CmdUpdateMechanismBarScNotify", + Self::CmdSceneCastSkillCostMpCsReq => "CmdSceneCastSkillCostMpCsReq", + Self::CmdActivateFarmElementCsReq => "CmdActivateFarmElementCsReq", + Self::CmdSyncServerSceneChangeNotify => "CmdSyncServerSceneChangeNotify", + Self::CmdEnterSceneByServerScNotify => "CmdEnterSceneByServerScNotify", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdSceneTypeNone" => Some(Self::None), - "CmdUpdateMechanismBarScNotify" => Some(Self::CmdUpdateMechanismBarScNotify), - "CmdSpringRefreshScRsp" => Some(Self::CmdSpringRefreshScRsp), "CmdSceneCastSkillCostMpScRsp" => Some(Self::CmdSceneCastSkillCostMpScRsp), - "CmdSceneEnterStageScRsp" => Some(Self::CmdSceneEnterStageScRsp), + "CmdGameplayCounterCountDownCsReq" => { + Some(Self::CmdGameplayCounterCountDownCsReq) + } + "CmdRecoverAllLineupScRsp" => Some(Self::CmdRecoverAllLineupScRsp), + "CmdReturnLastTownScRsp" => Some(Self::CmdReturnLastTownScRsp), + "CmdReEnterLastElementStageScRsp" => { + Some(Self::CmdReEnterLastElementStageScRsp) + } + "CmdSetCurInteractEntityScRsp" => Some(Self::CmdSetCurInteractEntityScRsp), + "CmdSetClientPausedCsReq" => Some(Self::CmdSetClientPausedCsReq), + "CmdUnlockTeleportNotify" => Some(Self::CmdUnlockTeleportNotify), + "CmdRefreshTriggerByClientCsReq" => { + Some(Self::CmdRefreshTriggerByClientCsReq) + } + "CmdSpringRefreshCsReq" => Some(Self::CmdSpringRefreshCsReq), + "CmdRecoverAllLineupCsReq" => Some(Self::CmdRecoverAllLineupCsReq), + "CmdSetClientPausedScRsp" => Some(Self::CmdSetClientPausedScRsp), + "CmdGetCurSceneInfoCsReq" => Some(Self::CmdGetCurSceneInfoCsReq), + "CmdGetUnlockTeleportScRsp" => Some(Self::CmdGetUnlockTeleportScRsp), "CmdSceneReviveAfterRebattleScRsp" => { Some(Self::CmdSceneReviveAfterRebattleScRsp) } - "CmdGetUnlockTeleportScRsp" => Some(Self::CmdGetUnlockTeleportScRsp), - "CmdDeactivateFarmElementCsReq" => Some(Self::CmdDeactivateFarmElementCsReq), - "CmdSceneCastSkillScRsp" => Some(Self::CmdSceneCastSkillScRsp), - "CmdUnlockTeleportNotify" => Some(Self::CmdUnlockTeleportNotify), - "CmdReturnLastTownScRsp" => Some(Self::CmdReturnLastTownScRsp), - "CmdActivateFarmElementScRsp" => Some(Self::CmdActivateFarmElementScRsp), - "CmdUpdateGroupPropertyCsReq" => Some(Self::CmdUpdateGroupPropertyCsReq), - "CmdSceneGroupRefreshScNotify" => Some(Self::CmdSceneGroupRefreshScNotify), - "CmdGroupStateChangeCsReq" => Some(Self::CmdGroupStateChangeCsReq), - "CmdRecoverAllLineupScRsp" => Some(Self::CmdRecoverAllLineupScRsp), - "CmdStartCocoonStageCsReq" => Some(Self::CmdStartCocoonStageCsReq), - "CmdEntityBindPropCsReq" => Some(Self::CmdEntityBindPropCsReq), - "CmdEnterSectionCsReq" => Some(Self::CmdEnterSectionCsReq), - "CmdInteractPropCsReq" => Some(Self::CmdInteractPropCsReq), - "CmdSetClientPausedCsReq" => Some(Self::CmdSetClientPausedCsReq), - "CmdSetGroupCustomSaveDataScRsp" => { - Some(Self::CmdSetGroupCustomSaveDataScRsp) + "CmdEntityBindPropScRsp" => Some(Self::CmdEntityBindPropScRsp), + "CmdChangePropTimelineInfoCsReq" => { + Some(Self::CmdChangePropTimelineInfoCsReq) } - "CmdReturnLastTownCsReq" => Some(Self::CmdReturnLastTownCsReq), + "CmdSceneGroupRefreshScNotify" => Some(Self::CmdSceneGroupRefreshScNotify), + "CmdGetSceneMapInfoCsReq" => Some(Self::CmdGetSceneMapInfoCsReq), "CmdRefreshTriggerByClientScRsp" => { Some(Self::CmdRefreshTriggerByClientScRsp) } - "CmdSceneEntityTeleportCsReq" => Some(Self::CmdSceneEntityTeleportCsReq), - "CmdStartCocoonStageScRsp" => Some(Self::CmdStartCocoonStageScRsp), - "CmdUpdateGroupPropertyScRsp" => Some(Self::CmdUpdateGroupPropertyScRsp), - "CmdGameplayCounterRecoverCsReq" => { - Some(Self::CmdGameplayCounterRecoverCsReq) + "CmdSceneEnterStageCsReq" => Some(Self::CmdSceneEnterStageCsReq), + "CmdDeleteSummonUnitCsReq" => Some(Self::CmdDeleteSummonUnitCsReq), + "CmdEntityBindPropCsReq" => Some(Self::CmdEntityBindPropCsReq), + "CmdEnterSceneScRsp" => Some(Self::CmdEnterSceneScRsp), + "CmdGetUnlockTeleportCsReq" => Some(Self::CmdGetUnlockTeleportCsReq), + "CmdLastSpringRefreshTimeNotify" => { + Some(Self::CmdLastSpringRefreshTimeNotify) + } + "CmdSetGroupCustomSaveDataScRsp" => { + Some(Self::CmdSetGroupCustomSaveDataScRsp) } "CmdReEnterLastElementStageCsReq" => { Some(Self::CmdReEnterLastElementStageCsReq) } - "CmdSceneEnterStageCsReq" => Some(Self::CmdSceneEnterStageCsReq), - "CmdGetCurSceneInfoScRsp" => Some(Self::CmdGetCurSceneInfoScRsp), - "CmdSceneUpdatePositionVersionNotify" => { - Some(Self::CmdSceneUpdatePositionVersionNotify) - } - "CmdSetCurInteractEntityCsReq" => Some(Self::CmdSetCurInteractEntityCsReq), - "CmdSetClientPausedScRsp" => Some(Self::CmdSetClientPausedScRsp), - "CmdSyncEntityBuffChangeListScNotify" => { - Some(Self::CmdSyncEntityBuffChangeListScNotify) - } - "CmdEnterSceneCsReq" => Some(Self::CmdEnterSceneCsReq), - "CmdGroupStateChangeScRsp" => Some(Self::CmdGroupStateChangeScRsp), - "CmdSetCurInteractEntityScRsp" => Some(Self::CmdSetCurInteractEntityScRsp), - "CmdEnteredSceneChangeScNotify" => Some(Self::CmdEnteredSceneChangeScNotify), - "CmdGetEnteredSceneScRsp" => Some(Self::CmdGetEnteredSceneScRsp), - "CmdDeleteSummonUnitCsReq" => Some(Self::CmdDeleteSummonUnitCsReq), - "CmdSpringRefreshCsReq" => Some(Self::CmdSpringRefreshCsReq), - "CmdGameplayCounterCountDownScRsp" => { - Some(Self::CmdGameplayCounterCountDownScRsp) - } - "CmdDeactivateFarmElementScRsp" => Some(Self::CmdDeactivateFarmElementScRsp), - "CmdOpenChestScNotify" => Some(Self::CmdOpenChestScNotify), "CmdDeleteSummonUnitScRsp" => Some(Self::CmdDeleteSummonUnitScRsp), - "CmdSyncServerSceneChangeNotify" => { - Some(Self::CmdSyncServerSceneChangeNotify) - } - "CmdLastSpringRefreshTimeNotify" => { - Some(Self::CmdLastSpringRefreshTimeNotify) - } + "CmdEnterSectionCsReq" => Some(Self::CmdEnterSectionCsReq), "CmdSceneEntityMoveScRsp" => Some(Self::CmdSceneEntityMoveScRsp), "CmdRefreshTriggerByClientScNotify" => { Some(Self::CmdRefreshTriggerByClientScNotify) } - "CmdGameplayCounterCountDownCsReq" => { - Some(Self::CmdGameplayCounterCountDownCsReq) - } - "CmdTrainWorldIdChangeScNotify" => Some(Self::CmdTrainWorldIdChangeScNotify), - "CmdRecoverAllLineupCsReq" => Some(Self::CmdRecoverAllLineupCsReq), - "CmdSceneCastSkillCostMpCsReq" => Some(Self::CmdSceneCastSkillCostMpCsReq), - "CmdEnterSceneScRsp" => Some(Self::CmdEnterSceneScRsp), - "CmdGameplayCounterRecoverScRsp" => { - Some(Self::CmdGameplayCounterRecoverScRsp) - } - "CmdSceneReviveAfterRebattleCsReq" => { - Some(Self::CmdSceneReviveAfterRebattleCsReq) - } - "CmdUnlockedAreaMapScNotify" => Some(Self::CmdUnlockedAreaMapScNotify), - "CmdChangePropTimelineInfoCsReq" => { - Some(Self::CmdChangePropTimelineInfoCsReq) + "CmdSetCurInteractEntityCsReq" => Some(Self::CmdSetCurInteractEntityCsReq), + "CmdGroupStateChangeCsReq" => Some(Self::CmdGroupStateChangeCsReq), + "CmdSpringRefreshScRsp" => Some(Self::CmdSpringRefreshScRsp), + "CmdOpenChestScNotify" => Some(Self::CmdOpenChestScNotify), + "CmdSceneCastSkillMpUpdateScNotify" => { + Some(Self::CmdSceneCastSkillMpUpdateScNotify) } + "CmdEnterSceneCsReq" => Some(Self::CmdEnterSceneCsReq), + "CmdSceneCastSkillScRsp" => Some(Self::CmdSceneCastSkillScRsp), "CmdGetSceneMapInfoScRsp" => Some(Self::CmdGetSceneMapInfoScRsp), - "CmdSavePointsInfoNotify" => Some(Self::CmdSavePointsInfoNotify), - "CmdGetUnlockTeleportCsReq" => Some(Self::CmdGetUnlockTeleportCsReq), - "CmdUpdateFloorSavedValueNotify" => { - Some(Self::CmdUpdateFloorSavedValueNotify) + "CmdSceneCastSkillCsReq" => Some(Self::CmdSceneCastSkillCsReq), + "CmdSceneEntityTeleportCsReq" => Some(Self::CmdSceneEntityTeleportCsReq), + "CmdSyncEntityBuffChangeListScNotify" => { + Some(Self::CmdSyncEntityBuffChangeListScNotify) } - "CmdGetSceneMapInfoCsReq" => Some(Self::CmdGetSceneMapInfoCsReq), - "CmdEnterSceneByServerScNotify" => Some(Self::CmdEnterSceneByServerScNotify), - "CmdReEnterLastElementStageScRsp" => { - Some(Self::CmdReEnterLastElementStageScRsp) + "CmdStartCocoonStageCsReq" => Some(Self::CmdStartCocoonStageCsReq), + "CmdInteractPropScRsp" => Some(Self::CmdInteractPropScRsp), + "CmdGroupStateChangeScRsp" => Some(Self::CmdGroupStateChangeScRsp), + "CmdUpdateGroupPropertyCsReq" => Some(Self::CmdUpdateGroupPropertyCsReq), + "CmdGameplayCounterUpdateScNotify" => { + Some(Self::CmdGameplayCounterUpdateScNotify) } - "CmdEnterSectionScRsp" => Some(Self::CmdEnterSectionScRsp), + "CmdActivateFarmElementScRsp" => Some(Self::CmdActivateFarmElementScRsp), "CmdGroupStateChangeScNotify" => Some(Self::CmdGroupStateChangeScNotify), + "CmdGetEnteredSceneScRsp" => Some(Self::CmdGetEnteredSceneScRsp), + "CmdGetEnteredSceneCsReq" => Some(Self::CmdGetEnteredSceneCsReq), + "CmdTrainWorldIdChangeScNotify" => Some(Self::CmdTrainWorldIdChangeScNotify), + "CmdUnlockedAreaMapScNotify" => Some(Self::CmdUnlockedAreaMapScNotify), + "CmdEnteredSceneChangeScNotify" => Some(Self::CmdEnteredSceneChangeScNotify), + "CmdReturnLastTownCsReq" => Some(Self::CmdReturnLastTownCsReq), + "CmdEnterSectionScRsp" => Some(Self::CmdEnterSectionScRsp), "CmdSetGroupCustomSaveDataCsReq" => { Some(Self::CmdSetGroupCustomSaveDataCsReq) } - "CmdSceneCastSkillMpUpdateScNotify" => { - Some(Self::CmdSceneCastSkillMpUpdateScNotify) + "CmdSceneEntityTeleportScRsp" => Some(Self::CmdSceneEntityTeleportScRsp), + "CmdSceneReviveAfterRebattleCsReq" => { + Some(Self::CmdSceneReviveAfterRebattleCsReq) + } + "CmdGetCurSceneInfoScRsp" => Some(Self::CmdGetCurSceneInfoScRsp), + "CmdGameplayCounterCountDownScRsp" => { + Some(Self::CmdGameplayCounterCountDownScRsp) + } + "CmdSavePointsInfoNotify" => Some(Self::CmdSavePointsInfoNotify), + "CmdUpdateFloorSavedValueNotify" => { + Some(Self::CmdUpdateFloorSavedValueNotify) + } + "CmdStartCocoonStageScRsp" => Some(Self::CmdStartCocoonStageScRsp), + "CmdGameplayCounterRecoverScRsp" => { + Some(Self::CmdGameplayCounterRecoverScRsp) + } + "CmdSceneEntityMoveCsReq" => Some(Self::CmdSceneEntityMoveCsReq), + "CmdSceneUpdatePositionVersionNotify" => { + Some(Self::CmdSceneUpdatePositionVersionNotify) } "CmdChangePropTimelineInfoScRsp" => { Some(Self::CmdChangePropTimelineInfoScRsp) } - "CmdGameplayCounterUpdateScNotify" => { - Some(Self::CmdGameplayCounterUpdateScNotify) - } - "CmdSceneCastSkillCsReq" => Some(Self::CmdSceneCastSkillCsReq), - "CmdInteractPropScRsp" => Some(Self::CmdInteractPropScRsp), - "CmdGetEnteredSceneCsReq" => Some(Self::CmdGetEnteredSceneCsReq), - "CmdSceneEntityMoveCsReq" => Some(Self::CmdSceneEntityMoveCsReq), - "CmdGetCurSceneInfoCsReq" => Some(Self::CmdGetCurSceneInfoCsReq), - "CmdSceneEntityTeleportScRsp" => Some(Self::CmdSceneEntityTeleportScRsp), "CmdSceneEntityMoveScNotify" => Some(Self::CmdSceneEntityMoveScNotify), - "CmdActivateFarmElementCsReq" => Some(Self::CmdActivateFarmElementCsReq), - "CmdRefreshTriggerByClientCsReq" => { - Some(Self::CmdRefreshTriggerByClientCsReq) - } + "CmdDeactivateFarmElementCsReq" => Some(Self::CmdDeactivateFarmElementCsReq), "CmdScenePlaneEventScNotify" => Some(Self::CmdScenePlaneEventScNotify), - "CmdEntityBindPropScRsp" => Some(Self::CmdEntityBindPropScRsp), + "CmdSceneEnterStageScRsp" => Some(Self::CmdSceneEnterStageScRsp), + "CmdInteractPropCsReq" => Some(Self::CmdInteractPropCsReq), + "CmdUpdateGroupPropertyScRsp" => Some(Self::CmdUpdateGroupPropertyScRsp), + "CmdDeactivateFarmElementScRsp" => Some(Self::CmdDeactivateFarmElementScRsp), + "CmdGameplayCounterRecoverCsReq" => { + Some(Self::CmdGameplayCounterRecoverCsReq) + } + "CmdUpdateMechanismBarScNotify" => Some(Self::CmdUpdateMechanismBarScNotify), + "CmdSceneCastSkillCostMpCsReq" => Some(Self::CmdSceneCastSkillCostMpCsReq), + "CmdActivateFarmElementCsReq" => Some(Self::CmdActivateFarmElementCsReq), + "CmdSyncServerSceneChangeNotify" => { + Some(Self::CmdSyncServerSceneChangeNotify) + } + "CmdEnterSceneByServerScNotify" => Some(Self::CmdEnterSceneByServerScNotify), _ => None, } } @@ -59764,12 +62095,12 @@ impl SceneGroupRefreshType { #[repr(i32)] pub enum CmdServerPrefsType { None = 0, - CmdUpdateServerPrefsDataCsReq = 6176, - CmdGetAllServerPrefsDataCsReq = 6195, - CmdUpdateServerPrefsDataScRsp = 6148, - CmdGetServerPrefsDataCsReq = 6131, - CmdGetAllServerPrefsDataScRsp = 6132, - CmdGetServerPrefsDataScRsp = 6140, + CmdGetServerPrefsDataCsReq = 6167, + CmdGetAllServerPrefsDataScRsp = 6191, + CmdUpdateServerPrefsDataCsReq = 6127, + CmdGetAllServerPrefsDataCsReq = 6120, + CmdUpdateServerPrefsDataScRsp = 6121, + CmdGetServerPrefsDataScRsp = 6139, } impl CmdServerPrefsType { /// String value of the enum field names used in the ProtoBuf definition. @@ -59779,11 +62110,11 @@ impl CmdServerPrefsType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdServerPrefsTypeNone", + Self::CmdGetServerPrefsDataCsReq => "CmdGetServerPrefsDataCsReq", + Self::CmdGetAllServerPrefsDataScRsp => "CmdGetAllServerPrefsDataScRsp", Self::CmdUpdateServerPrefsDataCsReq => "CmdUpdateServerPrefsDataCsReq", Self::CmdGetAllServerPrefsDataCsReq => "CmdGetAllServerPrefsDataCsReq", Self::CmdUpdateServerPrefsDataScRsp => "CmdUpdateServerPrefsDataScRsp", - Self::CmdGetServerPrefsDataCsReq => "CmdGetServerPrefsDataCsReq", - Self::CmdGetAllServerPrefsDataScRsp => "CmdGetAllServerPrefsDataScRsp", Self::CmdGetServerPrefsDataScRsp => "CmdGetServerPrefsDataScRsp", } } @@ -59791,11 +62122,11 @@ impl CmdServerPrefsType { pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdServerPrefsTypeNone" => Some(Self::None), + "CmdGetServerPrefsDataCsReq" => Some(Self::CmdGetServerPrefsDataCsReq), + "CmdGetAllServerPrefsDataScRsp" => Some(Self::CmdGetAllServerPrefsDataScRsp), "CmdUpdateServerPrefsDataCsReq" => Some(Self::CmdUpdateServerPrefsDataCsReq), "CmdGetAllServerPrefsDataCsReq" => Some(Self::CmdGetAllServerPrefsDataCsReq), "CmdUpdateServerPrefsDataScRsp" => Some(Self::CmdUpdateServerPrefsDataScRsp), - "CmdGetServerPrefsDataCsReq" => Some(Self::CmdGetServerPrefsDataCsReq), - "CmdGetAllServerPrefsDataScRsp" => Some(Self::CmdGetAllServerPrefsDataScRsp), "CmdGetServerPrefsDataScRsp" => Some(Self::CmdGetServerPrefsDataScRsp), _ => None, } @@ -59807,13 +62138,13 @@ impl CmdServerPrefsType { #[repr(i32)] pub enum CmdShopType { None = 0, - CmdBuyGoodsCsReq = 1531, - CmdGetShopListCsReq = 1595, - CmdBuyGoodsScRsp = 1540, - CmdTakeCityShopRewardScRsp = 1548, - CmdTakeCityShopRewardCsReq = 1576, - CmdCityShopInfoScNotify = 1571, - CmdGetShopListScRsp = 1532, + CmdGetShopListCsReq = 1520, + CmdBuyGoodsCsReq = 1567, + CmdGetShopListScRsp = 1591, + CmdTakeCityShopRewardScRsp = 1521, + CmdTakeCityShopRewardCsReq = 1527, + CmdCityShopInfoScNotify = 1570, + CmdBuyGoodsScRsp = 1539, } impl CmdShopType { /// String value of the enum field names used in the ProtoBuf definition. @@ -59823,26 +62154,26 @@ impl CmdShopType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdShopTypeNone", - Self::CmdBuyGoodsCsReq => "CmdBuyGoodsCsReq", Self::CmdGetShopListCsReq => "CmdGetShopListCsReq", - Self::CmdBuyGoodsScRsp => "CmdBuyGoodsScRsp", + Self::CmdBuyGoodsCsReq => "CmdBuyGoodsCsReq", + Self::CmdGetShopListScRsp => "CmdGetShopListScRsp", Self::CmdTakeCityShopRewardScRsp => "CmdTakeCityShopRewardScRsp", Self::CmdTakeCityShopRewardCsReq => "CmdTakeCityShopRewardCsReq", Self::CmdCityShopInfoScNotify => "CmdCityShopInfoScNotify", - Self::CmdGetShopListScRsp => "CmdGetShopListScRsp", + Self::CmdBuyGoodsScRsp => "CmdBuyGoodsScRsp", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdShopTypeNone" => Some(Self::None), - "CmdBuyGoodsCsReq" => Some(Self::CmdBuyGoodsCsReq), "CmdGetShopListCsReq" => Some(Self::CmdGetShopListCsReq), - "CmdBuyGoodsScRsp" => Some(Self::CmdBuyGoodsScRsp), + "CmdBuyGoodsCsReq" => Some(Self::CmdBuyGoodsCsReq), + "CmdGetShopListScRsp" => Some(Self::CmdGetShopListScRsp), "CmdTakeCityShopRewardScRsp" => Some(Self::CmdTakeCityShopRewardScRsp), "CmdTakeCityShopRewardCsReq" => Some(Self::CmdTakeCityShopRewardCsReq), "CmdCityShopInfoScNotify" => Some(Self::CmdCityShopInfoScNotify), - "CmdGetShopListScRsp" => Some(Self::CmdGetShopListScRsp), + "CmdBuyGoodsScRsp" => Some(Self::CmdBuyGoodsScRsp), _ => None, } } @@ -59853,21 +62184,21 @@ impl CmdShopType { #[repr(i32)] pub enum CmdSpaceZooType { None = 0, - CmdSpaceZooBornScRsp = 6740, - CmdSpaceZooDataScRsp = 6732, - CmdSpaceZooDataCsReq = 6795, - CmdSpaceZooMutateCsReq = 6776, - CmdSpaceZooBornCsReq = 6731, - CmdSpaceZooExchangeItemCsReq = 6785, - CmdSpaceZooOpCatteryScRsp = 6752, - CmdSpaceZooCatUpdateNotify = 6772, - CmdSpaceZooExchangeItemScRsp = 6716, - CmdSpaceZooOpCatteryCsReq = 6771, - CmdSpaceZooTakeCsReq = 6746, - CmdSpaceZooDeleteCatScRsp = 6756, - CmdSpaceZooTakeScRsp = 6783, - CmdSpaceZooMutateScRsp = 6748, - CmdSpaceZooDeleteCatCsReq = 6722, + CmdSpaceZooOpCatteryCsReq = 6770, + CmdSpaceZooDataCsReq = 6720, + CmdSpaceZooDeleteCatScRsp = 6777, + CmdSpaceZooBornCsReq = 6767, + CmdSpaceZooCatUpdateNotify = 6780, + CmdSpaceZooBornScRsp = 6739, + CmdSpaceZooTakeScRsp = 6773, + CmdSpaceZooMutateScRsp = 6721, + CmdSpaceZooExchangeItemCsReq = 6702, + CmdSpaceZooTakeCsReq = 6774, + CmdSpaceZooDeleteCatCsReq = 6754, + CmdSpaceZooDataScRsp = 6791, + CmdSpaceZooExchangeItemScRsp = 6705, + CmdSpaceZooMutateCsReq = 6727, + CmdSpaceZooOpCatteryScRsp = 6759, } impl CmdSpaceZooType { /// String value of the enum field names used in the ProtoBuf definition. @@ -59877,42 +62208,42 @@ impl CmdSpaceZooType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdSpaceZooTypeNone", - Self::CmdSpaceZooBornScRsp => "CmdSpaceZooBornScRsp", - Self::CmdSpaceZooDataScRsp => "CmdSpaceZooDataScRsp", - Self::CmdSpaceZooDataCsReq => "CmdSpaceZooDataCsReq", - Self::CmdSpaceZooMutateCsReq => "CmdSpaceZooMutateCsReq", - Self::CmdSpaceZooBornCsReq => "CmdSpaceZooBornCsReq", - Self::CmdSpaceZooExchangeItemCsReq => "CmdSpaceZooExchangeItemCsReq", - Self::CmdSpaceZooOpCatteryScRsp => "CmdSpaceZooOpCatteryScRsp", - Self::CmdSpaceZooCatUpdateNotify => "CmdSpaceZooCatUpdateNotify", - Self::CmdSpaceZooExchangeItemScRsp => "CmdSpaceZooExchangeItemScRsp", Self::CmdSpaceZooOpCatteryCsReq => "CmdSpaceZooOpCatteryCsReq", - Self::CmdSpaceZooTakeCsReq => "CmdSpaceZooTakeCsReq", + Self::CmdSpaceZooDataCsReq => "CmdSpaceZooDataCsReq", Self::CmdSpaceZooDeleteCatScRsp => "CmdSpaceZooDeleteCatScRsp", + Self::CmdSpaceZooBornCsReq => "CmdSpaceZooBornCsReq", + Self::CmdSpaceZooCatUpdateNotify => "CmdSpaceZooCatUpdateNotify", + Self::CmdSpaceZooBornScRsp => "CmdSpaceZooBornScRsp", Self::CmdSpaceZooTakeScRsp => "CmdSpaceZooTakeScRsp", Self::CmdSpaceZooMutateScRsp => "CmdSpaceZooMutateScRsp", + Self::CmdSpaceZooExchangeItemCsReq => "CmdSpaceZooExchangeItemCsReq", + Self::CmdSpaceZooTakeCsReq => "CmdSpaceZooTakeCsReq", Self::CmdSpaceZooDeleteCatCsReq => "CmdSpaceZooDeleteCatCsReq", + Self::CmdSpaceZooDataScRsp => "CmdSpaceZooDataScRsp", + Self::CmdSpaceZooExchangeItemScRsp => "CmdSpaceZooExchangeItemScRsp", + Self::CmdSpaceZooMutateCsReq => "CmdSpaceZooMutateCsReq", + Self::CmdSpaceZooOpCatteryScRsp => "CmdSpaceZooOpCatteryScRsp", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdSpaceZooTypeNone" => Some(Self::None), - "CmdSpaceZooBornScRsp" => Some(Self::CmdSpaceZooBornScRsp), - "CmdSpaceZooDataScRsp" => Some(Self::CmdSpaceZooDataScRsp), - "CmdSpaceZooDataCsReq" => Some(Self::CmdSpaceZooDataCsReq), - "CmdSpaceZooMutateCsReq" => Some(Self::CmdSpaceZooMutateCsReq), - "CmdSpaceZooBornCsReq" => Some(Self::CmdSpaceZooBornCsReq), - "CmdSpaceZooExchangeItemCsReq" => Some(Self::CmdSpaceZooExchangeItemCsReq), - "CmdSpaceZooOpCatteryScRsp" => Some(Self::CmdSpaceZooOpCatteryScRsp), - "CmdSpaceZooCatUpdateNotify" => Some(Self::CmdSpaceZooCatUpdateNotify), - "CmdSpaceZooExchangeItemScRsp" => Some(Self::CmdSpaceZooExchangeItemScRsp), "CmdSpaceZooOpCatteryCsReq" => Some(Self::CmdSpaceZooOpCatteryCsReq), - "CmdSpaceZooTakeCsReq" => Some(Self::CmdSpaceZooTakeCsReq), + "CmdSpaceZooDataCsReq" => Some(Self::CmdSpaceZooDataCsReq), "CmdSpaceZooDeleteCatScRsp" => Some(Self::CmdSpaceZooDeleteCatScRsp), + "CmdSpaceZooBornCsReq" => Some(Self::CmdSpaceZooBornCsReq), + "CmdSpaceZooCatUpdateNotify" => Some(Self::CmdSpaceZooCatUpdateNotify), + "CmdSpaceZooBornScRsp" => Some(Self::CmdSpaceZooBornScRsp), "CmdSpaceZooTakeScRsp" => Some(Self::CmdSpaceZooTakeScRsp), "CmdSpaceZooMutateScRsp" => Some(Self::CmdSpaceZooMutateScRsp), + "CmdSpaceZooExchangeItemCsReq" => Some(Self::CmdSpaceZooExchangeItemCsReq), + "CmdSpaceZooTakeCsReq" => Some(Self::CmdSpaceZooTakeCsReq), "CmdSpaceZooDeleteCatCsReq" => Some(Self::CmdSpaceZooDeleteCatCsReq), + "CmdSpaceZooDataScRsp" => Some(Self::CmdSpaceZooDataScRsp), + "CmdSpaceZooExchangeItemScRsp" => Some(Self::CmdSpaceZooExchangeItemScRsp), + "CmdSpaceZooMutateCsReq" => Some(Self::CmdSpaceZooMutateCsReq), + "CmdSpaceZooOpCatteryScRsp" => Some(Self::CmdSpaceZooOpCatteryScRsp), _ => None, } } @@ -59923,11 +62254,11 @@ impl CmdSpaceZooType { #[repr(i32)] pub enum CmdStarFightType { None = 0, - CmdGetStarFightDataCsReq = 7162, - CmdGetStarFightDataScRsp = 7165, - CmdStartStarFightLevelScRsp = 7167, - CmdStartStarFightLevelCsReq = 7164, - CmdStarFightDataChangeNotify = 7161, + CmdStartStarFightLevelScRsp = 7163, + CmdGetStarFightDataScRsp = 7169, + CmdGetStarFightDataCsReq = 7165, + CmdStarFightDataChangeNotify = 7166, + CmdStartStarFightLevelCsReq = 7168, } impl CmdStarFightType { /// String value of the enum field names used in the ProtoBuf definition. @@ -59937,22 +62268,22 @@ impl CmdStarFightType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdStarFightTypeNone", - Self::CmdGetStarFightDataCsReq => "CmdGetStarFightDataCsReq", - Self::CmdGetStarFightDataScRsp => "CmdGetStarFightDataScRsp", Self::CmdStartStarFightLevelScRsp => "CmdStartStarFightLevelScRsp", - Self::CmdStartStarFightLevelCsReq => "CmdStartStarFightLevelCsReq", + Self::CmdGetStarFightDataScRsp => "CmdGetStarFightDataScRsp", + Self::CmdGetStarFightDataCsReq => "CmdGetStarFightDataCsReq", Self::CmdStarFightDataChangeNotify => "CmdStarFightDataChangeNotify", + Self::CmdStartStarFightLevelCsReq => "CmdStartStarFightLevelCsReq", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdStarFightTypeNone" => Some(Self::None), - "CmdGetStarFightDataCsReq" => Some(Self::CmdGetStarFightDataCsReq), - "CmdGetStarFightDataScRsp" => Some(Self::CmdGetStarFightDataScRsp), "CmdStartStarFightLevelScRsp" => Some(Self::CmdStartStarFightLevelScRsp), - "CmdStartStarFightLevelCsReq" => Some(Self::CmdStartStarFightLevelCsReq), + "CmdGetStarFightDataScRsp" => Some(Self::CmdGetStarFightDataScRsp), + "CmdGetStarFightDataCsReq" => Some(Self::CmdGetStarFightDataCsReq), "CmdStarFightDataChangeNotify" => Some(Self::CmdStarFightDataChangeNotify), + "CmdStartStarFightLevelCsReq" => Some(Self::CmdStartStarFightLevelCsReq), _ => None, } } @@ -59963,11 +62294,11 @@ impl CmdStarFightType { #[repr(i32)] pub enum CmdStoryLineType { None = 0, - CmdChangeStoryLineFinishScNotify = 6248, - CmdGetStoryLineInfoCsReq = 6295, - CmdStoryLineTrialAvatarChangeScNotify = 6271, - CmdStoryLineInfoScNotify = 6231, - CmdGetStoryLineInfoScRsp = 6232, + CmdStoryLineInfoScNotify = 6267, + CmdGetStoryLineInfoCsReq = 6220, + CmdChangeStoryLineFinishScNotify = 6221, + CmdStoryLineTrialAvatarChangeScNotify = 6270, + CmdGetStoryLineInfoScRsp = 6291, } impl CmdStoryLineType { /// String value of the enum field names used in the ProtoBuf definition. @@ -59977,12 +62308,12 @@ impl CmdStoryLineType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdStoryLineTypeNone", - Self::CmdChangeStoryLineFinishScNotify => "CmdChangeStoryLineFinishScNotify", + Self::CmdStoryLineInfoScNotify => "CmdStoryLineInfoScNotify", Self::CmdGetStoryLineInfoCsReq => "CmdGetStoryLineInfoCsReq", + Self::CmdChangeStoryLineFinishScNotify => "CmdChangeStoryLineFinishScNotify", Self::CmdStoryLineTrialAvatarChangeScNotify => { "CmdStoryLineTrialAvatarChangeScNotify" } - Self::CmdStoryLineInfoScNotify => "CmdStoryLineInfoScNotify", Self::CmdGetStoryLineInfoScRsp => "CmdGetStoryLineInfoScRsp", } } @@ -59990,14 +62321,14 @@ impl CmdStoryLineType { pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdStoryLineTypeNone" => Some(Self::None), + "CmdStoryLineInfoScNotify" => Some(Self::CmdStoryLineInfoScNotify), + "CmdGetStoryLineInfoCsReq" => Some(Self::CmdGetStoryLineInfoCsReq), "CmdChangeStoryLineFinishScNotify" => { Some(Self::CmdChangeStoryLineFinishScNotify) } - "CmdGetStoryLineInfoCsReq" => Some(Self::CmdGetStoryLineInfoCsReq), "CmdStoryLineTrialAvatarChangeScNotify" => { Some(Self::CmdStoryLineTrialAvatarChangeScNotify) } - "CmdStoryLineInfoScNotify" => Some(Self::CmdStoryLineInfoScNotify), "CmdGetStoryLineInfoScRsp" => Some(Self::CmdGetStoryLineInfoScRsp), _ => None, } @@ -60049,11 +62380,11 @@ impl Amjocdiaphf { #[repr(i32)] pub enum CmdStrongChallengeActivityType { None = 0, - CmdEnterStrongChallengeActivityStageCsReq = 6631, - CmdStrongChallengeActivityBattleEndScNotify = 6676, - CmdEnterStrongChallengeActivityStageScRsp = 6640, - CmdGetStrongChallengeActivityDataCsReq = 6695, - CmdGetStrongChallengeActivityDataScRsp = 6632, + CmdStrongChallengeActivityBattleEndScNotify = 6627, + CmdEnterStrongChallengeActivityStageCsReq = 6667, + CmdGetStrongChallengeActivityDataScRsp = 6691, + CmdEnterStrongChallengeActivityStageScRsp = 6639, + CmdGetStrongChallengeActivityDataCsReq = 6620, } impl CmdStrongChallengeActivityType { /// String value of the enum field names used in the ProtoBuf definition. @@ -60063,11 +62394,14 @@ impl CmdStrongChallengeActivityType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdStrongChallengeActivityTypeNone", + Self::CmdStrongChallengeActivityBattleEndScNotify => { + "CmdStrongChallengeActivityBattleEndScNotify" + } Self::CmdEnterStrongChallengeActivityStageCsReq => { "CmdEnterStrongChallengeActivityStageCsReq" } - Self::CmdStrongChallengeActivityBattleEndScNotify => { - "CmdStrongChallengeActivityBattleEndScNotify" + Self::CmdGetStrongChallengeActivityDataScRsp => { + "CmdGetStrongChallengeActivityDataScRsp" } Self::CmdEnterStrongChallengeActivityStageScRsp => { "CmdEnterStrongChallengeActivityStageScRsp" @@ -60075,20 +62409,20 @@ impl CmdStrongChallengeActivityType { Self::CmdGetStrongChallengeActivityDataCsReq => { "CmdGetStrongChallengeActivityDataCsReq" } - Self::CmdGetStrongChallengeActivityDataScRsp => { - "CmdGetStrongChallengeActivityDataScRsp" - } } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdStrongChallengeActivityTypeNone" => Some(Self::None), + "CmdStrongChallengeActivityBattleEndScNotify" => { + Some(Self::CmdStrongChallengeActivityBattleEndScNotify) + } "CmdEnterStrongChallengeActivityStageCsReq" => { Some(Self::CmdEnterStrongChallengeActivityStageCsReq) } - "CmdStrongChallengeActivityBattleEndScNotify" => { - Some(Self::CmdStrongChallengeActivityBattleEndScNotify) + "CmdGetStrongChallengeActivityDataScRsp" => { + Some(Self::CmdGetStrongChallengeActivityDataScRsp) } "CmdEnterStrongChallengeActivityStageScRsp" => { Some(Self::CmdEnterStrongChallengeActivityStageScRsp) @@ -60096,9 +62430,6 @@ impl CmdStrongChallengeActivityType { "CmdGetStrongChallengeActivityDataCsReq" => { Some(Self::CmdGetStrongChallengeActivityDataCsReq) } - "CmdGetStrongChallengeActivityDataScRsp" => { - Some(Self::CmdGetStrongChallengeActivityDataScRsp) - } _ => None, } } @@ -60109,11 +62440,11 @@ impl CmdStrongChallengeActivityType { #[repr(i32)] pub enum CmdSummonActivityType { None = 0, - CmdEnterSummonActivityStageCsReq = 7564, - CmdGetSummonActivityDataScRsp = 7565, - CmdEnterSummonActivityStageScRsp = 7567, - CmdGetSummonActivityDataCsReq = 7562, - CmdSummonActivityBattleEndScNotify = 7561, + CmdSummonActivityBattleEndScNotify = 7566, + CmdGetSummonActivityDataCsReq = 7565, + CmdEnterSummonActivityStageCsReq = 7568, + CmdEnterSummonActivityStageScRsp = 7563, + CmdGetSummonActivityDataScRsp = 7569, } impl CmdSummonActivityType { /// String value of the enum field names used in the ProtoBuf definition. @@ -60123,30 +62454,30 @@ impl CmdSummonActivityType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdSummonActivityTypeNone", - Self::CmdEnterSummonActivityStageCsReq => "CmdEnterSummonActivityStageCsReq", - Self::CmdGetSummonActivityDataScRsp => "CmdGetSummonActivityDataScRsp", - Self::CmdEnterSummonActivityStageScRsp => "CmdEnterSummonActivityStageScRsp", - Self::CmdGetSummonActivityDataCsReq => "CmdGetSummonActivityDataCsReq", Self::CmdSummonActivityBattleEndScNotify => { "CmdSummonActivityBattleEndScNotify" } + Self::CmdGetSummonActivityDataCsReq => "CmdGetSummonActivityDataCsReq", + Self::CmdEnterSummonActivityStageCsReq => "CmdEnterSummonActivityStageCsReq", + Self::CmdEnterSummonActivityStageScRsp => "CmdEnterSummonActivityStageScRsp", + Self::CmdGetSummonActivityDataScRsp => "CmdGetSummonActivityDataScRsp", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdSummonActivityTypeNone" => Some(Self::None), - "CmdEnterSummonActivityStageCsReq" => { - Some(Self::CmdEnterSummonActivityStageCsReq) - } - "CmdGetSummonActivityDataScRsp" => Some(Self::CmdGetSummonActivityDataScRsp), - "CmdEnterSummonActivityStageScRsp" => { - Some(Self::CmdEnterSummonActivityStageScRsp) - } - "CmdGetSummonActivityDataCsReq" => Some(Self::CmdGetSummonActivityDataCsReq), "CmdSummonActivityBattleEndScNotify" => { Some(Self::CmdSummonActivityBattleEndScNotify) } + "CmdGetSummonActivityDataCsReq" => Some(Self::CmdGetSummonActivityDataCsReq), + "CmdEnterSummonActivityStageCsReq" => { + Some(Self::CmdEnterSummonActivityStageCsReq) + } + "CmdEnterSummonActivityStageScRsp" => { + Some(Self::CmdEnterSummonActivityStageScRsp) + } + "CmdGetSummonActivityDataScRsp" => Some(Self::CmdGetSummonActivityDataScRsp), _ => None, } } @@ -60157,20 +62488,20 @@ impl CmdSummonActivityType { #[repr(i32)] pub enum CmdSwitchHandType { None = 0, - CmdSwitchHandDataScRsp = 8113, - CmdSwitchHandStartScRsp = 8110, - CmdSwitchHandCoinUpdateCsReq = 8107, - CmdSwitchHandUpdateCsReq = 8120, - CmdSwitchHandResetHandPosScRsp = 8101, - CmdSwitchHandCoinUpdateScRsp = 8103, - CmdSwitchHandStartCsReq = 8108, - CmdSwitchHandUpdateScRsp = 8109, - CmdSwitchHandResetGameScRsp = 8119, - CmdSwitchHandResetHandPosCsReq = 8105, - CmdSwitchHandFinishScRsp = 8102, - CmdSwitchHandFinishCsReq = 8104, - CmdSwitchHandDataCsReq = 8114, - CmdSwitchHandResetGameCsReq = 8111, + CmdSwitchHandResetGameCsReq = 8113, + CmdSwitchHandCoinUpdateScRsp = 8119, + CmdSwitchHandUpdateCsReq = 8105, + CmdSwitchHandResetGameScRsp = 8115, + CmdSwitchHandStartScRsp = 8116, + CmdSwitchHandUpdateScRsp = 8103, + CmdSwitchHandDataScRsp = 8109, + CmdSwitchHandResetHandPosScRsp = 8106, + CmdSwitchHandDataCsReq = 8118, + CmdSwitchHandStartCsReq = 8110, + CmdSwitchHandResetHandPosCsReq = 8112, + CmdSwitchHandFinishScRsp = 8111, + CmdSwitchHandCoinUpdateCsReq = 8114, + CmdSwitchHandFinishCsReq = 8107, } impl CmdSwitchHandType { /// String value of the enum field names used in the ProtoBuf definition. @@ -60180,44 +62511,44 @@ impl CmdSwitchHandType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdSwitchHandTypeNone", - Self::CmdSwitchHandDataScRsp => "CmdSwitchHandDataScRsp", - Self::CmdSwitchHandStartScRsp => "CmdSwitchHandStartScRsp", - Self::CmdSwitchHandCoinUpdateCsReq => "CmdSwitchHandCoinUpdateCsReq", - Self::CmdSwitchHandUpdateCsReq => "CmdSwitchHandUpdateCsReq", - Self::CmdSwitchHandResetHandPosScRsp => "CmdSwitchHandResetHandPosScRsp", + Self::CmdSwitchHandResetGameCsReq => "CmdSwitchHandResetGameCsReq", Self::CmdSwitchHandCoinUpdateScRsp => "CmdSwitchHandCoinUpdateScRsp", - Self::CmdSwitchHandStartCsReq => "CmdSwitchHandStartCsReq", - Self::CmdSwitchHandUpdateScRsp => "CmdSwitchHandUpdateScRsp", + Self::CmdSwitchHandUpdateCsReq => "CmdSwitchHandUpdateCsReq", Self::CmdSwitchHandResetGameScRsp => "CmdSwitchHandResetGameScRsp", + Self::CmdSwitchHandStartScRsp => "CmdSwitchHandStartScRsp", + Self::CmdSwitchHandUpdateScRsp => "CmdSwitchHandUpdateScRsp", + Self::CmdSwitchHandDataScRsp => "CmdSwitchHandDataScRsp", + Self::CmdSwitchHandResetHandPosScRsp => "CmdSwitchHandResetHandPosScRsp", + Self::CmdSwitchHandDataCsReq => "CmdSwitchHandDataCsReq", + Self::CmdSwitchHandStartCsReq => "CmdSwitchHandStartCsReq", Self::CmdSwitchHandResetHandPosCsReq => "CmdSwitchHandResetHandPosCsReq", Self::CmdSwitchHandFinishScRsp => "CmdSwitchHandFinishScRsp", + Self::CmdSwitchHandCoinUpdateCsReq => "CmdSwitchHandCoinUpdateCsReq", Self::CmdSwitchHandFinishCsReq => "CmdSwitchHandFinishCsReq", - Self::CmdSwitchHandDataCsReq => "CmdSwitchHandDataCsReq", - Self::CmdSwitchHandResetGameCsReq => "CmdSwitchHandResetGameCsReq", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdSwitchHandTypeNone" => Some(Self::None), - "CmdSwitchHandDataScRsp" => Some(Self::CmdSwitchHandDataScRsp), - "CmdSwitchHandStartScRsp" => Some(Self::CmdSwitchHandStartScRsp), - "CmdSwitchHandCoinUpdateCsReq" => Some(Self::CmdSwitchHandCoinUpdateCsReq), + "CmdSwitchHandResetGameCsReq" => Some(Self::CmdSwitchHandResetGameCsReq), + "CmdSwitchHandCoinUpdateScRsp" => Some(Self::CmdSwitchHandCoinUpdateScRsp), "CmdSwitchHandUpdateCsReq" => Some(Self::CmdSwitchHandUpdateCsReq), + "CmdSwitchHandResetGameScRsp" => Some(Self::CmdSwitchHandResetGameScRsp), + "CmdSwitchHandStartScRsp" => Some(Self::CmdSwitchHandStartScRsp), + "CmdSwitchHandUpdateScRsp" => Some(Self::CmdSwitchHandUpdateScRsp), + "CmdSwitchHandDataScRsp" => Some(Self::CmdSwitchHandDataScRsp), "CmdSwitchHandResetHandPosScRsp" => { Some(Self::CmdSwitchHandResetHandPosScRsp) } - "CmdSwitchHandCoinUpdateScRsp" => Some(Self::CmdSwitchHandCoinUpdateScRsp), + "CmdSwitchHandDataCsReq" => Some(Self::CmdSwitchHandDataCsReq), "CmdSwitchHandStartCsReq" => Some(Self::CmdSwitchHandStartCsReq), - "CmdSwitchHandUpdateScRsp" => Some(Self::CmdSwitchHandUpdateScRsp), - "CmdSwitchHandResetGameScRsp" => Some(Self::CmdSwitchHandResetGameScRsp), "CmdSwitchHandResetHandPosCsReq" => { Some(Self::CmdSwitchHandResetHandPosCsReq) } "CmdSwitchHandFinishScRsp" => Some(Self::CmdSwitchHandFinishScRsp), + "CmdSwitchHandCoinUpdateCsReq" => Some(Self::CmdSwitchHandCoinUpdateCsReq), "CmdSwitchHandFinishCsReq" => Some(Self::CmdSwitchHandFinishCsReq), - "CmdSwitchHandDataCsReq" => Some(Self::CmdSwitchHandDataCsReq), - "CmdSwitchHandResetGameCsReq" => Some(Self::CmdSwitchHandResetGameCsReq), _ => None, } } @@ -60258,42 +62589,42 @@ impl Leglgdjopkc { #[repr(i32)] pub enum CmdSwordTrainingType { None = 0, - CmdSwordTrainingGiveUpGameCsReq = 7492, - CmdSwordTrainingDialogueSelectOptionScRsp = 7493, - CmdSwordTrainingResumeGameCsReq = 7453, - CmdSwordTrainingGameSettleScNotify = 7468, - CmdSwordTrainingDailyPhaseConfirmCsReq = 7467, - CmdSwordTrainingResumeGameScRsp = 7497, - CmdSwordTrainingGiveUpGameScRsp = 7479, - CmdSwordTrainingStoryBattleScRsp = 7469, - CmdEnterSwordTrainingExamScRsp = 7470, - CmdSwordTrainingStartGameCsReq = 7473, - CmdSwordTrainingSetSkillTraceScRsp = 7491, - CmdGetSwordTrainingDataCsReq = 7496, - CmdSwordTrainingGameSyncChangeScNotify = 7454, - CmdSwordTrainingStartGameScRsp = 7476, - CmdSwordTrainingSetSkillTraceCsReq = 7498, - CmdSwordTrainingDailyPhaseConfirmScRsp = 7477, - CmdSwordTrainingLearnSkillCsReq = 7494, - CmdSwordTrainingRestoreGameCsReq = 7456, - CmdSwordTrainingMarkEndingViewedCsReq = 7483, - CmdSwordTrainingLearnSkillScRsp = 7482, - CmdSwordTrainingUnlockSyncScNotify = 7451, - CmdSwordTrainingTurnActionScRsp = 7486, - CmdSwordTrainingSelectEndingCsReq = 7489, - CmdGetSwordTrainingDataScRsp = 7452, - CmdEnterSwordTrainingExamCsReq = 7490, - CmdSwordTrainingTurnActionCsReq = 7487, - CmdSwordTrainingStoryBattleCsReq = 7460, - CmdSwordTrainingStoryConfirmScRsp = 7466, - CmdSwordTrainingMarkEndingViewedScRsp = 7481, - CmdSwordTrainingRestoreGameScRsp = 7471, - CmdSwordTrainingActionTurnSettleScNotify = 7499, - CmdSwordTrainingExamResultConfirmCsReq = 7464, - CmdSwordTrainingStoryConfirmCsReq = 7472, - CmdSwordTrainingExamResultConfirmScRsp = 7458, - CmdSwordTrainingDialogueSelectOptionCsReq = 7465, - CmdSwordTrainingSelectEndingScRsp = 7461, + CmdSwordTrainingSetSkillTraceScRsp = 7483, + CmdSwordTrainingTurnActionScRsp = 7461, + CmdSwordTrainingMarkEndingViewedCsReq = 7494, + CmdSwordTrainingSetSkillTraceCsReq = 7491, + CmdGetSwordTrainingDataScRsp = 7468, + CmdSwordTrainingExamResultConfirmScRsp = 7500, + CmdSwordTrainingActionTurnSettleScNotify = 7497, + CmdEnterSwordTrainingExamCsReq = 7469, + CmdSwordTrainingStartGameScRsp = 7475, + CmdSwordTrainingUnlockSyncScNotify = 7464, + CmdSwordTrainingResumeGameCsReq = 7455, + CmdSwordTrainingDialogueSelectOptionCsReq = 7489, + CmdSwordTrainingDailyPhaseConfirmCsReq = 7487, + CmdSwordTrainingGiveUpGameScRsp = 7463, + CmdEnterSwordTrainingExamScRsp = 7476, + CmdSwordTrainingStartGameCsReq = 7472, + CmdSwordTrainingStoryBattleScRsp = 7492, + CmdSwordTrainingRestoreGameCsReq = 7454, + CmdSwordTrainingLearnSkillCsReq = 7484, + CmdSwordTrainingStoryBattleCsReq = 7471, + CmdSwordTrainingSelectEndingScRsp = 7498, + CmdSwordTrainingGameSettleScNotify = 7474, + CmdSwordTrainingStoryConfirmCsReq = 7493, + CmdSwordTrainingRestoreGameScRsp = 7485, + CmdSwordTrainingLearnSkillScRsp = 7496, + CmdSwordTrainingTurnActionCsReq = 7486, + CmdGetSwordTrainingDataCsReq = 7477, + CmdSwordTrainingGameSyncChangeScNotify = 7499, + CmdSwordTrainingStoryConfirmScRsp = 7480, + CmdSwordTrainingGiveUpGameCsReq = 7453, + CmdSwordTrainingExamResultConfirmCsReq = 7459, + CmdSwordTrainingDailyPhaseConfirmScRsp = 7467, + CmdSwordTrainingDialogueSelectOptionScRsp = 7462, + CmdSwordTrainingResumeGameScRsp = 7452, + CmdSwordTrainingMarkEndingViewedScRsp = 7465, + CmdSwordTrainingSelectEndingCsReq = 7466, } impl CmdSwordTrainingType { /// String value of the enum field names used in the ProtoBuf definition. @@ -60303,77 +62634,77 @@ impl CmdSwordTrainingType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdSwordTrainingTypeNone", - Self::CmdSwordTrainingGiveUpGameCsReq => "CmdSwordTrainingGiveUpGameCsReq", - Self::CmdSwordTrainingDialogueSelectOptionScRsp => { - "CmdSwordTrainingDialogueSelectOptionScRsp" + Self::CmdSwordTrainingSetSkillTraceScRsp => { + "CmdSwordTrainingSetSkillTraceScRsp" + } + Self::CmdSwordTrainingTurnActionScRsp => "CmdSwordTrainingTurnActionScRsp", + Self::CmdSwordTrainingMarkEndingViewedCsReq => { + "CmdSwordTrainingMarkEndingViewedCsReq" + } + Self::CmdSwordTrainingSetSkillTraceCsReq => { + "CmdSwordTrainingSetSkillTraceCsReq" + } + Self::CmdGetSwordTrainingDataScRsp => "CmdGetSwordTrainingDataScRsp", + Self::CmdSwordTrainingExamResultConfirmScRsp => { + "CmdSwordTrainingExamResultConfirmScRsp" + } + Self::CmdSwordTrainingActionTurnSettleScNotify => { + "CmdSwordTrainingActionTurnSettleScNotify" + } + Self::CmdEnterSwordTrainingExamCsReq => "CmdEnterSwordTrainingExamCsReq", + Self::CmdSwordTrainingStartGameScRsp => "CmdSwordTrainingStartGameScRsp", + Self::CmdSwordTrainingUnlockSyncScNotify => { + "CmdSwordTrainingUnlockSyncScNotify" } Self::CmdSwordTrainingResumeGameCsReq => "CmdSwordTrainingResumeGameCsReq", - Self::CmdSwordTrainingGameSettleScNotify => { - "CmdSwordTrainingGameSettleScNotify" + Self::CmdSwordTrainingDialogueSelectOptionCsReq => { + "CmdSwordTrainingDialogueSelectOptionCsReq" } Self::CmdSwordTrainingDailyPhaseConfirmCsReq => { "CmdSwordTrainingDailyPhaseConfirmCsReq" } - Self::CmdSwordTrainingResumeGameScRsp => "CmdSwordTrainingResumeGameScRsp", Self::CmdSwordTrainingGiveUpGameScRsp => "CmdSwordTrainingGiveUpGameScRsp", - Self::CmdSwordTrainingStoryBattleScRsp => "CmdSwordTrainingStoryBattleScRsp", Self::CmdEnterSwordTrainingExamScRsp => "CmdEnterSwordTrainingExamScRsp", Self::CmdSwordTrainingStartGameCsReq => "CmdSwordTrainingStartGameCsReq", - Self::CmdSwordTrainingSetSkillTraceScRsp => { - "CmdSwordTrainingSetSkillTraceScRsp" - } - Self::CmdGetSwordTrainingDataCsReq => "CmdGetSwordTrainingDataCsReq", - Self::CmdSwordTrainingGameSyncChangeScNotify => { - "CmdSwordTrainingGameSyncChangeScNotify" - } - Self::CmdSwordTrainingStartGameScRsp => "CmdSwordTrainingStartGameScRsp", - Self::CmdSwordTrainingSetSkillTraceCsReq => { - "CmdSwordTrainingSetSkillTraceCsReq" - } - Self::CmdSwordTrainingDailyPhaseConfirmScRsp => { - "CmdSwordTrainingDailyPhaseConfirmScRsp" - } - Self::CmdSwordTrainingLearnSkillCsReq => "CmdSwordTrainingLearnSkillCsReq", + Self::CmdSwordTrainingStoryBattleScRsp => "CmdSwordTrainingStoryBattleScRsp", Self::CmdSwordTrainingRestoreGameCsReq => "CmdSwordTrainingRestoreGameCsReq", - Self::CmdSwordTrainingMarkEndingViewedCsReq => { - "CmdSwordTrainingMarkEndingViewedCsReq" - } - Self::CmdSwordTrainingLearnSkillScRsp => "CmdSwordTrainingLearnSkillScRsp", - Self::CmdSwordTrainingUnlockSyncScNotify => { - "CmdSwordTrainingUnlockSyncScNotify" - } - Self::CmdSwordTrainingTurnActionScRsp => "CmdSwordTrainingTurnActionScRsp", - Self::CmdSwordTrainingSelectEndingCsReq => { - "CmdSwordTrainingSelectEndingCsReq" - } - Self::CmdGetSwordTrainingDataScRsp => "CmdGetSwordTrainingDataScRsp", - Self::CmdEnterSwordTrainingExamCsReq => "CmdEnterSwordTrainingExamCsReq", - Self::CmdSwordTrainingTurnActionCsReq => "CmdSwordTrainingTurnActionCsReq", + Self::CmdSwordTrainingLearnSkillCsReq => "CmdSwordTrainingLearnSkillCsReq", Self::CmdSwordTrainingStoryBattleCsReq => "CmdSwordTrainingStoryBattleCsReq", - Self::CmdSwordTrainingStoryConfirmScRsp => { - "CmdSwordTrainingStoryConfirmScRsp" + Self::CmdSwordTrainingSelectEndingScRsp => { + "CmdSwordTrainingSelectEndingScRsp" } - Self::CmdSwordTrainingMarkEndingViewedScRsp => { - "CmdSwordTrainingMarkEndingViewedScRsp" - } - Self::CmdSwordTrainingRestoreGameScRsp => "CmdSwordTrainingRestoreGameScRsp", - Self::CmdSwordTrainingActionTurnSettleScNotify => { - "CmdSwordTrainingActionTurnSettleScNotify" - } - Self::CmdSwordTrainingExamResultConfirmCsReq => { - "CmdSwordTrainingExamResultConfirmCsReq" + Self::CmdSwordTrainingGameSettleScNotify => { + "CmdSwordTrainingGameSettleScNotify" } Self::CmdSwordTrainingStoryConfirmCsReq => { "CmdSwordTrainingStoryConfirmCsReq" } - Self::CmdSwordTrainingExamResultConfirmScRsp => { - "CmdSwordTrainingExamResultConfirmScRsp" + Self::CmdSwordTrainingRestoreGameScRsp => "CmdSwordTrainingRestoreGameScRsp", + Self::CmdSwordTrainingLearnSkillScRsp => "CmdSwordTrainingLearnSkillScRsp", + Self::CmdSwordTrainingTurnActionCsReq => "CmdSwordTrainingTurnActionCsReq", + Self::CmdGetSwordTrainingDataCsReq => "CmdGetSwordTrainingDataCsReq", + Self::CmdSwordTrainingGameSyncChangeScNotify => { + "CmdSwordTrainingGameSyncChangeScNotify" } - Self::CmdSwordTrainingDialogueSelectOptionCsReq => { - "CmdSwordTrainingDialogueSelectOptionCsReq" + Self::CmdSwordTrainingStoryConfirmScRsp => { + "CmdSwordTrainingStoryConfirmScRsp" } - Self::CmdSwordTrainingSelectEndingScRsp => { - "CmdSwordTrainingSelectEndingScRsp" + Self::CmdSwordTrainingGiveUpGameCsReq => "CmdSwordTrainingGiveUpGameCsReq", + Self::CmdSwordTrainingExamResultConfirmCsReq => { + "CmdSwordTrainingExamResultConfirmCsReq" + } + Self::CmdSwordTrainingDailyPhaseConfirmScRsp => { + "CmdSwordTrainingDailyPhaseConfirmScRsp" + } + Self::CmdSwordTrainingDialogueSelectOptionScRsp => { + "CmdSwordTrainingDialogueSelectOptionScRsp" + } + Self::CmdSwordTrainingResumeGameScRsp => "CmdSwordTrainingResumeGameScRsp", + Self::CmdSwordTrainingMarkEndingViewedScRsp => { + "CmdSwordTrainingMarkEndingViewedScRsp" + } + Self::CmdSwordTrainingSelectEndingCsReq => { + "CmdSwordTrainingSelectEndingCsReq" } } } @@ -60381,109 +62712,109 @@ impl CmdSwordTrainingType { pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdSwordTrainingTypeNone" => Some(Self::None), - "CmdSwordTrainingGiveUpGameCsReq" => { - Some(Self::CmdSwordTrainingGiveUpGameCsReq) + "CmdSwordTrainingSetSkillTraceScRsp" => { + Some(Self::CmdSwordTrainingSetSkillTraceScRsp) } - "CmdSwordTrainingDialogueSelectOptionScRsp" => { - Some(Self::CmdSwordTrainingDialogueSelectOptionScRsp) + "CmdSwordTrainingTurnActionScRsp" => { + Some(Self::CmdSwordTrainingTurnActionScRsp) + } + "CmdSwordTrainingMarkEndingViewedCsReq" => { + Some(Self::CmdSwordTrainingMarkEndingViewedCsReq) + } + "CmdSwordTrainingSetSkillTraceCsReq" => { + Some(Self::CmdSwordTrainingSetSkillTraceCsReq) + } + "CmdGetSwordTrainingDataScRsp" => Some(Self::CmdGetSwordTrainingDataScRsp), + "CmdSwordTrainingExamResultConfirmScRsp" => { + Some(Self::CmdSwordTrainingExamResultConfirmScRsp) + } + "CmdSwordTrainingActionTurnSettleScNotify" => { + Some(Self::CmdSwordTrainingActionTurnSettleScNotify) + } + "CmdEnterSwordTrainingExamCsReq" => { + Some(Self::CmdEnterSwordTrainingExamCsReq) + } + "CmdSwordTrainingStartGameScRsp" => { + Some(Self::CmdSwordTrainingStartGameScRsp) + } + "CmdSwordTrainingUnlockSyncScNotify" => { + Some(Self::CmdSwordTrainingUnlockSyncScNotify) } "CmdSwordTrainingResumeGameCsReq" => { Some(Self::CmdSwordTrainingResumeGameCsReq) } - "CmdSwordTrainingGameSettleScNotify" => { - Some(Self::CmdSwordTrainingGameSettleScNotify) + "CmdSwordTrainingDialogueSelectOptionCsReq" => { + Some(Self::CmdSwordTrainingDialogueSelectOptionCsReq) } "CmdSwordTrainingDailyPhaseConfirmCsReq" => { Some(Self::CmdSwordTrainingDailyPhaseConfirmCsReq) } - "CmdSwordTrainingResumeGameScRsp" => { - Some(Self::CmdSwordTrainingResumeGameScRsp) - } "CmdSwordTrainingGiveUpGameScRsp" => { Some(Self::CmdSwordTrainingGiveUpGameScRsp) } - "CmdSwordTrainingStoryBattleScRsp" => { - Some(Self::CmdSwordTrainingStoryBattleScRsp) - } "CmdEnterSwordTrainingExamScRsp" => { Some(Self::CmdEnterSwordTrainingExamScRsp) } "CmdSwordTrainingStartGameCsReq" => { Some(Self::CmdSwordTrainingStartGameCsReq) } - "CmdSwordTrainingSetSkillTraceScRsp" => { - Some(Self::CmdSwordTrainingSetSkillTraceScRsp) + "CmdSwordTrainingStoryBattleScRsp" => { + Some(Self::CmdSwordTrainingStoryBattleScRsp) + } + "CmdSwordTrainingRestoreGameCsReq" => { + Some(Self::CmdSwordTrainingRestoreGameCsReq) + } + "CmdSwordTrainingLearnSkillCsReq" => { + Some(Self::CmdSwordTrainingLearnSkillCsReq) + } + "CmdSwordTrainingStoryBattleCsReq" => { + Some(Self::CmdSwordTrainingStoryBattleCsReq) + } + "CmdSwordTrainingSelectEndingScRsp" => { + Some(Self::CmdSwordTrainingSelectEndingScRsp) + } + "CmdSwordTrainingGameSettleScNotify" => { + Some(Self::CmdSwordTrainingGameSettleScNotify) + } + "CmdSwordTrainingStoryConfirmCsReq" => { + Some(Self::CmdSwordTrainingStoryConfirmCsReq) + } + "CmdSwordTrainingRestoreGameScRsp" => { + Some(Self::CmdSwordTrainingRestoreGameScRsp) + } + "CmdSwordTrainingLearnSkillScRsp" => { + Some(Self::CmdSwordTrainingLearnSkillScRsp) + } + "CmdSwordTrainingTurnActionCsReq" => { + Some(Self::CmdSwordTrainingTurnActionCsReq) } "CmdGetSwordTrainingDataCsReq" => Some(Self::CmdGetSwordTrainingDataCsReq), "CmdSwordTrainingGameSyncChangeScNotify" => { Some(Self::CmdSwordTrainingGameSyncChangeScNotify) } - "CmdSwordTrainingStartGameScRsp" => { - Some(Self::CmdSwordTrainingStartGameScRsp) - } - "CmdSwordTrainingSetSkillTraceCsReq" => { - Some(Self::CmdSwordTrainingSetSkillTraceCsReq) - } - "CmdSwordTrainingDailyPhaseConfirmScRsp" => { - Some(Self::CmdSwordTrainingDailyPhaseConfirmScRsp) - } - "CmdSwordTrainingLearnSkillCsReq" => { - Some(Self::CmdSwordTrainingLearnSkillCsReq) - } - "CmdSwordTrainingRestoreGameCsReq" => { - Some(Self::CmdSwordTrainingRestoreGameCsReq) - } - "CmdSwordTrainingMarkEndingViewedCsReq" => { - Some(Self::CmdSwordTrainingMarkEndingViewedCsReq) - } - "CmdSwordTrainingLearnSkillScRsp" => { - Some(Self::CmdSwordTrainingLearnSkillScRsp) - } - "CmdSwordTrainingUnlockSyncScNotify" => { - Some(Self::CmdSwordTrainingUnlockSyncScNotify) - } - "CmdSwordTrainingTurnActionScRsp" => { - Some(Self::CmdSwordTrainingTurnActionScRsp) - } - "CmdSwordTrainingSelectEndingCsReq" => { - Some(Self::CmdSwordTrainingSelectEndingCsReq) - } - "CmdGetSwordTrainingDataScRsp" => Some(Self::CmdGetSwordTrainingDataScRsp), - "CmdEnterSwordTrainingExamCsReq" => { - Some(Self::CmdEnterSwordTrainingExamCsReq) - } - "CmdSwordTrainingTurnActionCsReq" => { - Some(Self::CmdSwordTrainingTurnActionCsReq) - } - "CmdSwordTrainingStoryBattleCsReq" => { - Some(Self::CmdSwordTrainingStoryBattleCsReq) - } "CmdSwordTrainingStoryConfirmScRsp" => { Some(Self::CmdSwordTrainingStoryConfirmScRsp) } - "CmdSwordTrainingMarkEndingViewedScRsp" => { - Some(Self::CmdSwordTrainingMarkEndingViewedScRsp) - } - "CmdSwordTrainingRestoreGameScRsp" => { - Some(Self::CmdSwordTrainingRestoreGameScRsp) - } - "CmdSwordTrainingActionTurnSettleScNotify" => { - Some(Self::CmdSwordTrainingActionTurnSettleScNotify) + "CmdSwordTrainingGiveUpGameCsReq" => { + Some(Self::CmdSwordTrainingGiveUpGameCsReq) } "CmdSwordTrainingExamResultConfirmCsReq" => { Some(Self::CmdSwordTrainingExamResultConfirmCsReq) } - "CmdSwordTrainingStoryConfirmCsReq" => { - Some(Self::CmdSwordTrainingStoryConfirmCsReq) + "CmdSwordTrainingDailyPhaseConfirmScRsp" => { + Some(Self::CmdSwordTrainingDailyPhaseConfirmScRsp) } - "CmdSwordTrainingExamResultConfirmScRsp" => { - Some(Self::CmdSwordTrainingExamResultConfirmScRsp) + "CmdSwordTrainingDialogueSelectOptionScRsp" => { + Some(Self::CmdSwordTrainingDialogueSelectOptionScRsp) } - "CmdSwordTrainingDialogueSelectOptionCsReq" => { - Some(Self::CmdSwordTrainingDialogueSelectOptionCsReq) + "CmdSwordTrainingResumeGameScRsp" => { + Some(Self::CmdSwordTrainingResumeGameScRsp) } - "CmdSwordTrainingSelectEndingScRsp" => { - Some(Self::CmdSwordTrainingSelectEndingScRsp) + "CmdSwordTrainingMarkEndingViewedScRsp" => { + Some(Self::CmdSwordTrainingMarkEndingViewedScRsp) + } + "CmdSwordTrainingSelectEndingCsReq" => { + Some(Self::CmdSwordTrainingSelectEndingCsReq) } _ => None, } @@ -60726,7 +63057,7 @@ impl Hdmkphalalg { #[repr(i32)] pub enum CmdPlayerSync { None = 0, - ScNotify = 695, + ScNotify = 620, } impl CmdPlayerSync { /// String value of the enum field names used in the ProtoBuf definition. @@ -60754,20 +63085,20 @@ impl CmdPlayerSync { #[repr(i32)] pub enum CmdTalkRewardType { None = 0, - CmdTakeTalkRewardCsReq = 2131, - CmdFinishFirstTalkByPerformanceNpcCsReq = 2116, - CmdGetFirstTalkNpcScRsp = 2148, - CmdGetFirstTalkByPerformanceNpcCsReq = 2172, - CmdFinishFirstTalkNpcScRsp = 2152, - CmdGetNpcTakenRewardScRsp = 2132, - CmdSelectInclinationTextScRsp = 2156, - CmdTakeTalkRewardScRsp = 2140, - CmdSelectInclinationTextCsReq = 2122, - CmdFinishFirstTalkNpcCsReq = 2171, - CmdGetFirstTalkByPerformanceNpcScRsp = 2185, - CmdGetFirstTalkNpcCsReq = 2176, - CmdGetNpcTakenRewardCsReq = 2195, - CmdFinishFirstTalkByPerformanceNpcScRsp = 2146, + CmdGetNpcTakenRewardScRsp = 2191, + CmdSelectInclinationTextScRsp = 2177, + CmdFinishFirstTalkNpcScRsp = 2159, + CmdGetFirstTalkNpcCsReq = 2127, + CmdTakeTalkRewardScRsp = 2139, + CmdFinishFirstTalkNpcCsReq = 2170, + CmdGetFirstTalkByPerformanceNpcScRsp = 2102, + CmdFinishFirstTalkByPerformanceNpcScRsp = 2174, + CmdSelectInclinationTextCsReq = 2154, + CmdGetFirstTalkNpcScRsp = 2121, + CmdGetNpcTakenRewardCsReq = 2120, + CmdTakeTalkRewardCsReq = 2167, + CmdGetFirstTalkByPerformanceNpcCsReq = 2180, + CmdFinishFirstTalkByPerformanceNpcCsReq = 2105, } impl CmdTalkRewardType { /// String value of the enum field names used in the ProtoBuf definition. @@ -60777,56 +63108,56 @@ impl CmdTalkRewardType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdTalkRewardTypeNone", - Self::CmdTakeTalkRewardCsReq => "CmdTakeTalkRewardCsReq", - Self::CmdFinishFirstTalkByPerformanceNpcCsReq => { - "CmdFinishFirstTalkByPerformanceNpcCsReq" - } - Self::CmdGetFirstTalkNpcScRsp => "CmdGetFirstTalkNpcScRsp", - Self::CmdGetFirstTalkByPerformanceNpcCsReq => { - "CmdGetFirstTalkByPerformanceNpcCsReq" - } - Self::CmdFinishFirstTalkNpcScRsp => "CmdFinishFirstTalkNpcScRsp", Self::CmdGetNpcTakenRewardScRsp => "CmdGetNpcTakenRewardScRsp", Self::CmdSelectInclinationTextScRsp => "CmdSelectInclinationTextScRsp", + Self::CmdFinishFirstTalkNpcScRsp => "CmdFinishFirstTalkNpcScRsp", + Self::CmdGetFirstTalkNpcCsReq => "CmdGetFirstTalkNpcCsReq", Self::CmdTakeTalkRewardScRsp => "CmdTakeTalkRewardScRsp", - Self::CmdSelectInclinationTextCsReq => "CmdSelectInclinationTextCsReq", Self::CmdFinishFirstTalkNpcCsReq => "CmdFinishFirstTalkNpcCsReq", Self::CmdGetFirstTalkByPerformanceNpcScRsp => { "CmdGetFirstTalkByPerformanceNpcScRsp" } - Self::CmdGetFirstTalkNpcCsReq => "CmdGetFirstTalkNpcCsReq", - Self::CmdGetNpcTakenRewardCsReq => "CmdGetNpcTakenRewardCsReq", Self::CmdFinishFirstTalkByPerformanceNpcScRsp => { "CmdFinishFirstTalkByPerformanceNpcScRsp" } + Self::CmdSelectInclinationTextCsReq => "CmdSelectInclinationTextCsReq", + Self::CmdGetFirstTalkNpcScRsp => "CmdGetFirstTalkNpcScRsp", + Self::CmdGetNpcTakenRewardCsReq => "CmdGetNpcTakenRewardCsReq", + Self::CmdTakeTalkRewardCsReq => "CmdTakeTalkRewardCsReq", + Self::CmdGetFirstTalkByPerformanceNpcCsReq => { + "CmdGetFirstTalkByPerformanceNpcCsReq" + } + Self::CmdFinishFirstTalkByPerformanceNpcCsReq => { + "CmdFinishFirstTalkByPerformanceNpcCsReq" + } } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdTalkRewardTypeNone" => Some(Self::None), - "CmdTakeTalkRewardCsReq" => Some(Self::CmdTakeTalkRewardCsReq), - "CmdFinishFirstTalkByPerformanceNpcCsReq" => { - Some(Self::CmdFinishFirstTalkByPerformanceNpcCsReq) - } - "CmdGetFirstTalkNpcScRsp" => Some(Self::CmdGetFirstTalkNpcScRsp), - "CmdGetFirstTalkByPerformanceNpcCsReq" => { - Some(Self::CmdGetFirstTalkByPerformanceNpcCsReq) - } - "CmdFinishFirstTalkNpcScRsp" => Some(Self::CmdFinishFirstTalkNpcScRsp), "CmdGetNpcTakenRewardScRsp" => Some(Self::CmdGetNpcTakenRewardScRsp), "CmdSelectInclinationTextScRsp" => Some(Self::CmdSelectInclinationTextScRsp), + "CmdFinishFirstTalkNpcScRsp" => Some(Self::CmdFinishFirstTalkNpcScRsp), + "CmdGetFirstTalkNpcCsReq" => Some(Self::CmdGetFirstTalkNpcCsReq), "CmdTakeTalkRewardScRsp" => Some(Self::CmdTakeTalkRewardScRsp), - "CmdSelectInclinationTextCsReq" => Some(Self::CmdSelectInclinationTextCsReq), "CmdFinishFirstTalkNpcCsReq" => Some(Self::CmdFinishFirstTalkNpcCsReq), "CmdGetFirstTalkByPerformanceNpcScRsp" => { Some(Self::CmdGetFirstTalkByPerformanceNpcScRsp) } - "CmdGetFirstTalkNpcCsReq" => Some(Self::CmdGetFirstTalkNpcCsReq), - "CmdGetNpcTakenRewardCsReq" => Some(Self::CmdGetNpcTakenRewardCsReq), "CmdFinishFirstTalkByPerformanceNpcScRsp" => { Some(Self::CmdFinishFirstTalkByPerformanceNpcScRsp) } + "CmdSelectInclinationTextCsReq" => Some(Self::CmdSelectInclinationTextCsReq), + "CmdGetFirstTalkNpcScRsp" => Some(Self::CmdGetFirstTalkNpcScRsp), + "CmdGetNpcTakenRewardCsReq" => Some(Self::CmdGetNpcTakenRewardCsReq), + "CmdTakeTalkRewardCsReq" => Some(Self::CmdTakeTalkRewardCsReq), + "CmdGetFirstTalkByPerformanceNpcCsReq" => { + Some(Self::CmdGetFirstTalkByPerformanceNpcCsReq) + } + "CmdFinishFirstTalkByPerformanceNpcCsReq" => { + Some(Self::CmdFinishFirstTalkByPerformanceNpcCsReq) + } _ => None, } } @@ -60837,17 +63168,20 @@ impl CmdTalkRewardType { #[repr(i32)] pub enum CmdTarotBookType { None = 0, - CmdTarotBookFinishStoryCsReq = 8160, - CmdTarotBookFinishInteractionCsReq = 8143, - CmdTarotBookGetDataCsReq = 8154, - CmdTarotBookFinishStoryScRsp = 8149, - CmdTarotBookUnlockStoryScRsp = 8142, - CmdTarotBookModifyEnergyScNotify = 8147, - CmdTarotBookFinishInteractionScRsp = 8145, - CmdTarotBookOpenPackScRsp = 8150, - CmdTarotBookGetDataScRsp = 8153, - CmdTarotBookUnlockStoryCsReq = 8144, - CmdTarotBookOpenPackCsReq = 8148, + CmdTarotBookGetDataScRsp = 8149, + CmdTarotBookOpenPackScRsp = 8156, + CmdTarotBookUnlockInteractionCsReq = 8146, + CmdTarotBookUnlockStoryCsReq = 8147, + CmdTarotBookModifyEnergyScNotify = 8154, + CmdTarotBookUnlockStoryScRsp = 8151, + CmdTarotBookFinishInteractionScRsp = 8152, + CmdTarotBookOpenPackCsReq = 8150, + CmdTarotBookFinishStoryCsReq = 8145, + CmdTarotBookGetDataCsReq = 8158, + CmdTarotBookUnlockInteractionScRsp = 8153, + CmdTarotBookFinishStoryScRsp = 8143, + CmdTarotBookFinishInteractionCsReq = 8159, + CmdTarotBookSyncDataScNotify = 8155, } impl CmdTarotBookType { /// String value of the enum field names used in the ProtoBuf definition. @@ -60857,44 +63191,58 @@ impl CmdTarotBookType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdTarotBookTypeNone", - Self::CmdTarotBookFinishStoryCsReq => "CmdTarotBookFinishStoryCsReq", - Self::CmdTarotBookFinishInteractionCsReq => { - "CmdTarotBookFinishInteractionCsReq" + Self::CmdTarotBookGetDataScRsp => "CmdTarotBookGetDataScRsp", + Self::CmdTarotBookOpenPackScRsp => "CmdTarotBookOpenPackScRsp", + Self::CmdTarotBookUnlockInteractionCsReq => { + "CmdTarotBookUnlockInteractionCsReq" } - Self::CmdTarotBookGetDataCsReq => "CmdTarotBookGetDataCsReq", - Self::CmdTarotBookFinishStoryScRsp => "CmdTarotBookFinishStoryScRsp", - Self::CmdTarotBookUnlockStoryScRsp => "CmdTarotBookUnlockStoryScRsp", + Self::CmdTarotBookUnlockStoryCsReq => "CmdTarotBookUnlockStoryCsReq", Self::CmdTarotBookModifyEnergyScNotify => "CmdTarotBookModifyEnergyScNotify", + Self::CmdTarotBookUnlockStoryScRsp => "CmdTarotBookUnlockStoryScRsp", Self::CmdTarotBookFinishInteractionScRsp => { "CmdTarotBookFinishInteractionScRsp" } - Self::CmdTarotBookOpenPackScRsp => "CmdTarotBookOpenPackScRsp", - Self::CmdTarotBookGetDataScRsp => "CmdTarotBookGetDataScRsp", - Self::CmdTarotBookUnlockStoryCsReq => "CmdTarotBookUnlockStoryCsReq", Self::CmdTarotBookOpenPackCsReq => "CmdTarotBookOpenPackCsReq", + Self::CmdTarotBookFinishStoryCsReq => "CmdTarotBookFinishStoryCsReq", + Self::CmdTarotBookGetDataCsReq => "CmdTarotBookGetDataCsReq", + Self::CmdTarotBookUnlockInteractionScRsp => { + "CmdTarotBookUnlockInteractionScRsp" + } + Self::CmdTarotBookFinishStoryScRsp => "CmdTarotBookFinishStoryScRsp", + Self::CmdTarotBookFinishInteractionCsReq => { + "CmdTarotBookFinishInteractionCsReq" + } + Self::CmdTarotBookSyncDataScNotify => "CmdTarotBookSyncDataScNotify", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdTarotBookTypeNone" => Some(Self::None), - "CmdTarotBookFinishStoryCsReq" => Some(Self::CmdTarotBookFinishStoryCsReq), - "CmdTarotBookFinishInteractionCsReq" => { - Some(Self::CmdTarotBookFinishInteractionCsReq) + "CmdTarotBookGetDataScRsp" => Some(Self::CmdTarotBookGetDataScRsp), + "CmdTarotBookOpenPackScRsp" => Some(Self::CmdTarotBookOpenPackScRsp), + "CmdTarotBookUnlockInteractionCsReq" => { + Some(Self::CmdTarotBookUnlockInteractionCsReq) } - "CmdTarotBookGetDataCsReq" => Some(Self::CmdTarotBookGetDataCsReq), - "CmdTarotBookFinishStoryScRsp" => Some(Self::CmdTarotBookFinishStoryScRsp), - "CmdTarotBookUnlockStoryScRsp" => Some(Self::CmdTarotBookUnlockStoryScRsp), + "CmdTarotBookUnlockStoryCsReq" => Some(Self::CmdTarotBookUnlockStoryCsReq), "CmdTarotBookModifyEnergyScNotify" => { Some(Self::CmdTarotBookModifyEnergyScNotify) } + "CmdTarotBookUnlockStoryScRsp" => Some(Self::CmdTarotBookUnlockStoryScRsp), "CmdTarotBookFinishInteractionScRsp" => { Some(Self::CmdTarotBookFinishInteractionScRsp) } - "CmdTarotBookOpenPackScRsp" => Some(Self::CmdTarotBookOpenPackScRsp), - "CmdTarotBookGetDataScRsp" => Some(Self::CmdTarotBookGetDataScRsp), - "CmdTarotBookUnlockStoryCsReq" => Some(Self::CmdTarotBookUnlockStoryCsReq), "CmdTarotBookOpenPackCsReq" => Some(Self::CmdTarotBookOpenPackCsReq), + "CmdTarotBookFinishStoryCsReq" => Some(Self::CmdTarotBookFinishStoryCsReq), + "CmdTarotBookGetDataCsReq" => Some(Self::CmdTarotBookGetDataCsReq), + "CmdTarotBookUnlockInteractionScRsp" => { + Some(Self::CmdTarotBookUnlockInteractionScRsp) + } + "CmdTarotBookFinishStoryScRsp" => Some(Self::CmdTarotBookFinishStoryScRsp), + "CmdTarotBookFinishInteractionCsReq" => { + Some(Self::CmdTarotBookFinishInteractionCsReq) + } + "CmdTarotBookSyncDataScNotify" => Some(Self::CmdTarotBookSyncDataScNotify), _ => None, } } @@ -60905,12 +63253,12 @@ impl CmdTarotBookType { #[repr(i32)] pub enum CmdTelevisionActivityType { None = 0, - CmdTelevisionActivityDataChangeScNotify = 6968, - CmdEnterTelevisionActivityStageScRsp = 6964, - CmdTelevisionActivityBattleEndScNotify = 6962, - CmdGetTelevisionActivityDataScRsp = 6973, - CmdGetTelevisionActivityDataCsReq = 6974, - CmdEnterTelevisionActivityStageCsReq = 6970, + CmdEnterTelevisionActivityStageCsReq = 6976, + CmdEnterTelevisionActivityStageScRsp = 6967, + CmdTelevisionActivityBattleEndScNotify = 6971, + CmdGetTelevisionActivityDataScRsp = 6969, + CmdTelevisionActivityDataChangeScNotify = 6970, + CmdGetTelevisionActivityDataCsReq = 6978, } impl CmdTelevisionActivityType { /// String value of the enum field names used in the ProtoBuf definition. @@ -60920,8 +63268,8 @@ impl CmdTelevisionActivityType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdTelevisionActivityTypeNone", - Self::CmdTelevisionActivityDataChangeScNotify => { - "CmdTelevisionActivityDataChangeScNotify" + Self::CmdEnterTelevisionActivityStageCsReq => { + "CmdEnterTelevisionActivityStageCsReq" } Self::CmdEnterTelevisionActivityStageScRsp => { "CmdEnterTelevisionActivityStageScRsp" @@ -60932,20 +63280,20 @@ impl CmdTelevisionActivityType { Self::CmdGetTelevisionActivityDataScRsp => { "CmdGetTelevisionActivityDataScRsp" } + Self::CmdTelevisionActivityDataChangeScNotify => { + "CmdTelevisionActivityDataChangeScNotify" + } Self::CmdGetTelevisionActivityDataCsReq => { "CmdGetTelevisionActivityDataCsReq" } - Self::CmdEnterTelevisionActivityStageCsReq => { - "CmdEnterTelevisionActivityStageCsReq" - } } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdTelevisionActivityTypeNone" => Some(Self::None), - "CmdTelevisionActivityDataChangeScNotify" => { - Some(Self::CmdTelevisionActivityDataChangeScNotify) + "CmdEnterTelevisionActivityStageCsReq" => { + Some(Self::CmdEnterTelevisionActivityStageCsReq) } "CmdEnterTelevisionActivityStageScRsp" => { Some(Self::CmdEnterTelevisionActivityStageScRsp) @@ -60956,12 +63304,12 @@ impl CmdTelevisionActivityType { "CmdGetTelevisionActivityDataScRsp" => { Some(Self::CmdGetTelevisionActivityDataScRsp) } + "CmdTelevisionActivityDataChangeScNotify" => { + Some(Self::CmdTelevisionActivityDataChangeScNotify) + } "CmdGetTelevisionActivityDataCsReq" => { Some(Self::CmdGetTelevisionActivityDataCsReq) } - "CmdEnterTelevisionActivityStageCsReq" => { - Some(Self::CmdEnterTelevisionActivityStageCsReq) - } _ => None, } } @@ -60972,12 +63320,12 @@ impl CmdTelevisionActivityType { #[repr(i32)] pub enum CmdTextJoinType { None = 0, - CmdTextJoinSaveCsReq = 3895, - CmdTextJoinSaveScRsp = 3832, - CmdTextJoinQueryScRsp = 3840, - CmdTextJoinBatchSaveScRsp = 3848, - CmdTextJoinBatchSaveCsReq = 3876, - CmdTextJoinQueryCsReq = 3831, + CmdTextJoinSaveCsReq = 3820, + CmdTextJoinQueryScRsp = 3839, + CmdTextJoinQueryCsReq = 3867, + CmdTextJoinBatchSaveScRsp = 3821, + CmdTextJoinSaveScRsp = 3891, + CmdTextJoinBatchSaveCsReq = 3827, } impl CmdTextJoinType { /// String value of the enum field names used in the ProtoBuf definition. @@ -60988,11 +63336,11 @@ impl CmdTextJoinType { match self { Self::None => "CmdTextJoinTypeNone", Self::CmdTextJoinSaveCsReq => "CmdTextJoinSaveCsReq", - Self::CmdTextJoinSaveScRsp => "CmdTextJoinSaveScRsp", Self::CmdTextJoinQueryScRsp => "CmdTextJoinQueryScRsp", - Self::CmdTextJoinBatchSaveScRsp => "CmdTextJoinBatchSaveScRsp", - Self::CmdTextJoinBatchSaveCsReq => "CmdTextJoinBatchSaveCsReq", Self::CmdTextJoinQueryCsReq => "CmdTextJoinQueryCsReq", + Self::CmdTextJoinBatchSaveScRsp => "CmdTextJoinBatchSaveScRsp", + Self::CmdTextJoinSaveScRsp => "CmdTextJoinSaveScRsp", + Self::CmdTextJoinBatchSaveCsReq => "CmdTextJoinBatchSaveCsReq", } } /// Creates an enum from field names used in the ProtoBuf definition. @@ -61000,11 +63348,11 @@ impl CmdTextJoinType { match value { "CmdTextJoinTypeNone" => Some(Self::None), "CmdTextJoinSaveCsReq" => Some(Self::CmdTextJoinSaveCsReq), - "CmdTextJoinSaveScRsp" => Some(Self::CmdTextJoinSaveScRsp), "CmdTextJoinQueryScRsp" => Some(Self::CmdTextJoinQueryScRsp), - "CmdTextJoinBatchSaveScRsp" => Some(Self::CmdTextJoinBatchSaveScRsp), - "CmdTextJoinBatchSaveCsReq" => Some(Self::CmdTextJoinBatchSaveCsReq), "CmdTextJoinQueryCsReq" => Some(Self::CmdTextJoinQueryCsReq), + "CmdTextJoinBatchSaveScRsp" => Some(Self::CmdTextJoinBatchSaveScRsp), + "CmdTextJoinSaveScRsp" => Some(Self::CmdTextJoinSaveScRsp), + "CmdTextJoinBatchSaveCsReq" => Some(Self::CmdTextJoinBatchSaveCsReq), _ => None, } } @@ -61015,14 +63363,14 @@ impl CmdTextJoinType { #[repr(i32)] pub enum CmdTrackPhotoActivityType { None = 0, - CmdStartTrackPhotoStageScRsp = 7559, - CmdQuitTrackPhotoStageScRsp = 7553, - CmdGetTrackPhotoActivityDataCsReq = 7552, - CmdGetTrackPhotoActivityDataScRsp = 7555, - CmdQuitTrackPhotoStageCsReq = 7556, - CmdSettleTrackPhotoStageCsReq = 7554, - CmdStartTrackPhotoStageCsReq = 7551, - CmdSettleTrackPhotoStageScRsp = 7557, + CmdGetTrackPhotoActivityDataCsReq = 7555, + CmdGetTrackPhotoActivityDataScRsp = 7559, + CmdSettleTrackPhotoStageCsReq = 7558, + CmdQuitTrackPhotoStageScRsp = 7560, + CmdQuitTrackPhotoStageCsReq = 7551, + CmdStartTrackPhotoStageCsReq = 7556, + CmdSettleTrackPhotoStageScRsp = 7553, + CmdStartTrackPhotoStageScRsp = 7557, } impl CmdTrackPhotoActivityType { /// String value of the enum field names used in the ProtoBuf definition. @@ -61032,36 +63380,36 @@ impl CmdTrackPhotoActivityType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdTrackPhotoActivityTypeNone", - Self::CmdStartTrackPhotoStageScRsp => "CmdStartTrackPhotoStageScRsp", - Self::CmdQuitTrackPhotoStageScRsp => "CmdQuitTrackPhotoStageScRsp", Self::CmdGetTrackPhotoActivityDataCsReq => { "CmdGetTrackPhotoActivityDataCsReq" } Self::CmdGetTrackPhotoActivityDataScRsp => { "CmdGetTrackPhotoActivityDataScRsp" } - Self::CmdQuitTrackPhotoStageCsReq => "CmdQuitTrackPhotoStageCsReq", Self::CmdSettleTrackPhotoStageCsReq => "CmdSettleTrackPhotoStageCsReq", + Self::CmdQuitTrackPhotoStageScRsp => "CmdQuitTrackPhotoStageScRsp", + Self::CmdQuitTrackPhotoStageCsReq => "CmdQuitTrackPhotoStageCsReq", Self::CmdStartTrackPhotoStageCsReq => "CmdStartTrackPhotoStageCsReq", Self::CmdSettleTrackPhotoStageScRsp => "CmdSettleTrackPhotoStageScRsp", + Self::CmdStartTrackPhotoStageScRsp => "CmdStartTrackPhotoStageScRsp", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdTrackPhotoActivityTypeNone" => Some(Self::None), - "CmdStartTrackPhotoStageScRsp" => Some(Self::CmdStartTrackPhotoStageScRsp), - "CmdQuitTrackPhotoStageScRsp" => Some(Self::CmdQuitTrackPhotoStageScRsp), "CmdGetTrackPhotoActivityDataCsReq" => { Some(Self::CmdGetTrackPhotoActivityDataCsReq) } "CmdGetTrackPhotoActivityDataScRsp" => { Some(Self::CmdGetTrackPhotoActivityDataScRsp) } - "CmdQuitTrackPhotoStageCsReq" => Some(Self::CmdQuitTrackPhotoStageCsReq), "CmdSettleTrackPhotoStageCsReq" => Some(Self::CmdSettleTrackPhotoStageCsReq), + "CmdQuitTrackPhotoStageScRsp" => Some(Self::CmdQuitTrackPhotoStageScRsp), + "CmdQuitTrackPhotoStageCsReq" => Some(Self::CmdQuitTrackPhotoStageCsReq), "CmdStartTrackPhotoStageCsReq" => Some(Self::CmdStartTrackPhotoStageCsReq), "CmdSettleTrackPhotoStageScRsp" => Some(Self::CmdSettleTrackPhotoStageScRsp), + "CmdStartTrackPhotoStageScRsp" => Some(Self::CmdStartTrackPhotoStageScRsp), _ => None, } } @@ -61072,33 +63420,33 @@ impl CmdTrackPhotoActivityType { #[repr(i32)] pub enum CmdTrainPartyType { None = 0, - CmdTrainPartyAddBuildDynamicBuffScRsp = 8091, - CmdTrainPartyBuildStartStepScRsp = 8046, - CmdTrainPartyUseCardScRsp = 8040, - CmdTrainPartyTakeBuildLevelAwardScRsp = 8075, - CmdTrainPartyTakeBuildLevelAwardCsReq = 8030, - CmdTrainPartyHandlePendingActionCsReq = 8072, - CmdTrainPartyLeaveCsReq = 8042, - CmdTrainPartyBuildDiyScRsp = 8060, - CmdTrainPartyGamePlayStartScRsp = 8093, - CmdTrainPartySyncUpdateScNotify = 8022, - CmdTrainPartyEnterScRsp = 8033, - CmdTrainPartyBuildDiyCsReq = 8083, - CmdTrainPartyAddBuildDynamicBuffCsReq = 8051, - CmdTrainPartyBuildStartStepCsReq = 8016, - CmdTrainPartyGamePlaySettleNotify = 8025, - CmdTrainPartyBuildingUpdateNotify = 8002, - CmdTrainPartyGetDataScRsp = 8032, - CmdTrainPartyMoveScNotify = 8076, - CmdTrainPartyLeaveScRsp = 8077, - CmdTrainPartyUpdatePosEnvCsReq = 8084, - CmdTrainPartyGetDataCsReq = 8095, - CmdTrainPartyUseCardCsReq = 8031, - CmdTrainPartySettleNotify = 8071, - CmdTrainPartyUpdatePosEnvScRsp = 8037, - CmdTrainPartyGamePlayStartCsReq = 8011, - CmdTrainPartyEnterCsReq = 8043, - CmdTrainPartyHandlePendingActionScRsp = 8085, + CmdTrainPartyMoveScNotify = 8027, + CmdTrainPartyUpdatePosEnvCsReq = 8078, + CmdTrainPartyBuildDiyCsReq = 8073, + CmdTrainPartyTakeBuildLevelAwardScRsp = 8069, + CmdTrainPartyBuildDiyScRsp = 8098, + CmdTrainPartyEnterScRsp = 8068, + CmdTrainPartyUseCardCsReq = 8067, + CmdTrainPartyGamePlaySettleNotify = 8041, + CmdTrainPartyLeaveScRsp = 8036, + CmdTrainPartySettleNotify = 8070, + CmdTrainPartyGetDataScRsp = 8091, + CmdTrainPartyBuildingUpdateNotify = 8085, + CmdTrainPartyGetDataCsReq = 8020, + CmdTrainPartyEnterCsReq = 8052, + CmdTrainPartyUpdatePosEnvScRsp = 8034, + CmdTrainPartyHandlePendingActionScRsp = 8002, + CmdTrainPartyGamePlayStartScRsp = 8049, + CmdTrainPartyBuildStartStepScRsp = 8074, + CmdTrainPartyGamePlayStartCsReq = 8044, + CmdTrainPartyLeaveCsReq = 8094, + CmdTrainPartyAddBuildDynamicBuffScRsp = 8024, + CmdTrainPartyAddBuildDynamicBuffCsReq = 8003, + CmdTrainPartyHandlePendingActionCsReq = 8080, + CmdTrainPartyBuildStartStepCsReq = 8005, + CmdTrainPartyUseCardScRsp = 8039, + CmdTrainPartyTakeBuildLevelAwardCsReq = 8045, + CmdTrainPartySyncUpdateScNotify = 8054, } impl CmdTrainPartyType { /// String value of the enum field names used in the ProtoBuf definition. @@ -61108,111 +63456,111 @@ impl CmdTrainPartyType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdTrainPartyTypeNone", - Self::CmdTrainPartyAddBuildDynamicBuffScRsp => { - "CmdTrainPartyAddBuildDynamicBuffScRsp" - } - Self::CmdTrainPartyBuildStartStepScRsp => "CmdTrainPartyBuildStartStepScRsp", - Self::CmdTrainPartyUseCardScRsp => "CmdTrainPartyUseCardScRsp", + Self::CmdTrainPartyMoveScNotify => "CmdTrainPartyMoveScNotify", + Self::CmdTrainPartyUpdatePosEnvCsReq => "CmdTrainPartyUpdatePosEnvCsReq", + Self::CmdTrainPartyBuildDiyCsReq => "CmdTrainPartyBuildDiyCsReq", Self::CmdTrainPartyTakeBuildLevelAwardScRsp => { "CmdTrainPartyTakeBuildLevelAwardScRsp" } - Self::CmdTrainPartyTakeBuildLevelAwardCsReq => { - "CmdTrainPartyTakeBuildLevelAwardCsReq" + Self::CmdTrainPartyBuildDiyScRsp => "CmdTrainPartyBuildDiyScRsp", + Self::CmdTrainPartyEnterScRsp => "CmdTrainPartyEnterScRsp", + Self::CmdTrainPartyUseCardCsReq => "CmdTrainPartyUseCardCsReq", + Self::CmdTrainPartyGamePlaySettleNotify => { + "CmdTrainPartyGamePlaySettleNotify" + } + Self::CmdTrainPartyLeaveScRsp => "CmdTrainPartyLeaveScRsp", + Self::CmdTrainPartySettleNotify => "CmdTrainPartySettleNotify", + Self::CmdTrainPartyGetDataScRsp => "CmdTrainPartyGetDataScRsp", + Self::CmdTrainPartyBuildingUpdateNotify => { + "CmdTrainPartyBuildingUpdateNotify" + } + Self::CmdTrainPartyGetDataCsReq => "CmdTrainPartyGetDataCsReq", + Self::CmdTrainPartyEnterCsReq => "CmdTrainPartyEnterCsReq", + Self::CmdTrainPartyUpdatePosEnvScRsp => "CmdTrainPartyUpdatePosEnvScRsp", + Self::CmdTrainPartyHandlePendingActionScRsp => { + "CmdTrainPartyHandlePendingActionScRsp" + } + Self::CmdTrainPartyGamePlayStartScRsp => "CmdTrainPartyGamePlayStartScRsp", + Self::CmdTrainPartyBuildStartStepScRsp => "CmdTrainPartyBuildStartStepScRsp", + Self::CmdTrainPartyGamePlayStartCsReq => "CmdTrainPartyGamePlayStartCsReq", + Self::CmdTrainPartyLeaveCsReq => "CmdTrainPartyLeaveCsReq", + Self::CmdTrainPartyAddBuildDynamicBuffScRsp => { + "CmdTrainPartyAddBuildDynamicBuffScRsp" + } + Self::CmdTrainPartyAddBuildDynamicBuffCsReq => { + "CmdTrainPartyAddBuildDynamicBuffCsReq" } Self::CmdTrainPartyHandlePendingActionCsReq => { "CmdTrainPartyHandlePendingActionCsReq" } - Self::CmdTrainPartyLeaveCsReq => "CmdTrainPartyLeaveCsReq", - Self::CmdTrainPartyBuildDiyScRsp => "CmdTrainPartyBuildDiyScRsp", - Self::CmdTrainPartyGamePlayStartScRsp => "CmdTrainPartyGamePlayStartScRsp", - Self::CmdTrainPartySyncUpdateScNotify => "CmdTrainPartySyncUpdateScNotify", - Self::CmdTrainPartyEnterScRsp => "CmdTrainPartyEnterScRsp", - Self::CmdTrainPartyBuildDiyCsReq => "CmdTrainPartyBuildDiyCsReq", - Self::CmdTrainPartyAddBuildDynamicBuffCsReq => { - "CmdTrainPartyAddBuildDynamicBuffCsReq" - } Self::CmdTrainPartyBuildStartStepCsReq => "CmdTrainPartyBuildStartStepCsReq", - Self::CmdTrainPartyGamePlaySettleNotify => { - "CmdTrainPartyGamePlaySettleNotify" - } - Self::CmdTrainPartyBuildingUpdateNotify => { - "CmdTrainPartyBuildingUpdateNotify" - } - Self::CmdTrainPartyGetDataScRsp => "CmdTrainPartyGetDataScRsp", - Self::CmdTrainPartyMoveScNotify => "CmdTrainPartyMoveScNotify", - Self::CmdTrainPartyLeaveScRsp => "CmdTrainPartyLeaveScRsp", - Self::CmdTrainPartyUpdatePosEnvCsReq => "CmdTrainPartyUpdatePosEnvCsReq", - Self::CmdTrainPartyGetDataCsReq => "CmdTrainPartyGetDataCsReq", - Self::CmdTrainPartyUseCardCsReq => "CmdTrainPartyUseCardCsReq", - Self::CmdTrainPartySettleNotify => "CmdTrainPartySettleNotify", - Self::CmdTrainPartyUpdatePosEnvScRsp => "CmdTrainPartyUpdatePosEnvScRsp", - Self::CmdTrainPartyGamePlayStartCsReq => "CmdTrainPartyGamePlayStartCsReq", - Self::CmdTrainPartyEnterCsReq => "CmdTrainPartyEnterCsReq", - Self::CmdTrainPartyHandlePendingActionScRsp => { - "CmdTrainPartyHandlePendingActionScRsp" + Self::CmdTrainPartyUseCardScRsp => "CmdTrainPartyUseCardScRsp", + Self::CmdTrainPartyTakeBuildLevelAwardCsReq => { + "CmdTrainPartyTakeBuildLevelAwardCsReq" } + Self::CmdTrainPartySyncUpdateScNotify => "CmdTrainPartySyncUpdateScNotify", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdTrainPartyTypeNone" => Some(Self::None), - "CmdTrainPartyAddBuildDynamicBuffScRsp" => { - Some(Self::CmdTrainPartyAddBuildDynamicBuffScRsp) + "CmdTrainPartyMoveScNotify" => Some(Self::CmdTrainPartyMoveScNotify), + "CmdTrainPartyUpdatePosEnvCsReq" => { + Some(Self::CmdTrainPartyUpdatePosEnvCsReq) + } + "CmdTrainPartyBuildDiyCsReq" => Some(Self::CmdTrainPartyBuildDiyCsReq), + "CmdTrainPartyTakeBuildLevelAwardScRsp" => { + Some(Self::CmdTrainPartyTakeBuildLevelAwardScRsp) + } + "CmdTrainPartyBuildDiyScRsp" => Some(Self::CmdTrainPartyBuildDiyScRsp), + "CmdTrainPartyEnterScRsp" => Some(Self::CmdTrainPartyEnterScRsp), + "CmdTrainPartyUseCardCsReq" => Some(Self::CmdTrainPartyUseCardCsReq), + "CmdTrainPartyGamePlaySettleNotify" => { + Some(Self::CmdTrainPartyGamePlaySettleNotify) + } + "CmdTrainPartyLeaveScRsp" => Some(Self::CmdTrainPartyLeaveScRsp), + "CmdTrainPartySettleNotify" => Some(Self::CmdTrainPartySettleNotify), + "CmdTrainPartyGetDataScRsp" => Some(Self::CmdTrainPartyGetDataScRsp), + "CmdTrainPartyBuildingUpdateNotify" => { + Some(Self::CmdTrainPartyBuildingUpdateNotify) + } + "CmdTrainPartyGetDataCsReq" => Some(Self::CmdTrainPartyGetDataCsReq), + "CmdTrainPartyEnterCsReq" => Some(Self::CmdTrainPartyEnterCsReq), + "CmdTrainPartyUpdatePosEnvScRsp" => { + Some(Self::CmdTrainPartyUpdatePosEnvScRsp) + } + "CmdTrainPartyHandlePendingActionScRsp" => { + Some(Self::CmdTrainPartyHandlePendingActionScRsp) + } + "CmdTrainPartyGamePlayStartScRsp" => { + Some(Self::CmdTrainPartyGamePlayStartScRsp) } "CmdTrainPartyBuildStartStepScRsp" => { Some(Self::CmdTrainPartyBuildStartStepScRsp) } - "CmdTrainPartyUseCardScRsp" => Some(Self::CmdTrainPartyUseCardScRsp), - "CmdTrainPartyTakeBuildLevelAwardScRsp" => { - Some(Self::CmdTrainPartyTakeBuildLevelAwardScRsp) + "CmdTrainPartyGamePlayStartCsReq" => { + Some(Self::CmdTrainPartyGamePlayStartCsReq) } - "CmdTrainPartyTakeBuildLevelAwardCsReq" => { - Some(Self::CmdTrainPartyTakeBuildLevelAwardCsReq) + "CmdTrainPartyLeaveCsReq" => Some(Self::CmdTrainPartyLeaveCsReq), + "CmdTrainPartyAddBuildDynamicBuffScRsp" => { + Some(Self::CmdTrainPartyAddBuildDynamicBuffScRsp) + } + "CmdTrainPartyAddBuildDynamicBuffCsReq" => { + Some(Self::CmdTrainPartyAddBuildDynamicBuffCsReq) } "CmdTrainPartyHandlePendingActionCsReq" => { Some(Self::CmdTrainPartyHandlePendingActionCsReq) } - "CmdTrainPartyLeaveCsReq" => Some(Self::CmdTrainPartyLeaveCsReq), - "CmdTrainPartyBuildDiyScRsp" => Some(Self::CmdTrainPartyBuildDiyScRsp), - "CmdTrainPartyGamePlayStartScRsp" => { - Some(Self::CmdTrainPartyGamePlayStartScRsp) - } - "CmdTrainPartySyncUpdateScNotify" => { - Some(Self::CmdTrainPartySyncUpdateScNotify) - } - "CmdTrainPartyEnterScRsp" => Some(Self::CmdTrainPartyEnterScRsp), - "CmdTrainPartyBuildDiyCsReq" => Some(Self::CmdTrainPartyBuildDiyCsReq), - "CmdTrainPartyAddBuildDynamicBuffCsReq" => { - Some(Self::CmdTrainPartyAddBuildDynamicBuffCsReq) - } "CmdTrainPartyBuildStartStepCsReq" => { Some(Self::CmdTrainPartyBuildStartStepCsReq) } - "CmdTrainPartyGamePlaySettleNotify" => { - Some(Self::CmdTrainPartyGamePlaySettleNotify) + "CmdTrainPartyUseCardScRsp" => Some(Self::CmdTrainPartyUseCardScRsp), + "CmdTrainPartyTakeBuildLevelAwardCsReq" => { + Some(Self::CmdTrainPartyTakeBuildLevelAwardCsReq) } - "CmdTrainPartyBuildingUpdateNotify" => { - Some(Self::CmdTrainPartyBuildingUpdateNotify) - } - "CmdTrainPartyGetDataScRsp" => Some(Self::CmdTrainPartyGetDataScRsp), - "CmdTrainPartyMoveScNotify" => Some(Self::CmdTrainPartyMoveScNotify), - "CmdTrainPartyLeaveScRsp" => Some(Self::CmdTrainPartyLeaveScRsp), - "CmdTrainPartyUpdatePosEnvCsReq" => { - Some(Self::CmdTrainPartyUpdatePosEnvCsReq) - } - "CmdTrainPartyGetDataCsReq" => Some(Self::CmdTrainPartyGetDataCsReq), - "CmdTrainPartyUseCardCsReq" => Some(Self::CmdTrainPartyUseCardCsReq), - "CmdTrainPartySettleNotify" => Some(Self::CmdTrainPartySettleNotify), - "CmdTrainPartyUpdatePosEnvScRsp" => { - Some(Self::CmdTrainPartyUpdatePosEnvScRsp) - } - "CmdTrainPartyGamePlayStartCsReq" => { - Some(Self::CmdTrainPartyGamePlayStartCsReq) - } - "CmdTrainPartyEnterCsReq" => Some(Self::CmdTrainPartyEnterCsReq), - "CmdTrainPartyHandlePendingActionScRsp" => { - Some(Self::CmdTrainPartyHandlePendingActionScRsp) + "CmdTrainPartySyncUpdateScNotify" => { + Some(Self::CmdTrainPartySyncUpdateScNotify) } _ => None, } @@ -61413,18 +63761,18 @@ impl TrainPartyMtSkillType { #[repr(i32)] pub enum CmdTrainVisitorType { None = 0, - CmdShowNewSupplementVisitorCsReq = 3772, - CmdTrainVisitorRewardSendNotify = 3748, - CmdGetTrainVisitorRegisterCsReq = 3771, - CmdShowNewSupplementVisitorScRsp = 3785, - CmdTakeTrainVisitorUntakenBehaviorRewardCsReq = 3722, - CmdGetTrainVisitorBehaviorScRsp = 3740, - CmdTrainVisitorBehaviorFinishScRsp = 3732, - CmdGetTrainVisitorBehaviorCsReq = 3731, - CmdTakeTrainVisitorUntakenBehaviorRewardScRsp = 3756, - CmdGetTrainVisitorRegisterScRsp = 3752, - CmdTrainVisitorBehaviorFinishCsReq = 3795, - CmdTrainRefreshTimeNotify = 3776, + CmdTrainVisitorBehaviorFinishScRsp = 3791, + CmdGetTrainVisitorRegisterScRsp = 3759, + CmdGetTrainVisitorBehaviorCsReq = 3767, + CmdTrainVisitorRewardSendNotify = 3721, + CmdGetTrainVisitorRegisterCsReq = 3770, + CmdTakeTrainVisitorUntakenBehaviorRewardCsReq = 3754, + CmdGetTrainVisitorBehaviorScRsp = 3739, + CmdTakeTrainVisitorUntakenBehaviorRewardScRsp = 3777, + CmdTrainVisitorBehaviorFinishCsReq = 3720, + CmdTrainRefreshTimeNotify = 3727, + CmdShowNewSupplementVisitorCsReq = 3780, + CmdShowNewSupplementVisitorScRsp = 3702, } impl CmdTrainVisitorType { /// String value of the enum field names used in the ProtoBuf definition. @@ -61434,34 +63782,40 @@ impl CmdTrainVisitorType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdTrainVisitorTypeNone", - Self::CmdShowNewSupplementVisitorCsReq => "CmdShowNewSupplementVisitorCsReq", + Self::CmdTrainVisitorBehaviorFinishScRsp => { + "CmdTrainVisitorBehaviorFinishScRsp" + } + Self::CmdGetTrainVisitorRegisterScRsp => "CmdGetTrainVisitorRegisterScRsp", + Self::CmdGetTrainVisitorBehaviorCsReq => "CmdGetTrainVisitorBehaviorCsReq", Self::CmdTrainVisitorRewardSendNotify => "CmdTrainVisitorRewardSendNotify", Self::CmdGetTrainVisitorRegisterCsReq => "CmdGetTrainVisitorRegisterCsReq", - Self::CmdShowNewSupplementVisitorScRsp => "CmdShowNewSupplementVisitorScRsp", Self::CmdTakeTrainVisitorUntakenBehaviorRewardCsReq => { "CmdTakeTrainVisitorUntakenBehaviorRewardCsReq" } Self::CmdGetTrainVisitorBehaviorScRsp => "CmdGetTrainVisitorBehaviorScRsp", - Self::CmdTrainVisitorBehaviorFinishScRsp => { - "CmdTrainVisitorBehaviorFinishScRsp" - } - Self::CmdGetTrainVisitorBehaviorCsReq => "CmdGetTrainVisitorBehaviorCsReq", Self::CmdTakeTrainVisitorUntakenBehaviorRewardScRsp => { "CmdTakeTrainVisitorUntakenBehaviorRewardScRsp" } - Self::CmdGetTrainVisitorRegisterScRsp => "CmdGetTrainVisitorRegisterScRsp", Self::CmdTrainVisitorBehaviorFinishCsReq => { "CmdTrainVisitorBehaviorFinishCsReq" } Self::CmdTrainRefreshTimeNotify => "CmdTrainRefreshTimeNotify", + Self::CmdShowNewSupplementVisitorCsReq => "CmdShowNewSupplementVisitorCsReq", + Self::CmdShowNewSupplementVisitorScRsp => "CmdShowNewSupplementVisitorScRsp", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdTrainVisitorTypeNone" => Some(Self::None), - "CmdShowNewSupplementVisitorCsReq" => { - Some(Self::CmdShowNewSupplementVisitorCsReq) + "CmdTrainVisitorBehaviorFinishScRsp" => { + Some(Self::CmdTrainVisitorBehaviorFinishScRsp) + } + "CmdGetTrainVisitorRegisterScRsp" => { + Some(Self::CmdGetTrainVisitorRegisterScRsp) + } + "CmdGetTrainVisitorBehaviorCsReq" => { + Some(Self::CmdGetTrainVisitorBehaviorCsReq) } "CmdTrainVisitorRewardSendNotify" => { Some(Self::CmdTrainVisitorRewardSendNotify) @@ -61469,31 +63823,25 @@ impl CmdTrainVisitorType { "CmdGetTrainVisitorRegisterCsReq" => { Some(Self::CmdGetTrainVisitorRegisterCsReq) } - "CmdShowNewSupplementVisitorScRsp" => { - Some(Self::CmdShowNewSupplementVisitorScRsp) - } "CmdTakeTrainVisitorUntakenBehaviorRewardCsReq" => { Some(Self::CmdTakeTrainVisitorUntakenBehaviorRewardCsReq) } "CmdGetTrainVisitorBehaviorScRsp" => { Some(Self::CmdGetTrainVisitorBehaviorScRsp) } - "CmdTrainVisitorBehaviorFinishScRsp" => { - Some(Self::CmdTrainVisitorBehaviorFinishScRsp) - } - "CmdGetTrainVisitorBehaviorCsReq" => { - Some(Self::CmdGetTrainVisitorBehaviorCsReq) - } "CmdTakeTrainVisitorUntakenBehaviorRewardScRsp" => { Some(Self::CmdTakeTrainVisitorUntakenBehaviorRewardScRsp) } - "CmdGetTrainVisitorRegisterScRsp" => { - Some(Self::CmdGetTrainVisitorRegisterScRsp) - } "CmdTrainVisitorBehaviorFinishCsReq" => { Some(Self::CmdTrainVisitorBehaviorFinishCsReq) } "CmdTrainRefreshTimeNotify" => Some(Self::CmdTrainRefreshTimeNotify), + "CmdShowNewSupplementVisitorCsReq" => { + Some(Self::CmdShowNewSupplementVisitorCsReq) + } + "CmdShowNewSupplementVisitorScRsp" => { + Some(Self::CmdShowNewSupplementVisitorScRsp) + } _ => None, } } @@ -61620,26 +63968,26 @@ impl Jfjjfgaeoab { #[repr(i32)] pub enum CmdTravelBrochure { None = 0, - SelectMessageCsReq = 6476, - PageResetCsReq = 6443, - RemovePasterCsReq = 6422, - RemovePasterScRsp = 6456, - GetDataScRsp = 6432, - GetPasterScNotify = 6416, - ApplyPasterCsReq = 6471, - ApplyPasterListCsReq = 6442, - SetCustomValueCsReq = 6483, - UpdatePasterPosCsReq = 6472, - GetDataCsReq = 6495, - SetPageDescStatusScRsp = 6439, - ApplyPasterListScRsp = 6477, - PageResetScRsp = 6433, - UpdatePasterPosScRsp = 6485, - SetCustomValueScRsp = 6460, - SelectMessageScRsp = 6448, - PageUnlockScNotify = 6431, - ApplyPasterScRsp = 6452, - SetPageDescStatusCsReq = 6402, + SetCustomValueScRsp = 6498, + RemovePasterCsReq = 6454, + ApplyPasterCsReq = 6470, + UpdatePasterPosScRsp = 6402, + SelectMessageCsReq = 6427, + GetPasterScNotify = 6405, + UpdatePasterPosCsReq = 6480, + SetPageDescStatusCsReq = 6485, + ApplyPasterListScRsp = 6436, + RemovePasterScRsp = 6477, + PageResetCsReq = 6452, + ApplyPasterScRsp = 6459, + GetDataScRsp = 6491, + SelectMessageScRsp = 6421, + SetPageDescStatusScRsp = 6438, + SetCustomValueCsReq = 6473, + ApplyPasterListCsReq = 6494, + PageResetScRsp = 6468, + GetDataCsReq = 6420, + PageUnlockScNotify = 6467, } impl CmdTravelBrochure { /// String value of the enum field names used in the ProtoBuf definition. @@ -61649,56 +63997,56 @@ impl CmdTravelBrochure { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdTravelBrochureNone", - Self::SelectMessageCsReq => "CmdTravelBrochureSelectMessageCsReq", - Self::PageResetCsReq => "CmdTravelBrochurePageResetCsReq", - Self::RemovePasterCsReq => "CmdTravelBrochureRemovePasterCsReq", - Self::RemovePasterScRsp => "CmdTravelBrochureRemovePasterScRsp", - Self::GetDataScRsp => "CmdTravelBrochureGetDataScRsp", - Self::GetPasterScNotify => "CmdTravelBrochureGetPasterScNotify", - Self::ApplyPasterCsReq => "CmdTravelBrochureApplyPasterCsReq", - Self::ApplyPasterListCsReq => "CmdTravelBrochureApplyPasterListCsReq", - Self::SetCustomValueCsReq => "CmdTravelBrochureSetCustomValueCsReq", - Self::UpdatePasterPosCsReq => "CmdTravelBrochureUpdatePasterPosCsReq", - Self::GetDataCsReq => "CmdTravelBrochureGetDataCsReq", - Self::SetPageDescStatusScRsp => "CmdTravelBrochureSetPageDescStatusScRsp", - Self::ApplyPasterListScRsp => "CmdTravelBrochureApplyPasterListScRsp", - Self::PageResetScRsp => "CmdTravelBrochurePageResetScRsp", - Self::UpdatePasterPosScRsp => "CmdTravelBrochureUpdatePasterPosScRsp", Self::SetCustomValueScRsp => "CmdTravelBrochureSetCustomValueScRsp", - Self::SelectMessageScRsp => "CmdTravelBrochureSelectMessageScRsp", - Self::PageUnlockScNotify => "CmdTravelBrochurePageUnlockScNotify", - Self::ApplyPasterScRsp => "CmdTravelBrochureApplyPasterScRsp", + Self::RemovePasterCsReq => "CmdTravelBrochureRemovePasterCsReq", + Self::ApplyPasterCsReq => "CmdTravelBrochureApplyPasterCsReq", + Self::UpdatePasterPosScRsp => "CmdTravelBrochureUpdatePasterPosScRsp", + Self::SelectMessageCsReq => "CmdTravelBrochureSelectMessageCsReq", + Self::GetPasterScNotify => "CmdTravelBrochureGetPasterScNotify", + Self::UpdatePasterPosCsReq => "CmdTravelBrochureUpdatePasterPosCsReq", Self::SetPageDescStatusCsReq => "CmdTravelBrochureSetPageDescStatusCsReq", + Self::ApplyPasterListScRsp => "CmdTravelBrochureApplyPasterListScRsp", + Self::RemovePasterScRsp => "CmdTravelBrochureRemovePasterScRsp", + Self::PageResetCsReq => "CmdTravelBrochurePageResetCsReq", + Self::ApplyPasterScRsp => "CmdTravelBrochureApplyPasterScRsp", + Self::GetDataScRsp => "CmdTravelBrochureGetDataScRsp", + Self::SelectMessageScRsp => "CmdTravelBrochureSelectMessageScRsp", + Self::SetPageDescStatusScRsp => "CmdTravelBrochureSetPageDescStatusScRsp", + Self::SetCustomValueCsReq => "CmdTravelBrochureSetCustomValueCsReq", + Self::ApplyPasterListCsReq => "CmdTravelBrochureApplyPasterListCsReq", + Self::PageResetScRsp => "CmdTravelBrochurePageResetScRsp", + Self::GetDataCsReq => "CmdTravelBrochureGetDataCsReq", + Self::PageUnlockScNotify => "CmdTravelBrochurePageUnlockScNotify", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdTravelBrochureNone" => Some(Self::None), - "CmdTravelBrochureSelectMessageCsReq" => Some(Self::SelectMessageCsReq), - "CmdTravelBrochurePageResetCsReq" => Some(Self::PageResetCsReq), - "CmdTravelBrochureRemovePasterCsReq" => Some(Self::RemovePasterCsReq), - "CmdTravelBrochureRemovePasterScRsp" => Some(Self::RemovePasterScRsp), - "CmdTravelBrochureGetDataScRsp" => Some(Self::GetDataScRsp), - "CmdTravelBrochureGetPasterScNotify" => Some(Self::GetPasterScNotify), - "CmdTravelBrochureApplyPasterCsReq" => Some(Self::ApplyPasterCsReq), - "CmdTravelBrochureApplyPasterListCsReq" => Some(Self::ApplyPasterListCsReq), - "CmdTravelBrochureSetCustomValueCsReq" => Some(Self::SetCustomValueCsReq), - "CmdTravelBrochureUpdatePasterPosCsReq" => Some(Self::UpdatePasterPosCsReq), - "CmdTravelBrochureGetDataCsReq" => Some(Self::GetDataCsReq), - "CmdTravelBrochureSetPageDescStatusScRsp" => { - Some(Self::SetPageDescStatusScRsp) - } - "CmdTravelBrochureApplyPasterListScRsp" => Some(Self::ApplyPasterListScRsp), - "CmdTravelBrochurePageResetScRsp" => Some(Self::PageResetScRsp), - "CmdTravelBrochureUpdatePasterPosScRsp" => Some(Self::UpdatePasterPosScRsp), "CmdTravelBrochureSetCustomValueScRsp" => Some(Self::SetCustomValueScRsp), - "CmdTravelBrochureSelectMessageScRsp" => Some(Self::SelectMessageScRsp), - "CmdTravelBrochurePageUnlockScNotify" => Some(Self::PageUnlockScNotify), - "CmdTravelBrochureApplyPasterScRsp" => Some(Self::ApplyPasterScRsp), + "CmdTravelBrochureRemovePasterCsReq" => Some(Self::RemovePasterCsReq), + "CmdTravelBrochureApplyPasterCsReq" => Some(Self::ApplyPasterCsReq), + "CmdTravelBrochureUpdatePasterPosScRsp" => Some(Self::UpdatePasterPosScRsp), + "CmdTravelBrochureSelectMessageCsReq" => Some(Self::SelectMessageCsReq), + "CmdTravelBrochureGetPasterScNotify" => Some(Self::GetPasterScNotify), + "CmdTravelBrochureUpdatePasterPosCsReq" => Some(Self::UpdatePasterPosCsReq), "CmdTravelBrochureSetPageDescStatusCsReq" => { Some(Self::SetPageDescStatusCsReq) } + "CmdTravelBrochureApplyPasterListScRsp" => Some(Self::ApplyPasterListScRsp), + "CmdTravelBrochureRemovePasterScRsp" => Some(Self::RemovePasterScRsp), + "CmdTravelBrochurePageResetCsReq" => Some(Self::PageResetCsReq), + "CmdTravelBrochureApplyPasterScRsp" => Some(Self::ApplyPasterScRsp), + "CmdTravelBrochureGetDataScRsp" => Some(Self::GetDataScRsp), + "CmdTravelBrochureSelectMessageScRsp" => Some(Self::SelectMessageScRsp), + "CmdTravelBrochureSetPageDescStatusScRsp" => { + Some(Self::SetPageDescStatusScRsp) + } + "CmdTravelBrochureSetCustomValueCsReq" => Some(Self::SetCustomValueCsReq), + "CmdTravelBrochureApplyPasterListCsReq" => Some(Self::ApplyPasterListCsReq), + "CmdTravelBrochurePageResetScRsp" => Some(Self::PageResetScRsp), + "CmdTravelBrochureGetDataCsReq" => Some(Self::GetDataCsReq), + "CmdTravelBrochurePageUnlockScNotify" => Some(Self::PageUnlockScNotify), _ => None, } } @@ -61769,22 +64117,22 @@ impl Dcjaopdinoi { #[repr(i32)] pub enum CmdTreasureDungeonType { None = 0, - CmdTreasureDungeonDataScNotify = 4495, - CmdQuitTreasureDungeonCsReq = 4458, - CmdUseTreasureDungeonItemCsReq = 4442, - CmdOpenTreasureDungeonGridScRsp = 4460, - CmdOpenTreasureDungeonGridCsReq = 4483, - CmdTreasureDungeonFinishScNotify = 4432, - CmdUseTreasureDungeonItemScRsp = 4477, - CmdInteractTreasureDungeonGridCsReq = 4443, - CmdGetTreasureDungeonActivityDataCsReq = 4472, - CmdGetTreasureDungeonActivityDataScRsp = 4485, - CmdEnterTreasureDungeonScRsp = 4446, - CmdEnterTreasureDungeonCsReq = 4416, - CmdInteractTreasureDungeonGridScRsp = 4433, - CmdFightTreasureDungeonMonsterCsReq = 4402, - CmdFightTreasureDungeonMonsterScRsp = 4439, - CmdQuitTreasureDungeonScRsp = 4421, + CmdEnterTreasureDungeonCsReq = 4405, + CmdInteractTreasureDungeonGridCsReq = 4452, + CmdUseTreasureDungeonItemScRsp = 4436, + CmdEnterTreasureDungeonScRsp = 4474, + CmdQuitTreasureDungeonCsReq = 4487, + CmdTreasureDungeonFinishScNotify = 4491, + CmdGetTreasureDungeonActivityDataScRsp = 4402, + CmdTreasureDungeonDataScNotify = 4420, + CmdGetTreasureDungeonActivityDataCsReq = 4480, + CmdOpenTreasureDungeonGridCsReq = 4473, + CmdInteractTreasureDungeonGridScRsp = 4468, + CmdOpenTreasureDungeonGridScRsp = 4498, + CmdUseTreasureDungeonItemCsReq = 4494, + CmdFightTreasureDungeonMonsterScRsp = 4438, + CmdFightTreasureDungeonMonsterCsReq = 4485, + CmdQuitTreasureDungeonScRsp = 4409, } impl CmdTreasureDungeonType { /// String value of the enum field names used in the ProtoBuf definition. @@ -61794,33 +64142,33 @@ impl CmdTreasureDungeonType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdTreasureDungeonTypeNone", - Self::CmdTreasureDungeonDataScNotify => "CmdTreasureDungeonDataScNotify", - Self::CmdQuitTreasureDungeonCsReq => "CmdQuitTreasureDungeonCsReq", - Self::CmdUseTreasureDungeonItemCsReq => "CmdUseTreasureDungeonItemCsReq", - Self::CmdOpenTreasureDungeonGridScRsp => "CmdOpenTreasureDungeonGridScRsp", - Self::CmdOpenTreasureDungeonGridCsReq => "CmdOpenTreasureDungeonGridCsReq", - Self::CmdTreasureDungeonFinishScNotify => "CmdTreasureDungeonFinishScNotify", - Self::CmdUseTreasureDungeonItemScRsp => "CmdUseTreasureDungeonItemScRsp", + Self::CmdEnterTreasureDungeonCsReq => "CmdEnterTreasureDungeonCsReq", Self::CmdInteractTreasureDungeonGridCsReq => { "CmdInteractTreasureDungeonGridCsReq" } - Self::CmdGetTreasureDungeonActivityDataCsReq => { - "CmdGetTreasureDungeonActivityDataCsReq" - } + Self::CmdUseTreasureDungeonItemScRsp => "CmdUseTreasureDungeonItemScRsp", + Self::CmdEnterTreasureDungeonScRsp => "CmdEnterTreasureDungeonScRsp", + Self::CmdQuitTreasureDungeonCsReq => "CmdQuitTreasureDungeonCsReq", + Self::CmdTreasureDungeonFinishScNotify => "CmdTreasureDungeonFinishScNotify", Self::CmdGetTreasureDungeonActivityDataScRsp => { "CmdGetTreasureDungeonActivityDataScRsp" } - Self::CmdEnterTreasureDungeonScRsp => "CmdEnterTreasureDungeonScRsp", - Self::CmdEnterTreasureDungeonCsReq => "CmdEnterTreasureDungeonCsReq", + Self::CmdTreasureDungeonDataScNotify => "CmdTreasureDungeonDataScNotify", + Self::CmdGetTreasureDungeonActivityDataCsReq => { + "CmdGetTreasureDungeonActivityDataCsReq" + } + Self::CmdOpenTreasureDungeonGridCsReq => "CmdOpenTreasureDungeonGridCsReq", Self::CmdInteractTreasureDungeonGridScRsp => { "CmdInteractTreasureDungeonGridScRsp" } - Self::CmdFightTreasureDungeonMonsterCsReq => { - "CmdFightTreasureDungeonMonsterCsReq" - } + Self::CmdOpenTreasureDungeonGridScRsp => "CmdOpenTreasureDungeonGridScRsp", + Self::CmdUseTreasureDungeonItemCsReq => "CmdUseTreasureDungeonItemCsReq", Self::CmdFightTreasureDungeonMonsterScRsp => { "CmdFightTreasureDungeonMonsterScRsp" } + Self::CmdFightTreasureDungeonMonsterCsReq => { + "CmdFightTreasureDungeonMonsterCsReq" + } Self::CmdQuitTreasureDungeonScRsp => "CmdQuitTreasureDungeonScRsp", } } @@ -61828,45 +64176,45 @@ impl CmdTreasureDungeonType { pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdTreasureDungeonTypeNone" => Some(Self::None), - "CmdTreasureDungeonDataScNotify" => { - Some(Self::CmdTreasureDungeonDataScNotify) - } - "CmdQuitTreasureDungeonCsReq" => Some(Self::CmdQuitTreasureDungeonCsReq), - "CmdUseTreasureDungeonItemCsReq" => { - Some(Self::CmdUseTreasureDungeonItemCsReq) - } - "CmdOpenTreasureDungeonGridScRsp" => { - Some(Self::CmdOpenTreasureDungeonGridScRsp) - } - "CmdOpenTreasureDungeonGridCsReq" => { - Some(Self::CmdOpenTreasureDungeonGridCsReq) - } - "CmdTreasureDungeonFinishScNotify" => { - Some(Self::CmdTreasureDungeonFinishScNotify) + "CmdEnterTreasureDungeonCsReq" => Some(Self::CmdEnterTreasureDungeonCsReq), + "CmdInteractTreasureDungeonGridCsReq" => { + Some(Self::CmdInteractTreasureDungeonGridCsReq) } "CmdUseTreasureDungeonItemScRsp" => { Some(Self::CmdUseTreasureDungeonItemScRsp) } - "CmdInteractTreasureDungeonGridCsReq" => { - Some(Self::CmdInteractTreasureDungeonGridCsReq) - } - "CmdGetTreasureDungeonActivityDataCsReq" => { - Some(Self::CmdGetTreasureDungeonActivityDataCsReq) + "CmdEnterTreasureDungeonScRsp" => Some(Self::CmdEnterTreasureDungeonScRsp), + "CmdQuitTreasureDungeonCsReq" => Some(Self::CmdQuitTreasureDungeonCsReq), + "CmdTreasureDungeonFinishScNotify" => { + Some(Self::CmdTreasureDungeonFinishScNotify) } "CmdGetTreasureDungeonActivityDataScRsp" => { Some(Self::CmdGetTreasureDungeonActivityDataScRsp) } - "CmdEnterTreasureDungeonScRsp" => Some(Self::CmdEnterTreasureDungeonScRsp), - "CmdEnterTreasureDungeonCsReq" => Some(Self::CmdEnterTreasureDungeonCsReq), + "CmdTreasureDungeonDataScNotify" => { + Some(Self::CmdTreasureDungeonDataScNotify) + } + "CmdGetTreasureDungeonActivityDataCsReq" => { + Some(Self::CmdGetTreasureDungeonActivityDataCsReq) + } + "CmdOpenTreasureDungeonGridCsReq" => { + Some(Self::CmdOpenTreasureDungeonGridCsReq) + } "CmdInteractTreasureDungeonGridScRsp" => { Some(Self::CmdInteractTreasureDungeonGridScRsp) } - "CmdFightTreasureDungeonMonsterCsReq" => { - Some(Self::CmdFightTreasureDungeonMonsterCsReq) + "CmdOpenTreasureDungeonGridScRsp" => { + Some(Self::CmdOpenTreasureDungeonGridScRsp) + } + "CmdUseTreasureDungeonItemCsReq" => { + Some(Self::CmdUseTreasureDungeonItemCsReq) } "CmdFightTreasureDungeonMonsterScRsp" => { Some(Self::CmdFightTreasureDungeonMonsterScRsp) } + "CmdFightTreasureDungeonMonsterCsReq" => { + Some(Self::CmdFightTreasureDungeonMonsterCsReq) + } "CmdQuitTreasureDungeonScRsp" => Some(Self::CmdQuitTreasureDungeonScRsp), _ => None, } @@ -62071,18 +64419,18 @@ impl Imknbjcoiop { #[repr(i32)] pub enum CmdTutorialType { None = 0, - CmdFinishTutorialGuideCsReq = 1672, - CmdFinishTutorialScRsp = 1656, - CmdGetTutorialGuideScRsp = 1640, - CmdUnlockTutorialCsReq = 1676, - CmdFinishTutorialCsReq = 1622, - CmdGetTutorialCsReq = 1695, - CmdGetTutorialGuideCsReq = 1631, - CmdGetTutorialScRsp = 1632, - CmdFinishTutorialGuideScRsp = 1685, - CmdUnlockTutorialGuideScRsp = 1652, - CmdUnlockTutorialScRsp = 1648, - CmdUnlockTutorialGuideCsReq = 1671, + CmdFinishTutorialCsReq = 1654, + CmdFinishTutorialScRsp = 1677, + CmdGetTutorialCsReq = 1620, + CmdGetTutorialGuideScRsp = 1639, + CmdGetTutorialScRsp = 1691, + CmdGetTutorialGuideCsReq = 1667, + CmdUnlockTutorialCsReq = 1627, + CmdUnlockTutorialScRsp = 1621, + CmdFinishTutorialGuideScRsp = 1602, + CmdUnlockTutorialGuideScRsp = 1659, + CmdFinishTutorialGuideCsReq = 1680, + CmdUnlockTutorialGuideCsReq = 1670, } impl CmdTutorialType { /// String value of the enum field names used in the ProtoBuf definition. @@ -62092,17 +64440,17 @@ impl CmdTutorialType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdTutorialTypeNone", - Self::CmdFinishTutorialGuideCsReq => "CmdFinishTutorialGuideCsReq", - Self::CmdFinishTutorialScRsp => "CmdFinishTutorialScRsp", - Self::CmdGetTutorialGuideScRsp => "CmdGetTutorialGuideScRsp", - Self::CmdUnlockTutorialCsReq => "CmdUnlockTutorialCsReq", Self::CmdFinishTutorialCsReq => "CmdFinishTutorialCsReq", + Self::CmdFinishTutorialScRsp => "CmdFinishTutorialScRsp", Self::CmdGetTutorialCsReq => "CmdGetTutorialCsReq", - Self::CmdGetTutorialGuideCsReq => "CmdGetTutorialGuideCsReq", + Self::CmdGetTutorialGuideScRsp => "CmdGetTutorialGuideScRsp", Self::CmdGetTutorialScRsp => "CmdGetTutorialScRsp", + Self::CmdGetTutorialGuideCsReq => "CmdGetTutorialGuideCsReq", + Self::CmdUnlockTutorialCsReq => "CmdUnlockTutorialCsReq", + Self::CmdUnlockTutorialScRsp => "CmdUnlockTutorialScRsp", Self::CmdFinishTutorialGuideScRsp => "CmdFinishTutorialGuideScRsp", Self::CmdUnlockTutorialGuideScRsp => "CmdUnlockTutorialGuideScRsp", - Self::CmdUnlockTutorialScRsp => "CmdUnlockTutorialScRsp", + Self::CmdFinishTutorialGuideCsReq => "CmdFinishTutorialGuideCsReq", Self::CmdUnlockTutorialGuideCsReq => "CmdUnlockTutorialGuideCsReq", } } @@ -62110,17 +64458,17 @@ impl CmdTutorialType { pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdTutorialTypeNone" => Some(Self::None), - "CmdFinishTutorialGuideCsReq" => Some(Self::CmdFinishTutorialGuideCsReq), - "CmdFinishTutorialScRsp" => Some(Self::CmdFinishTutorialScRsp), - "CmdGetTutorialGuideScRsp" => Some(Self::CmdGetTutorialGuideScRsp), - "CmdUnlockTutorialCsReq" => Some(Self::CmdUnlockTutorialCsReq), "CmdFinishTutorialCsReq" => Some(Self::CmdFinishTutorialCsReq), + "CmdFinishTutorialScRsp" => Some(Self::CmdFinishTutorialScRsp), "CmdGetTutorialCsReq" => Some(Self::CmdGetTutorialCsReq), - "CmdGetTutorialGuideCsReq" => Some(Self::CmdGetTutorialGuideCsReq), + "CmdGetTutorialGuideScRsp" => Some(Self::CmdGetTutorialGuideScRsp), "CmdGetTutorialScRsp" => Some(Self::CmdGetTutorialScRsp), + "CmdGetTutorialGuideCsReq" => Some(Self::CmdGetTutorialGuideCsReq), + "CmdUnlockTutorialCsReq" => Some(Self::CmdUnlockTutorialCsReq), + "CmdUnlockTutorialScRsp" => Some(Self::CmdUnlockTutorialScRsp), "CmdFinishTutorialGuideScRsp" => Some(Self::CmdFinishTutorialGuideScRsp), "CmdUnlockTutorialGuideScRsp" => Some(Self::CmdUnlockTutorialGuideScRsp), - "CmdUnlockTutorialScRsp" => Some(Self::CmdUnlockTutorialScRsp), + "CmdFinishTutorialGuideCsReq" => Some(Self::CmdFinishTutorialGuideCsReq), "CmdUnlockTutorialGuideCsReq" => Some(Self::CmdUnlockTutorialGuideCsReq), _ => None, } @@ -62162,15 +64510,15 @@ impl TutorialStatus { #[repr(i32)] pub enum CmdWaypointType { None = 0, - CmdSetCurWaypointScRsp = 440, - CmdGetWaypointScRsp = 432, - CmdGetWaypointCsReq = 495, - CmdTakeChapterRewardScRsp = 422, - CmdSetCurWaypointCsReq = 431, - CmdGetChapterScRsp = 448, - CmdWaypointShowNewCsNotify = 471, - CmdGetChapterCsReq = 476, - CmdTakeChapterRewardCsReq = 452, + CmdTakeChapterRewardScRsp = 454, + CmdSetCurWaypointCsReq = 467, + CmdTakeChapterRewardCsReq = 459, + CmdGetWaypointCsReq = 420, + CmdSetCurWaypointScRsp = 439, + CmdGetChapterCsReq = 427, + CmdGetChapterScRsp = 421, + CmdWaypointShowNewCsNotify = 470, + CmdGetWaypointScRsp = 491, } impl CmdWaypointType { /// String value of the enum field names used in the ProtoBuf definition. @@ -62180,30 +64528,30 @@ impl CmdWaypointType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdWaypointTypeNone", - Self::CmdSetCurWaypointScRsp => "CmdSetCurWaypointScRsp", - Self::CmdGetWaypointScRsp => "CmdGetWaypointScRsp", - Self::CmdGetWaypointCsReq => "CmdGetWaypointCsReq", Self::CmdTakeChapterRewardScRsp => "CmdTakeChapterRewardScRsp", Self::CmdSetCurWaypointCsReq => "CmdSetCurWaypointCsReq", + Self::CmdTakeChapterRewardCsReq => "CmdTakeChapterRewardCsReq", + Self::CmdGetWaypointCsReq => "CmdGetWaypointCsReq", + Self::CmdSetCurWaypointScRsp => "CmdSetCurWaypointScRsp", + Self::CmdGetChapterCsReq => "CmdGetChapterCsReq", Self::CmdGetChapterScRsp => "CmdGetChapterScRsp", Self::CmdWaypointShowNewCsNotify => "CmdWaypointShowNewCsNotify", - Self::CmdGetChapterCsReq => "CmdGetChapterCsReq", - Self::CmdTakeChapterRewardCsReq => "CmdTakeChapterRewardCsReq", + Self::CmdGetWaypointScRsp => "CmdGetWaypointScRsp", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdWaypointTypeNone" => Some(Self::None), - "CmdSetCurWaypointScRsp" => Some(Self::CmdSetCurWaypointScRsp), - "CmdGetWaypointScRsp" => Some(Self::CmdGetWaypointScRsp), - "CmdGetWaypointCsReq" => Some(Self::CmdGetWaypointCsReq), "CmdTakeChapterRewardScRsp" => Some(Self::CmdTakeChapterRewardScRsp), "CmdSetCurWaypointCsReq" => Some(Self::CmdSetCurWaypointCsReq), + "CmdTakeChapterRewardCsReq" => Some(Self::CmdTakeChapterRewardCsReq), + "CmdGetWaypointCsReq" => Some(Self::CmdGetWaypointCsReq), + "CmdSetCurWaypointScRsp" => Some(Self::CmdSetCurWaypointScRsp), + "CmdGetChapterCsReq" => Some(Self::CmdGetChapterCsReq), "CmdGetChapterScRsp" => Some(Self::CmdGetChapterScRsp), "CmdWaypointShowNewCsNotify" => Some(Self::CmdWaypointShowNewCsNotify), - "CmdGetChapterCsReq" => Some(Self::CmdGetChapterCsReq), - "CmdTakeChapterRewardCsReq" => Some(Self::CmdTakeChapterRewardCsReq), + "CmdGetWaypointScRsp" => Some(Self::CmdGetWaypointScRsp), _ => None, } } @@ -62274,25 +64622,25 @@ impl Obfaicfogmp { #[repr(i32)] pub enum CmdWolfBroType { None = 0, - CmdGetWolfBroGameDataCsReq = 6543, - CmdWolfBroGameExplodeMonsterScRsp = 6526, - CmdArchiveWolfBroGameScRsp = 6537, - CmdArchiveWolfBroGameCsReq = 6502, - CmdWolfBroGameActivateBulletCsReq = 6544, - CmdGetWolfBroGameDataScRsp = 6509, - CmdRestoreWolfBroGameArchiveCsReq = 6536, - CmdWolfBroGameActivateBulletScRsp = 6532, - CmdQuitWolfBroGameScRsp = 6515, - CmdWolfBroGameExplodeMonsterCsReq = 6523, + CmdWolfBroGameActivateBulletScRsp = 6546, + CmdWolfBroGameActivateBulletCsReq = 6534, + CmdWolfBroGameExplodeMonsterScRsp = 6525, CmdWolfBroGameDataChangeScNotify = 6545, - CmdWolfBroGameUseBulletCsReq = 6507, - CmdQuitWolfBroGameCsReq = 6527, - CmdWolfBroGamePickupBulletScRsp = 6520, - CmdWolfBroGamePickupBulletCsReq = 6540, - CmdRestoreWolfBroGameArchiveScRsp = 6517, - CmdStartWolfBroGameScRsp = 6546, - CmdStartWolfBroGameCsReq = 6504, - CmdWolfBroGameUseBulletScRsp = 6550, + CmdWolfBroGameExplodeMonsterCsReq = 6522, + CmdGetWolfBroGameDataCsReq = 6512, + CmdRestoreWolfBroGameArchiveScRsp = 6537, + CmdArchiveWolfBroGameCsReq = 6518, + CmdWolfBroGameUseBulletScRsp = 6528, + CmdWolfBroGameUseBulletCsReq = 6506, + CmdGetWolfBroGameDataScRsp = 6510, + CmdWolfBroGamePickupBulletScRsp = 6526, + CmdStartWolfBroGameCsReq = 6549, + CmdQuitWolfBroGameScRsp = 6539, + CmdWolfBroGamePickupBulletCsReq = 6519, + CmdRestoreWolfBroGameArchiveCsReq = 6511, + CmdQuitWolfBroGameCsReq = 6517, + CmdStartWolfBroGameScRsp = 6527, + CmdArchiveWolfBroGameScRsp = 6536, } impl CmdWolfBroType { /// String value of the enum field names used in the ProtoBuf definition. @@ -62302,80 +64650,80 @@ impl CmdWolfBroType { pub fn as_str_name(&self) -> &'static str { match self { Self::None => "CmdWolfBroTypeNone", - Self::CmdGetWolfBroGameDataCsReq => "CmdGetWolfBroGameDataCsReq", - Self::CmdWolfBroGameExplodeMonsterScRsp => { - "CmdWolfBroGameExplodeMonsterScRsp" - } - Self::CmdArchiveWolfBroGameScRsp => "CmdArchiveWolfBroGameScRsp", - Self::CmdArchiveWolfBroGameCsReq => "CmdArchiveWolfBroGameCsReq", - Self::CmdWolfBroGameActivateBulletCsReq => { - "CmdWolfBroGameActivateBulletCsReq" - } - Self::CmdGetWolfBroGameDataScRsp => "CmdGetWolfBroGameDataScRsp", - Self::CmdRestoreWolfBroGameArchiveCsReq => { - "CmdRestoreWolfBroGameArchiveCsReq" - } Self::CmdWolfBroGameActivateBulletScRsp => { "CmdWolfBroGameActivateBulletScRsp" } - Self::CmdQuitWolfBroGameScRsp => "CmdQuitWolfBroGameScRsp", + Self::CmdWolfBroGameActivateBulletCsReq => { + "CmdWolfBroGameActivateBulletCsReq" + } + Self::CmdWolfBroGameExplodeMonsterScRsp => { + "CmdWolfBroGameExplodeMonsterScRsp" + } + Self::CmdWolfBroGameDataChangeScNotify => "CmdWolfBroGameDataChangeScNotify", Self::CmdWolfBroGameExplodeMonsterCsReq => { "CmdWolfBroGameExplodeMonsterCsReq" } - Self::CmdWolfBroGameDataChangeScNotify => "CmdWolfBroGameDataChangeScNotify", - Self::CmdWolfBroGameUseBulletCsReq => "CmdWolfBroGameUseBulletCsReq", - Self::CmdQuitWolfBroGameCsReq => "CmdQuitWolfBroGameCsReq", - Self::CmdWolfBroGamePickupBulletScRsp => "CmdWolfBroGamePickupBulletScRsp", - Self::CmdWolfBroGamePickupBulletCsReq => "CmdWolfBroGamePickupBulletCsReq", + Self::CmdGetWolfBroGameDataCsReq => "CmdGetWolfBroGameDataCsReq", Self::CmdRestoreWolfBroGameArchiveScRsp => { "CmdRestoreWolfBroGameArchiveScRsp" } - Self::CmdStartWolfBroGameScRsp => "CmdStartWolfBroGameScRsp", - Self::CmdStartWolfBroGameCsReq => "CmdStartWolfBroGameCsReq", + Self::CmdArchiveWolfBroGameCsReq => "CmdArchiveWolfBroGameCsReq", Self::CmdWolfBroGameUseBulletScRsp => "CmdWolfBroGameUseBulletScRsp", + Self::CmdWolfBroGameUseBulletCsReq => "CmdWolfBroGameUseBulletCsReq", + Self::CmdGetWolfBroGameDataScRsp => "CmdGetWolfBroGameDataScRsp", + Self::CmdWolfBroGamePickupBulletScRsp => "CmdWolfBroGamePickupBulletScRsp", + Self::CmdStartWolfBroGameCsReq => "CmdStartWolfBroGameCsReq", + Self::CmdQuitWolfBroGameScRsp => "CmdQuitWolfBroGameScRsp", + Self::CmdWolfBroGamePickupBulletCsReq => "CmdWolfBroGamePickupBulletCsReq", + Self::CmdRestoreWolfBroGameArchiveCsReq => { + "CmdRestoreWolfBroGameArchiveCsReq" + } + Self::CmdQuitWolfBroGameCsReq => "CmdQuitWolfBroGameCsReq", + Self::CmdStartWolfBroGameScRsp => "CmdStartWolfBroGameScRsp", + Self::CmdArchiveWolfBroGameScRsp => "CmdArchiveWolfBroGameScRsp", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { "CmdWolfBroTypeNone" => Some(Self::None), - "CmdGetWolfBroGameDataCsReq" => Some(Self::CmdGetWolfBroGameDataCsReq), - "CmdWolfBroGameExplodeMonsterScRsp" => { - Some(Self::CmdWolfBroGameExplodeMonsterScRsp) - } - "CmdArchiveWolfBroGameScRsp" => Some(Self::CmdArchiveWolfBroGameScRsp), - "CmdArchiveWolfBroGameCsReq" => Some(Self::CmdArchiveWolfBroGameCsReq), - "CmdWolfBroGameActivateBulletCsReq" => { - Some(Self::CmdWolfBroGameActivateBulletCsReq) - } - "CmdGetWolfBroGameDataScRsp" => Some(Self::CmdGetWolfBroGameDataScRsp), - "CmdRestoreWolfBroGameArchiveCsReq" => { - Some(Self::CmdRestoreWolfBroGameArchiveCsReq) - } "CmdWolfBroGameActivateBulletScRsp" => { Some(Self::CmdWolfBroGameActivateBulletScRsp) } - "CmdQuitWolfBroGameScRsp" => Some(Self::CmdQuitWolfBroGameScRsp), - "CmdWolfBroGameExplodeMonsterCsReq" => { - Some(Self::CmdWolfBroGameExplodeMonsterCsReq) + "CmdWolfBroGameActivateBulletCsReq" => { + Some(Self::CmdWolfBroGameActivateBulletCsReq) + } + "CmdWolfBroGameExplodeMonsterScRsp" => { + Some(Self::CmdWolfBroGameExplodeMonsterScRsp) } "CmdWolfBroGameDataChangeScNotify" => { Some(Self::CmdWolfBroGameDataChangeScNotify) } - "CmdWolfBroGameUseBulletCsReq" => Some(Self::CmdWolfBroGameUseBulletCsReq), - "CmdQuitWolfBroGameCsReq" => Some(Self::CmdQuitWolfBroGameCsReq), - "CmdWolfBroGamePickupBulletScRsp" => { - Some(Self::CmdWolfBroGamePickupBulletScRsp) - } - "CmdWolfBroGamePickupBulletCsReq" => { - Some(Self::CmdWolfBroGamePickupBulletCsReq) + "CmdWolfBroGameExplodeMonsterCsReq" => { + Some(Self::CmdWolfBroGameExplodeMonsterCsReq) } + "CmdGetWolfBroGameDataCsReq" => Some(Self::CmdGetWolfBroGameDataCsReq), "CmdRestoreWolfBroGameArchiveScRsp" => { Some(Self::CmdRestoreWolfBroGameArchiveScRsp) } - "CmdStartWolfBroGameScRsp" => Some(Self::CmdStartWolfBroGameScRsp), - "CmdStartWolfBroGameCsReq" => Some(Self::CmdStartWolfBroGameCsReq), + "CmdArchiveWolfBroGameCsReq" => Some(Self::CmdArchiveWolfBroGameCsReq), "CmdWolfBroGameUseBulletScRsp" => Some(Self::CmdWolfBroGameUseBulletScRsp), + "CmdWolfBroGameUseBulletCsReq" => Some(Self::CmdWolfBroGameUseBulletCsReq), + "CmdGetWolfBroGameDataScRsp" => Some(Self::CmdGetWolfBroGameDataScRsp), + "CmdWolfBroGamePickupBulletScRsp" => { + Some(Self::CmdWolfBroGamePickupBulletScRsp) + } + "CmdStartWolfBroGameCsReq" => Some(Self::CmdStartWolfBroGameCsReq), + "CmdQuitWolfBroGameScRsp" => Some(Self::CmdQuitWolfBroGameScRsp), + "CmdWolfBroGamePickupBulletCsReq" => { + Some(Self::CmdWolfBroGamePickupBulletCsReq) + } + "CmdRestoreWolfBroGameArchiveCsReq" => { + Some(Self::CmdRestoreWolfBroGameArchiveCsReq) + } + "CmdQuitWolfBroGameCsReq" => Some(Self::CmdQuitWolfBroGameCsReq), + "CmdStartWolfBroGameScRsp" => Some(Self::CmdStartWolfBroGameScRsp), + "CmdArchiveWolfBroGameScRsp" => Some(Self::CmdArchiveWolfBroGameScRsp), _ => None, } } @@ -62386,8 +64734,8 @@ impl CmdWolfBroType { #[repr(i32)] pub enum CmdWorldUnlockType { None = 0, - CmdWorldUnlockScRsp = 7627, - CmdWorldUnlockCsReq = 7626, + CmdWorldUnlockScRsp = 7626, + CmdWorldUnlockCsReq = 7627, } impl CmdWorldUnlockType { /// String value of the enum field names used in the ProtoBuf definition.