14 lines
354 B
Protocol Buffer
14 lines
354 B
Protocol Buffer
syntax = "proto3";
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
import "ItemParam.proto";
|
|
import "GachaTransferItem.proto";
|
|
// Version: 4.7.0
|
|
// Obfs: ?
|
|
message GachaItem {
|
|
ItemParam gacha_item = 9;
|
|
repeated ItemParam token_item_list = 14;
|
|
bool is_gacha_item_new = 11;
|
|
repeated GachaTransferItem transfer_items = 1;
|
|
bool is_flash_card = 12;
|
|
}
|