17 lines
394 B
Protocol Buffer
17 lines
394 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "GachaTransferItem.proto";
|
|
import "ItemParam.proto";
|
|
|
|
// Name: IPHELIAGHGJ
|
|
message GachaItem {
|
|
ItemParam gacha_item = 13;
|
|
repeated GachaTransferItem transfer_items = 3;
|
|
repeated ItemParam token_item_list = 9;
|
|
bool is_gacha_item_new = 1; // DKPCGKMJNMC
|
|
bool is_flash_card = 11; // HBJJJDGGBCN
|
|
}
|
|
|