2022-11-06 15:30:21 +03:00
|
|
|
syntax = "proto3";
|
2023-02-02 04:57:20 +03:00
|
|
|
|
2023-01-28 18:50:00 +03:00
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
2022-11-06 15:30:21 +03:00
|
|
|
|
2023-01-28 17:00:48 +03:00
|
|
|
import "ChannellerSlabLoopDungeonResultInfo.proto";
|
2023-02-28 04:12:44 +03:00
|
|
|
import "CrystalLinkDungeonSettleInfo.proto";
|
2023-04-03 09:51:55 +03:00
|
|
|
import "DungeonSettleExhibitionInfo.proto";
|
2022-11-06 15:30:21 +03:00
|
|
|
import "EffigyChallengeDungeonResultInfo.proto";
|
2023-02-28 04:12:44 +03:00
|
|
|
import "EffigyChallengeV2SettleInfo.proto";
|
2023-04-03 09:51:55 +03:00
|
|
|
import "PacmanSettleInfo.proto";
|
2023-02-28 04:12:44 +03:00
|
|
|
import "InstableSprayDungeonSettleInfo.proto";
|
2023-04-03 09:51:55 +03:00
|
|
|
import "FungusFighterV2SettleInfo.proto";
|
|
|
|
import "ParamList.proto";
|
2022-11-06 15:30:21 +03:00
|
|
|
import "RoguelikeDungeonSettleInfo.proto";
|
2023-02-28 04:12:44 +03:00
|
|
|
import "StrengthenPointData.proto";
|
2022-11-06 15:30:21 +03:00
|
|
|
import "SummerTimeV2DungeonSettleInfo.proto";
|
2023-01-28 17:00:48 +03:00
|
|
|
import "TeamChainSettleInfo.proto";
|
2023-02-28 04:12:44 +03:00
|
|
|
import "TowerLevelEndNotify.proto";
|
|
|
|
import "TrialAvatarFirstPassDungeonNotify.proto";
|
|
|
|
import "WindFieldDungeonSettleInfo.proto";
|
2023-02-02 04:57:20 +03:00
|
|
|
|
2023-02-28 04:12:44 +03:00
|
|
|
// Name: FFCKLBMMNOC
|
|
|
|
// CmdId: 950
|
2022-11-06 15:30:21 +03:00
|
|
|
message DungeonSettleNotify {
|
2023-02-28 04:12:44 +03:00
|
|
|
uint32 dungeon_id = 4;
|
|
|
|
uint32 use_time = 7;
|
|
|
|
uint32 close_time = 11;
|
2023-04-03 09:51:55 +03:00
|
|
|
uint32 result = 10; //CFMPHBBHMBL
|
2023-02-28 04:12:44 +03:00
|
|
|
repeated uint32 fail_cond_list = 3;
|
2023-04-03 09:51:55 +03:00
|
|
|
repeated DungeonSettleExhibitionInfo exhibition_info_list = 14; //DPACDAIBBIL
|
|
|
|
map<uint32, ParamList> settleShow = 6; //map<uint32, MBLNIKHFGKN> NLEILHLODMF
|
2023-02-28 04:12:44 +03:00
|
|
|
map<uint32, StrengthenPointData> strengthen_point_data_map = 9;
|
|
|
|
bool is_success = 15;
|
2023-04-03 09:51:55 +03:00
|
|
|
uint32 create_player_uid = 12; //IHBGNOACKJJ
|
2023-02-28 04:12:44 +03:00
|
|
|
oneof detail {
|
|
|
|
TowerLevelEndNotify tower_level_end_notify = 771;
|
|
|
|
TrialAvatarFirstPassDungeonNotify trial_avatar_first_pass_dungeon_notify = 626;
|
|
|
|
ChannellerSlabLoopDungeonResultInfo channeller_slab_loop_dungeon_result_info = 1006;
|
|
|
|
EffigyChallengeDungeonResultInfo effigy_challenge_dungeon_result_info = 243;
|
|
|
|
RoguelikeDungeonSettleInfo roguelike_dungeon_settle_info = 919;
|
|
|
|
CrystalLinkDungeonSettleInfo crystal_link_settle_info = 202;
|
|
|
|
SummerTimeV2DungeonSettleInfo summer_time_v2_dungeon_settle_info = 1187;
|
|
|
|
InstableSprayDungeonSettleInfo instable_spray_settle_info = 1506;
|
|
|
|
WindFieldDungeonSettleInfo wind_field_dungeon_settle_info = 1577;
|
|
|
|
EffigyChallengeV2SettleInfo effigy_challenge_v2_settle_info = 757;
|
|
|
|
TeamChainSettleInfo team_chain_settle_info = 1881;
|
2023-04-03 09:51:55 +03:00
|
|
|
PacmanSettleInfo pacman_settle_info = 1722;
|
|
|
|
FungusFighterV2SettleInfo fungus_fighter_v2_settle_info = 63;
|
2023-02-28 04:12:44 +03:00
|
|
|
}
|
2022-11-06 15:30:21 +03:00
|
|
|
}
|
2023-02-28 04:12:44 +03:00
|
|
|
|