13 lines
325 B
Protocol Buffer
13 lines
325 B
Protocol Buffer
syntax = "proto3";
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
import "GachaInfo.proto";
|
|
|
|
message GetGachaInfoRsp {
|
|
repeated GachaInfo gacha_info_list = 9;
|
|
bool is_under_minors_restrict = 11;
|
|
bool is_under_general_restrict = 5;
|
|
uint32 daily_gacha_times = 13;
|
|
int32 retcode = 12;
|
|
uint32 gacha_random = 4;
|
|
}
|