Kernel_bin.Attack_Flags.cs 575 B

12345678910111213141516171819202122232425
  1. using System;
  2. namespace FF8
  3. {
  4. public partial class Kernel_bin
  5. {
  6. /// <summary>
  7. /// Attack Flags
  8. /// </summary>
  9. /// <see cref="https://github.com/alexfilth/doomtrain/blob/master/Doomtrain/MainForm.cs"/>
  10. [Flags]
  11. public enum Attack_Flags
  12. {
  13. None = 0x0,
  14. Shelled = 0x1,
  15. UNK0x2 = 0x2,
  16. UNK0x4 = 0x4,
  17. Break_Damage_Limit = 0x8,
  18. Reflected = 0x10,
  19. UNK0x20 = 0x20,
  20. UNK0x40 = 0x40,
  21. Revive_ = 0x80
  22. }
  23. }
  24. }