mirror of
https://github.com/kwsch/pkNX.git
synced 2026-04-30 01:37:03 -05:00
28 lines
548 B
Plaintext
28 lines
548 B
Plaintext
namespace pkNX.Structures.FlatBuffers.SV;
|
|
|
|
attribute "fs_serializer";
|
|
|
|
struct RankupBonusInfo {
|
|
BPDownRate:[ubyte:4];
|
|
MaterialPointUpRate:[ubyte:4];
|
|
}
|
|
|
|
struct NeedRankupInfo {
|
|
LotteryCount:[uint:3];
|
|
NeedBP:[uint:3];
|
|
}
|
|
|
|
table MaterialBaseParam {
|
|
NeedLotteryBP:uint;
|
|
MaterialPointPercent:ubyte;
|
|
NeedRankupInfos:NeedRankupInfo;
|
|
RankupBonusInfos:RankupBonusInfo;
|
|
FluctuationCount:ubyte;
|
|
}
|
|
|
|
table MaterialBaseParamArray (fs_serializer) {
|
|
Table:[MaterialBaseParam] (required);
|
|
}
|
|
|
|
root_type MaterialBaseParamArray;
|