Post-Cancellation, Pre-Nisei Netrunner Rotation
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

68 lines
2.0KB

  1. module Packs where
  2. {---
  3. - Pack Module
  4. -
  5. - Defines datatypes for each pack and I totally didn't
  6. - hand code this nuh-uh for real
  7. -
  8. - Shaun Kerr
  9. -}
  10. data BigBox =
  11. Cc | Hp | Oc | Dd | Td | Rr deriving Eq
  12. instance Show BigBox where
  13. show Cc = "Creation and Control"
  14. show Hp = "Honor and Profit"
  15. show Oc = "Order and Chaos"
  16. show Dd = "Data and Destiny"
  17. show Td = "Terminal Directive"
  18. show Rr = "Reign and Reverie"
  19. data DataPack =
  20. Lunar1 | Lunar2 | Lunar3 | Lunar4 | Lunar5 | Lunar6
  21. | Sansan1 | Sansan2 | Sansan3 | Sansan4 | Sansan5 | Sansan6
  22. | Mumbad1 | Mumbad2 | Mumbad3 | Mumbad4 | Mumbad5 | Mumbad6
  23. | Flash1 | Flash2 | Flash3 | Flash4 | Flash5 | Flash6
  24. | Red1 | Red2 | Red3 | Red4 | Red5 | Red6
  25. | Kitara1 | Kitara2 | Kitara3 | Kitara4 | Kitara5 | Kitara6 deriving Eq
  26. instance Show DataPack where
  27. show Lunar1 = "Upstalk"
  28. show Lunar2 = "The Spaces Between"
  29. show Lunar3 = "First Contact"
  30. show Lunar4 = "Up and Over"
  31. show Lunar5 = "All That Remains"
  32. show Lunar6 = "The Source"
  33. show Sansan1 = "The Valley"
  34. show Sansan2 = "Breaker Bay"
  35. show Sansan3 = "Chrome City"
  36. show Sansan4 = "The Underway"
  37. show Sansan5 = "Old Hollywood"
  38. show Sansan6 = "The Universe of Tomorrow"
  39. show Mumbad1 = "Kala Ghoda"
  40. show Mumbad2 = "Business First"
  41. show Mumbad3 = "Democracy and Dogma"
  42. show Mumbad4 = "Salsette Island"
  43. show Mumbad5 = "The Liberated Mind"
  44. show Mumbad6 = "Fear the Masses"
  45. show Flash1 = "23 Seconds"
  46. show Flash2 = "Blood Money"
  47. show Flash3 = "Escalation"
  48. show Flash4 = "Intervention"
  49. show Flash5 = "Martial Law"
  50. show Flash6 = "Quorum"
  51. show Red1 = "Daedalus Complex"
  52. show Red2 = "Station One"
  53. show Red3 = "Earth's Scion"
  54. show Red4 = "Blood and Water"
  55. show Red5 = "Free Mars"
  56. show Red6 = "Crimson Dust"
  57. show Kitara1 = "Sovereign Sight"
  58. show Kitara2 = "Down the White Nile"
  59. show Kitara3 = "Council of the Crest"
  60. show Kitara4 = "The Devil and the Dragon"
  61. show Kitara5 = "Whispers in Nalubaale"
  62. show Kitara6 = "Kampala Ascendent"