BlueMagic.cs 513 B

123456789101112131415161718192021222324252627
  1. using System.Diagnostics.CodeAnalysis;
  2. namespace OpenVIII.Kernel
  3. {
  4. [SuppressMessage("ReSharper", "UnusedMember.Global")]
  5. public enum BlueMagic : byte
  6. {
  7. LaserEye,
  8. UltraWaves,
  9. Electrocute,
  10. LvDeath,
  11. Degenerator,
  12. AquaBreath,
  13. MicroMissiles,
  14. Acid,
  15. GatlingGun,
  16. FireBreath,
  17. BadBreath,
  18. WhiteWind,
  19. HomingLaser,
  20. MightyGuard,
  21. RayBomb,
  22. ShockwavePulsar,
  23. None = 0xFF,
  24. }
  25. }