mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-02 16:24:37 +03:00
28 lines
678 B
Protocol Buffer
28 lines
678 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "FishBattleResult.proto";
|
|
import "ItemParam.proto";
|
|
|
|
// CmdId: 5821
|
|
// Name: IKIGLFPJABI
|
|
message FishBattleEndRsp {
|
|
// Name: BAOFMDDOHHC
|
|
enum FishNoRewardReason {
|
|
FISH_NO_REWARD_NONE = 0;
|
|
FISH_NO_REWARD_ACTIVITY_LIMIT = 1;
|
|
FISH_NO_REWARD_BAG_LIMIT = 2;
|
|
FISH_NO_REWARD_POOL_LIMIT = 3;
|
|
}
|
|
|
|
bool is_got_reward = 7;
|
|
FishNoRewardReason no_reward_reason = 10;
|
|
repeated ItemParam reward_item_list = 9;
|
|
repeated ItemParam EGKGIDNNNLG = 13;
|
|
repeated ItemParam GJCMOFAMKLA = 4;
|
|
int32 retcode = 11;
|
|
FishBattleResult battle_result = 12;
|
|
}
|
|
|