GC-Proto/proto/ShopMcoinProduct.proto

13 lines
289 B
Protocol Buffer
Raw Normal View History

2022-11-06 15:30:21 +03:00
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
2023-08-17 14:18:58 +03:00
// Obf: BNMNBLNCBIG
2022-11-06 15:30:21 +03:00
message ShopMcoinProduct {
2023-05-23 13:12:42 +03:00
string product_id = 1;
string price_tier = 2;
uint32 mcoin_base = 3;
uint32 mcoin_non_first = 4;
uint32 mcoin_first = 5;
uint32 bought_num = 6;
bool is_audit = 7;
2022-11-06 15:30:21 +03:00
}