GC-Proto/proto/DoGachaRsp.proto

29 lines
720 B
Protocol Buffer
Raw Normal View History

2022-11-06 15:30:21 +03:00
syntax = "proto3";
2024-05-29 15:56:24 +03:00
2023-01-28 18:50:00 +03:00
option java_package = "emu.grasscutter.net.proto";
2024-05-29 15:56:24 +03:00
2023-05-23 13:12:42 +03:00
import "GachaItem.proto";
2024-05-29 15:56:24 +03:00
2024-06-23 18:33:14 +03:00
// 4.7.0
2022-11-06 15:30:21 +03:00
message DoGachaRsp {
2024-06-23 18:33:14 +03:00
uint32 gacha_type = 6;
repeated GachaItem gacha_item_list = 4;
uint32 gacha_schedule_id = 13;
bool is_under_general_restrict = 713;
uint32 daily_gacha_times = 1479;
bool is_under_minors_restrict = 1626;
uint32 gacha_times = 8;
int32 retcode = 7;
uint32 tenCostItemNum = 14;
uint32 wishMaxProgress = 9;
uint32 leftGachaTimes = 11;
uint32 costItemNum = 10;
uint32 curScheduleDailyGachaTimes = 706;
uint32 wishProgress = 5;
uint32 newGachaRandom = 16;
uint32 costItemId = 12;
uint32 tenCostItemId = 3;
uint32 gachaTimesLimit = 15;
uint32 wishItemId = 1;
2022-11-06 15:30:21 +03:00
}