GC-Proto/proto/DoGachaRsp.proto

27 lines
717 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";
2023-05-23 13:12:42 +03:00
import "GachaItem.proto";
2024-06-23 18:33:14 +03:00
// 4.7.0
2024-07-22 06:47:23 +03:00
// CmdId: 27578
2022-11-06 15:30:21 +03:00
message DoGachaRsp {
2024-07-22 06:47:23 +03:00
uint32 gachaTimesLimit = 1;
uint32 wishMaxProgress = 2;
uint32 wishItemId = 3;
2024-06-23 18:33:14 +03:00
repeated GachaItem gacha_item_list = 4;
2024-07-22 06:47:23 +03:00
uint32 tenCostItemNum = 5;
uint32 gacha_type = 6;
int32 retcode = 7;
uint32 gacha_times = 8;
uint32 newGachaRandom = 9;
uint32 tenCostItemId = 10;
uint32 costItemId = 11;
uint32 leftGachaTimes = 12;
2024-06-23 18:33:14 +03:00
uint32 gacha_schedule_id = 13;
2024-07-22 06:47:23 +03:00
uint32 wishProgress = 14;
uint32 costItemNum = 15;
2024-06-23 18:33:14 +03:00
bool is_under_general_restrict = 713;
2024-07-22 06:47:23 +03:00
uint32 gachaSortId = 971;
2024-06-23 18:33:14 +03:00
uint32 daily_gacha_times = 1479;
bool is_under_minors_restrict = 1626;
2022-11-06 15:30:21 +03:00
}