Magazine.ID.cs 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace FF8
  7. {
  8. partial class Magazine
  9. {
  10. #region Enums
  11. /// <summary>
  12. /// ID's of Magazine Images.
  13. /// </summary>
  14. /// <seealso cref="https://finalfantasy.fandom.com/wiki/Weapons_Monthly"/>
  15. /// <seealso cref="https://finalfantasy.fandom.com/wiki/Pet_Pals"/>
  16. /// <seealso cref="https://finalfantasy.fandom.com/wiki/Occult_Fan"/>
  17. public new enum ID
  18. {
  19. //Weapons Monthly, 1st Issue
  20. Lion_Heart,
  21. Shooting_Star,
  22. Exeter,
  23. Strange_Vision,
  24. //Weapons Monthly, March Issue
  25. Revolver,
  26. Metal_Knuckle,
  27. Flail,
  28. Chain_Whip,
  29. //Weapons Monthly, April Issue
  30. Shear_Trigger,
  31. Maverick,
  32. Pinwheel,
  33. Valiant,
  34. //Weapons Monthly, May Issue
  35. Cutting_Trigger,
  36. Valkyrie,
  37. Ulysses,
  38. Slaying_Tail,
  39. //Weapons Monthly, June Issue
  40. Flame_Saber,
  41. Gauntlet,
  42. Morning_Star,
  43. Red_Scorpion,
  44. //Weapons Monthly, July Issue
  45. Twin_Lance,
  46. Rising_Sun,
  47. Bismarck,
  48. Crescent_Wish,
  49. //Weapons Monthly, August Issue
  50. Punishment,
  51. Ehrgeiz,
  52. Cardinal,
  53. Save_the_Queen,
  54. //Pet Pals
  55. Pet_Pals_Vol_1,
  56. Pet_Pals_Vol_2,
  57. Pet_Pals_Vol_3,
  58. Pet_Pals_Vol_4,
  59. Pet_Pals_Vol_5,
  60. Pet_Pals_Vol_6,
  61. //Occult Fan
  62. Occult_Fan_I_1,
  63. Occult_Fan_I_2,
  64. Occult_Fan_II_1,
  65. Occult_Fan_II_2,
  66. Occult_Fan_III,
  67. Occult_Fan_IV_1,
  68. Occult_Fan_IV_2,
  69. //Tiple Triad Tutorial
  70. Triple_Triad_Tutorial_1,
  71. Triple_Triad_Tutorial_2,
  72. Triple_Triad_Tutorial_3,
  73. Triple_Triad_Tutorial_4,
  74. Triple_Triad_Tutorial_5,
  75. Triple_Triad_Tutorial_7,
  76. Triple_Triad_Tutorial_8,
  77. Triple_Triad_Tutorial_9,
  78. Triple_Triad_Tutorial_10,
  79. //Tutorial
  80. Tutorial_1,
  81. Tutorial_2,
  82. Tutorial_3,
  83. Tutorial_4,
  84. Tutorial_5,
  85. Tutorial_6,
  86. Tutorial_7,
  87. Tutorial_8,
  88. Tutorial_9,
  89. Tutorial_10,
  90. //Cute Comic
  91. Cute_Comic_1,
  92. Cute_Comic_2,
  93. Cute_Comic_3,
  94. //Chocobo World Tutorial
  95. Chocobo_World_Tutorial_1,
  96. Chocobo_World_Tutorial_2,
  97. Chocobo_World_Tutorial_3,
  98. Chocobo_World_Tutorial_4,
  99. Chocobo_World_Tutorial_5,
  100. Chocobo_World_Tutorial_6,
  101. Chocobo_World_Tutorial_7,
  102. Chocobo_World_Tutorial_8,
  103. Chocobo_World_Tutorial_9,
  104. Chocobo_World_Tutorial_10,
  105. Chocobo_World_Tutorial_11,
  106. Chocobo_World_Tutorial_12,
  107. Chocobo_World_Tutorial_13,
  108. Chocobo_World_Tutorial_14,
  109. Chocobo_World_Tutorial_15,
  110. Chocobo_World_Tutorial_16,
  111. Chocobo_World_Tutorial_17,
  112. Chocobo_World_Tutorial_18,
  113. Chocobo_World_Tutorial_19,
  114. Chocobo_World_Tutorial_20,
  115. Chocobo_World_Tutorial_21,
  116. Chocobo_World_Tutorial_22,
  117. Chocobo_World_Tutorial_23,
  118. Chocobo_World_Tutorial_24,
  119. Chocobo_World_Tutorial_25,
  120. Chocobo_World_Tutorial_26_1,
  121. Chocobo_World_Tutorial_26_2,
  122. //Icon like items.
  123. Blue_1,
  124. Blue_2,
  125. Blue_3,
  126. Blue_4,
  127. Blue_5,
  128. Blue_6,
  129. Blue_7,
  130. Red_Arrow_Right,
  131. Red_Arrow_Down,
  132. Red_Pipe,
  133. Red_Forward_Slash,
  134. Red_Back_Slash,
  135. Red_Dash,
  136. //Everything in mag17.tex is in Icons so skipping it.
  137. //Sketch versions of Cute Comic
  138. Cute_Comic_4,
  139. Cute_Comic_5,
  140. Cute_Comic_6,
  141. //mag18.tex and mag19.tex are the same thing
  142. //magita
  143. Mag_BG
  144. }
  145. #endregion Enums
  146. }
  147. }