15 lines
309 B
Protocol Buffer
15 lines
309 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "CodexType.proto";
|
|
|
|
// Name: EIADKMICKID
|
|
message CodexTypeData {
|
|
repeated uint32 codex_id_list = 1;
|
|
map<uint32, uint32> weapon_max_promote_level_map = 10;
|
|
CodexType type = 8;
|
|
repeated bool have_viewed_list = 6;
|
|
}
|
|
|