17 lines
327 B
Protocol Buffer
17 lines
327 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
|
|
|
|
import "FetterData.proto";
|
|
|
|
message AvatarFetterInfo {
|
|
uint32 expNumber = 1;
|
|
uint32 expLevel = 2;
|
|
repeated uint32 openIdList = 3;
|
|
repeated uint32 finishIdList = 4;
|
|
repeated uint32 rewardedFetterLevelList = 5;
|
|
repeated FetterData fetterList = 6;
|
|
}
|