GC-Proto/proto/DungeonPlayerDieNotify.proto

23 lines
515 B
Protocol Buffer
Raw Normal View History

2023-02-18 04:48:44 +03:00
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
import "PlayerDieType.proto";
import "StrengthenPointData.proto";
2023-02-28 04:12:44 +03:00
// Name: EPKICJCBBIF
// CmdId: 959
2023-02-18 04:48:44 +03:00
message DungeonPlayerDieNotify {
2023-02-28 04:12:44 +03:00
uint32 murderer_entity_id = 1;
uint32 dungeon_id = 2;
uint32 wait_time = 11;
map<uint32, StrengthenPointData> strengthen_point_data_map = 15;
uint32 revive_count = 5;
PlayerDieType die_type = 6;
oneof entity {
uint32 monster_id = 4;
uint32 gadget_id = 7;
}
2023-02-18 04:48:44 +03:00
}
2023-02-28 04:12:44 +03:00