mirror of
https://github.com/kwsch/pkNX.git
synced 2026-04-27 16:27:17 -05:00
29 lines
558 B
Plaintext
29 lines
558 B
Plaintext
include "Shared/ItemID.fbs";
|
|
|
|
namespace pkNX.Structures.FlatBuffers.SV;
|
|
|
|
attribute "fs_serializer";
|
|
|
|
struct LotteryItemData {
|
|
ItemId:ItemID;
|
|
ProductionPriority:ubyte;
|
|
EmergePercent:ushort;
|
|
LotteryItemNumMin:ubyte;
|
|
LotteryItemNumMax:ubyte;
|
|
}
|
|
|
|
table LotteryItemDataWithFlag {
|
|
FlagName:string;
|
|
Value:LotteryItemData;
|
|
}
|
|
|
|
table ItemMachineItemTable {
|
|
Param:LotteryItemDataWithFlag (required);
|
|
}
|
|
|
|
table ItemMachineItemTableArray (fs_serializer) {
|
|
Table:[ItemMachineItemTable] (required);
|
|
}
|
|
|
|
root_type ItemMachineItemTableArray;
|