mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-02 16:24:37 +03:00
20 lines
594 B
Protocol Buffer
20 lines
594 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "GameplayRecommendationElementReliquaryRequest.proto";
|
|
import "GameplayRecommendationReliquaryRequest.proto";
|
|
import "GameplayRecommendationSkillRequest.proto";
|
|
|
|
// CmdId: 114
|
|
// Name: FLHPFALHKNK
|
|
message GetGameplayRecommendationReq {
|
|
uint32 avatar_id = 7;
|
|
oneof detail {
|
|
GameplayRecommendationSkillRequest skill_request = 1417;
|
|
GameplayRecommendationReliquaryRequest reliquary_request = 616;
|
|
GameplayRecommendationElementReliquaryRequest element_reliquary_request = 2013;
|
|
}
|
|
}
|
|
|