Reisyukaku

SwSh schema

Nov 21st, 2019
390
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. namespace SwSh;
  2.  
  3. enum Gend : byte {Male = 0, Female = 1}
  4.  
  5. table Meta {
  6. Species:ushort = 0;
  7. AltForm:ushort = 0;
  8. Gender:Gend = Male;
  9. Shiny:bool = false;
  10. }
  11.  
  12. table Anim {
  13. Name:string;
  14. Path:string;
  15. }
  16.  
  17. table Pkmn {
  18. Metadata:Meta;
  19. ModelPath:string;
  20. ConfigPath:string;
  21. ArchivePath:string;
  22. Animations:[Anim];
  23. }
  24.  
  25. table Ver {
  26. Major:uint;
  27. Minor:uint;
  28. }
  29.  
  30. table Catalog {
  31. Version:Ver;
  32. Pokemon:[Pkmn];
  33. }
  34.  
  35. root_type Catalog;
Add Comment
Please, Sign In to add comment