17 lines
360 B
Protocol Buffer
17 lines
360 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "GachaTransferItem.proto";
|
|
import "ItemParam.proto";
|
|
|
|
// Name: PBALBDCFHEM
|
|
message GachaItem {
|
|
repeated ItemParam token_item_list = 13;
|
|
ItemParam gacha_item = 15;
|
|
bool isGachaItemNew = 4;
|
|
repeated GachaTransferItem transfer_items = 7;
|
|
bool isFlashCard = 10;
|
|
}
|
|
|