mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-04-04 16:16:06 +03:00
16 lines
308 B
Protocol Buffer
16 lines
308 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
// CmdId: 1541
|
|
// EnetChannelId: 0
|
|
// EnetIsReliable: true
|
|
// IsAllowClient: true
|
|
message DoGachaReq {
|
|
uint32 gacha_type = 10;
|
|
uint32 gacha_times = 15;
|
|
uint32 gacha_random = 5;
|
|
uint32 gacha_schedule_id = 6;
|
|
string gacha_tag = 4;
|
|
}
|