This repository has been archived on 2024-12-20. You can view files and clone it, but cannot push or open issues or pull requests.
YanagiZS/crates/yanagi-data/fbs/tables.fbs

21 lines
344 B
Text
Raw Normal View History

2024-11-24 23:17:19 +00:00
table AvatarBaseTemplate {
id: int;
code_name: string;
name: string;
full_name: string;
audio_event_replace_param: string;
audio_bank: string;
hit_types: [int];
element_types: [int];
unk_1: int;
gender: int;
camp: int;
unk_2: [string];
}
table AvatarBaseTemplateTb {
data: [AvatarBaseTemplate];
}
root_type AvatarBaseTemplateTb;