15 lines
258 B
Protocol Buffer
15 lines
258 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
option java_package = "emu.grasscutter.net.proto";
|
||
|
|
||
|
|
||
|
// Name: MKDIJONGAPJ
|
||
|
message VintageHuntingStageData {
|
||
|
uint32 stage_id = 4;
|
||
|
uint32 open_time = 8;
|
||
|
bool is_open = 15;
|
||
|
uint32 record_value = 7;
|
||
|
bool is_finish = 5;
|
||
|
}
|
||
|
|