GC-Proto/proto/GachaItem.proto

14 lines
354 B
Protocol Buffer
Raw Normal View History

2022-11-06 15:30:21 +03:00
syntax = "proto3";
2023-01-28 18:50:00 +03:00
option java_package = "emu.grasscutter.net.proto";
import "ItemParam.proto";
import "GachaTransferItem.proto";
2024-07-22 06:47:23 +03:00
// Version: 4.7.0
// Obfs: ?
2022-11-06 15:30:21 +03:00
message GachaItem {
2024-07-22 06:47:23 +03:00
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;
2022-11-06 15:30:21 +03:00
}