2022-11-06 15:30:21 +03:00
|
|
|
syntax = "proto3";
|
2023-01-28 18:50:00 +03:00
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
2024-07-02 21:31:20 +03:00
|
|
|
|
2023-05-23 13:12:42 +03:00
|
|
|
import "GadgetCrucibleInfo.proto";
|
2024-07-02 21:31:20 +03:00
|
|
|
|
|
|
|
// 4.7.0
|
2022-11-06 15:30:21 +03:00
|
|
|
message GadgetPlayInfo {
|
2023-05-23 13:12:42 +03:00
|
|
|
uint32 play_type = 1;
|
|
|
|
uint32 duration = 2;
|
|
|
|
repeated uint32 progress_stage_list = 3;
|
|
|
|
uint32 start_cd = 4;
|
|
|
|
uint32 start_time = 5;
|
|
|
|
uint32 progress = 6;
|
2024-07-02 21:31:20 +03:00
|
|
|
optional GadgetCrucibleInfo crucible_info = 21;
|
|
|
|
//oneof play_info {
|
|
|
|
// GadgetCrucibleInfo crucible_info = 21;
|
|
|
|
//}
|
|
|
|
}
|