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
2024-11-25 02:17:19 +03:00

20 lines
344 B
Text

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;