Cards.ID.cs 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. namespace FF8
  2. {
  3. public partial class Cards
  4. {
  5. #region Enums
  6. public new enum ID
  7. {
  8. //Level 1
  9. Geezard,
  10. Funguar,
  11. Bite_Bug,
  12. Red_Bat,
  13. Blobra,
  14. Gayla,
  15. Gesper,
  16. Fastitocalon_F,
  17. Blood_Soul,
  18. Caterchipillar,
  19. Cockatrice,
  20. //Level 2
  21. Grat,
  22. Buel,
  23. Mesmerize,
  24. Glacial_Eye,
  25. Belhelmel,
  26. Thrustaevis,
  27. Anacondaur,
  28. Creeps,
  29. Grendel,
  30. Jelleye,
  31. Grand_Mantis,
  32. //Level 3
  33. Forbidden,
  34. Armadodo,
  35. Tri_Face,
  36. Fastitocalon,
  37. Snow_Lion,
  38. Ochu,
  39. SAM08G,
  40. Death_Claw,
  41. Cactuar,
  42. Tonberry,
  43. Abyss_Worm,
  44. //Level 4
  45. Turtapod,
  46. Vysage,
  47. T_Rexaur,
  48. Bomb,
  49. Blitz,
  50. Wendigo,
  51. Torama,
  52. Imp,
  53. Blue_Dragon,
  54. Adamantoise,
  55. Hexadragon,
  56. //Level 5
  57. Iron_Giant,
  58. Behemoth,
  59. Chimera,
  60. PuPu,
  61. Elastoid,
  62. GIM47N,
  63. Malboro,
  64. Ruby_Dragon,
  65. Elnoyle,
  66. Tonberry_King,
  67. Biggs__Wedge,
  68. //Boss Cards
  69. //Level 6
  70. Fujin__Raijin,
  71. Elvoret,
  72. X_ATM092,
  73. Granaldo,
  74. Gerogero,
  75. Iguion,
  76. Abadon,
  77. Trauma,
  78. Oilboyle,
  79. Shumi_Tribe,
  80. Krysta,
  81. //Level 7
  82. Propagator,
  83. Jumbo_Cactuar,
  84. Tri_Point,
  85. Gargantua,
  86. Mobile_Type_8,
  87. Sphinxara,
  88. Tiamat,
  89. BGH251F2,
  90. Red_Giant,
  91. Catoblepas,
  92. Ultima_Weapon,
  93. //Guardian Force cards
  94. //Level 8
  95. Chubby_Chocobo,
  96. Angelo,
  97. Gilgamesh,
  98. MiniMog,
  99. Chicobo,
  100. Quezacotl,
  101. Shiva,
  102. Ifrit,
  103. Siren,
  104. Sacred,
  105. Minotaur,
  106. //Level 9
  107. Carbuncle,
  108. Diablos,
  109. Leviathan,
  110. Odin,
  111. Pandemona,
  112. Cerberus,
  113. Alexander,
  114. Phoenix,
  115. Bahamut,
  116. Doomtrain,
  117. Eden,
  118. //Player cards
  119. //Level 10
  120. Ward,
  121. Kiros,
  122. Laguna,
  123. Selphie,
  124. Quistis,
  125. Irvine,
  126. Zell,
  127. Rinoa,
  128. Edea,
  129. Seifer,
  130. Squall,
  131. //Custom Entry
  132. Card_Back
  133. }
  134. #endregion Enums
  135. }
  136. }