GC-Proto/proto/GadgetPlayInfo.proto

20 lines
405 B
Protocol Buffer
Raw Normal View History

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";
2022-11-06 15:30:21 +03:00
2023-02-28 06:08:38 +03:00
import "GadgetCrucibleInfo.proto";
2022-11-06 15:30:21 +03:00
2023-02-28 06:08:38 +03:00
// Name: FOENOMBFLMO
2022-11-06 15:30:21 +03:00
message GadgetPlayInfo {
2023-02-28 06:08:38 +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;
oneof play_info {
GadgetCrucibleInfo crucible_info = 21;
}
2022-11-06 15:30:21 +03:00
}
2023-02-28 06:08:38 +03:00