Kernel_bin.Element.cs 460 B

123456789101112131415161718
  1. using System;
  2. namespace FF8
  3. {
  4. public partial class Kernel_bin
  5. {
  6. /// <summary>
  7. /// Element types
  8. /// </summary>
  9. /// <see cref="https://github.com/alexfilth/doomtrain/wiki/Elements"/>
  10. [Flags]
  11. public enum Element : byte
  12. {
  13. Non_Elemental = 0x00, Fire = 0x01, Ice = 0x02, Thunder = 0x04,
  14. Earth = 0x08, Poison = 0x10, Wind = 0x20, Water = 0x40, Holy = 0x80,
  15. }
  16. }
  17. }