mirror of
https://github.com/Melledy/Grasscutter.git
synced 2024-11-23 16:16:46 +00:00
25 lines
524 B
Protocol Buffer
25 lines
524 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "ItemParam.proto";
|
|
|
|
message ShopGoods {
|
|
uint32 goodsId = 1;
|
|
ItemParam goodsItem = 2;
|
|
uint32 scoin = 3;
|
|
uint32 hcoin = 4;
|
|
repeated ItemParam costItemList = 5;
|
|
uint32 boughtNum = 6;
|
|
uint32 buyLimit = 7;
|
|
uint32 beginTime = 8;
|
|
uint32 endTime = 9;
|
|
uint32 nextRefreshTime = 10;
|
|
uint32 minLevel = 11;
|
|
uint32 maxLevel = 12;
|
|
repeated uint32 preGoodsIdList = 13;
|
|
uint32 mcoin = 14;
|
|
uint32 disableType = 15;
|
|
uint32 secondarySheetId = 16;
|
|
}
|