GC-Proto/proto/GachaInfo.proto

35 lines
965 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 "GachaUpInfo.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 GachaInfo {
2024-06-23 18:33:14 +03:00
uint32 end_time = 5;
uint32 schedule_id = 10;
uint32 gacha_type = 11;
uint32 begin_time = 12;
repeated GachaUpInfo gacha_up_info_list = 802;
uint32 costItemId = 13;
string gachaPrefabPath = 100;
uint32 wishMaxProgress = 960;
uint32 curScheduleDailyGachaTimes = 1456;
uint32 leftGachaTimes = 15;
bool is_new_wish = 1537;
uint32 tenCostItemNum = 8;
uint32 wishProgress = 1511;
uint32 tenCostItemId = 6;
uint32 gachaSortId = 110;
repeated uint32 displayUp4ItemList = 1285;
string gachaRecordUrlOversea = 1221;
string gachaRecordUrl = 4;
string gachaProbUrlOversea = 1181;
string gachaProbUrl = 9;
uint32 wishItemId = 870;
string gachaPreviewPrefabPath = 120;
string titleTextmap = 847;
repeated uint32 displayUp5ItemList = 1831;
uint32 gachaTimesLimit = 14;
uint32 costItemNum = 2;
2024-05-29 15:56:24 +03:00
}