GC-Proto/proto/ShopGoods.proto

35 lines
882 B
Protocol Buffer

syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
import "ItemParam.proto";
// 4.7.0
message ShopGoods {
ItemParam goods_item = 6; // OK
uint32 end_time = 3; // OK
uint32 begin_time = 12; // OK
repeated ItemParam cost_item_list = 10; // OK
repeated uint32 pre_goods_id_list = 15; // OK
uint32 goods_id = 11; // OK
uint32 next_refresh_time = 14; // OK
uint32 bought_num = 2; // OK (1x maybe ok too but this limit other, 7=mora)
uint32 buy_limit = 9; // ?
uint32 max_level = 5; // OK
uint32 min_level = 4; // OK
uint32 hcoin = 13; // LOCK
uint32 scoin = 7; // LOCK
uint32 mcoin = 8; // LOCK
//Hcoin: Primogem
//Scoin: Mora
//Mcoin: Genesis crystal
//uint32 secondary_sheet_id = 663;
//uint32 single_limit = 133;
//uint32 discount_id = 150;
//uint32 discount_end_time = 821;
//uint32 discount_begin_time = 410;
}