GC-Proto/proto/DoGachaRsp.proto

31 lines
853 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
// CmdId: 3838
// Version: 4.6.0
// Obfs: IMDOCDDMJDD
2022-11-06 15:30:21 +03:00
message DoGachaRsp {
2024-05-29 15:56:24 +03:00
uint32 ten_cost_item_id = 1;
uint32 wish_item_id = 2;
uint32 wish_max_progress = 3;
uint32 new_gacha_random = 4; // sus
int32 retcode = 5;
uint32 wish_progress = 6;
uint32 ten_cost_item_num = 7;
uint32 left_gacha_times = 8;
uint32 cost_item_id = 9;
uint32 cost_item_num = 10;
uint32 gacha_times_limit = 11;
uint32 gachaType = 12;
repeated GachaItem gacha_item_list = 13;
uint32 gachaScheduleId = 14;
uint32 gachaTimes = 15;
uint32 daily_gacha_times = 156;
bool is_under_general_restrict = 205; // BLIOHILHJOP (205, 1563)
uint32 cur_schedule_daily_gacha_times = 1513; // sus
bool is_under_minors_restrict = 1563; // AGPAJPJENKG (205, 1563)
2022-11-06 15:30:21 +03:00
}