GC-Proto/proto/GachaInfo.proto

40 lines
1.2 KiB
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 "GachaUpInfo.proto";
2024-05-29 15:56:24 +03:00
2024-07-08 18:20:41 +03:00
// 4.7.0
// PKGNKDGHLOF
2022-11-06 15:30:21 +03:00
message GachaInfo {
2024-07-08 18:20:41 +03:00
uint32 end_time = 5; // OK
uint32 schedule_id = 10; // OK
uint32 gacha_type = 11; // OK
uint32 begin_time = 12; // OK
bool is_new_wish = 778; // OK
repeated GachaUpInfo gacha_up_info_list = 802; // OK
repeated uint32 displayUp4ItemList = 1046; // SUS
repeated uint32 displayUp5ItemList = 1152; // SUS
// string sus
string gachaPreviewPrefabPath = 1;
string titleTextmap = 3;
string gachaPrefabPath = 7;
string gachaRecordUrlOversea = 14;
string gachaRecordUrl = 784;
string gachaProbUrlOversea = 1355;
string gachaProbUrl = 1926;
// int32 sus
uint32 costItemId = 2;
uint32 wishMaxProgress = 4;
uint32 curScheduleDailyGachaTimes = 6;
uint32 leftGachaTimes = 8;
uint32 tenCostItemNum = 9;
uint32 wishProgress = 13;
uint32 tenCostItemId = 15;
uint32 gachaSortId = 1106;
uint32 wishItemId = 1274;
uint32 gachaTimesLimit = 1869;
uint32 costItemNum = 1954;
2024-05-29 15:56:24 +03:00
}