Kernel_bin.Persistant_Statuses.cs 861 B

123456789101112131415161718192021222324252627
  1. using System;
  2. namespace OpenVIII
  3. {
  4. public partial class Kernel_bin
  5. {
  6. /// <summary>
  7. /// Statues that persist out of battle.
  8. /// </summary>
  9. /// <see cref="https://github.com/alexfilth/doomtrain/wiki/Statuses-0"/>
  10. /// <seealso cref="http://forums.qhimm.com/index.php?topic=17644.msg251133#msg251133"/>
  11. [Flags]
  12. public enum Persistent_Statuses : ushort
  13. {
  14. None = 0x00, Death = 0x01, Poison = 0x02, Petrify = 0x04,
  15. Darkness = 0x08, Silence = 0x10, Berserk = 0x20, Zombie = 0x40, UNK0x80 = 0x80,
  16. UNK0x0100 = 0x0100,
  17. UNK0x0200 = 0x0200,
  18. UNK0x0400 = 0x0400,
  19. UNK0x0800 = 0x0800,
  20. UNK0x1000 = 0x1000,
  21. UNK0x2000 = 0x2000,
  22. UNK0x4000 = 0x4000,
  23. UNK0x8000 = 0x8000,
  24. }
  25. }
  26. }