jaml-ui 0.21.2 → 0.21.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (119) hide show
  1. package/DESIGN.md +36 -6
  2. package/dist/components/JamlAnalyzerFullscreen.d.ts +1 -1
  3. package/dist/components/JamlAnalyzerFullscreen.js +5 -81
  4. package/dist/components/JamlCurator.js +1 -1
  5. package/dist/components/JamlSpeedometer.d.ts +7 -2
  6. package/dist/components/JamlSpeedometer.js +8 -15
  7. package/dist/components/jamlMap/JamlMapEditor.js +42 -38
  8. package/dist/components/jamlMap/JokerPicker.js +2 -2
  9. package/dist/components/jamlMap/MysterySlot.js +4 -4
  10. package/dist/hooks/useSearch.d.ts +2 -1
  11. package/dist/hooks/useSearch.js +111 -8
  12. package/dist/lib/SpriteMapper.d.ts +10 -0
  13. package/dist/lib/SpriteMapper.js +48 -0
  14. package/dist/lib/cardParser.d.ts +8 -0
  15. package/dist/lib/cardParser.js +65 -0
  16. package/dist/lib/classes/BuyMetaData.d.ts +11 -0
  17. package/dist/lib/classes/BuyMetaData.js +1 -0
  18. package/dist/lib/config.d.ts +13 -0
  19. package/dist/lib/config.js +15 -0
  20. package/dist/lib/const.d.ts +61 -0
  21. package/dist/lib/const.js +521 -0
  22. package/dist/lib/data/constants.d.ts +11 -0
  23. package/dist/lib/data/constants.js +17 -0
  24. package/dist/lib/hooks/useDragScroll.d.ts +4 -0
  25. package/dist/lib/hooks/useDragScroll.js +48 -0
  26. package/dist/lib/hooks/useJamlFilter.d.ts +48 -0
  27. package/dist/lib/hooks/useJamlFilter.js +219 -0
  28. package/dist/lib/hooks/useSeedAnalyzer.d.ts +6 -0
  29. package/dist/lib/hooks/useSeedAnalyzer.js +48 -0
  30. package/dist/lib/jaml/jamlCompletion.d.ts +12 -0
  31. package/dist/lib/jaml/jamlCompletion.js +13 -0
  32. package/dist/lib/jaml/jamlData.d.ts +3 -0
  33. package/dist/lib/jaml/jamlData.js +8 -0
  34. package/dist/lib/jaml/jamlObjectives.d.ts +13 -0
  35. package/dist/lib/jaml/jamlObjectives.js +97 -0
  36. package/dist/lib/jaml/jamlParser.d.ts +14 -0
  37. package/dist/lib/jaml/jamlParser.js +47 -0
  38. package/dist/lib/jaml/jamlPresets.d.ts +8 -0
  39. package/dist/lib/jaml/jamlPresets.js +61 -0
  40. package/dist/lib/jaml/jamlSchema.d.ts +54 -0
  41. package/dist/lib/jaml/jamlSchema.js +91 -0
  42. package/dist/lib/parseDailyRitual.d.ts +45 -0
  43. package/dist/lib/parseDailyRitual.js +69 -0
  44. package/dist/lib/tts/getRevealPos.d.ts +5 -0
  45. package/dist/lib/tts/getRevealPos.js +16 -0
  46. package/dist/lib/tts/splitTtsDisplay.d.ts +19 -0
  47. package/dist/lib/tts/splitTtsDisplay.js +35 -0
  48. package/dist/lib/types.d.ts +121 -0
  49. package/dist/lib/types.js +1 -0
  50. package/dist/lib/utils.d.ts +2 -0
  51. package/dist/lib/utils.js +5 -0
  52. package/dist/ui/JimboIconButton.d.ts +10 -0
  53. package/dist/ui/JimboIconButton.js +28 -0
  54. package/dist/ui/JimboInputModal.d.ts +13 -0
  55. package/dist/ui/JimboInputModal.js +60 -0
  56. package/dist/ui/JimboSelect.d.ts +18 -0
  57. package/dist/ui/JimboSelect.js +43 -0
  58. package/dist/ui/PanelSplitter.d.ts +7 -0
  59. package/dist/ui/PanelSplitter.js +76 -0
  60. package/dist/ui/ide/AgnosticSeedCard.d.ts +19 -0
  61. package/dist/ui/ide/AgnosticSeedCard.js +48 -0
  62. package/dist/ui/ide/DeckSprite.d.ts +1 -0
  63. package/dist/ui/ide/DeckSprite.js +2 -0
  64. package/dist/ui/ide/JamlBuilder.d.ts +1 -0
  65. package/dist/ui/ide/JamlBuilder.js +112 -0
  66. package/dist/ui/ide/JamlEditor.d.ts +7 -0
  67. package/dist/ui/ide/JamlEditor.js +496 -0
  68. package/dist/ui/ide/JamlEditorMonaco.d.ts +8 -0
  69. package/dist/ui/ide/JamlEditorMonaco.js +78 -0
  70. package/dist/ui/ide/WasmStatus.d.ts +1 -0
  71. package/dist/ui/ide/WasmStatus.js +42 -0
  72. package/dist/ui/jimbo.css +336 -31
  73. package/dist/ui/jimboApp.d.ts +12 -0
  74. package/dist/ui/jimboApp.js +15 -0
  75. package/dist/ui/jimboInfoCard.d.ts +31 -0
  76. package/dist/ui/jimboInfoCard.js +26 -0
  77. package/dist/ui/jimboInset.d.ts +9 -0
  78. package/dist/ui/jimboInset.js +9 -0
  79. package/dist/ui/jimboSectionHeader.d.ts +11 -0
  80. package/dist/ui/jimboSectionHeader.js +9 -0
  81. package/dist/ui/jimboStatGrid.d.ts +13 -0
  82. package/dist/ui/jimboStatGrid.js +9 -0
  83. package/dist/ui/jimboWordmark.d.ts +10 -0
  84. package/dist/ui/jimboWordmark.js +9 -0
  85. package/dist/ui/mascot/JammySpeechBox.d.ts +9 -0
  86. package/dist/ui/mascot/JammySpeechBox.js +30 -0
  87. package/dist/ui/mascot/SeedMascot.d.ts +37 -0
  88. package/dist/ui/mascot/SeedMascot.js +17 -0
  89. package/dist/ui/mascot/index.d.ts +3 -0
  90. package/dist/ui/mascot/index.js +3 -0
  91. package/dist/ui/mascot/menuConfig.d.ts +102 -0
  92. package/dist/ui/mascot/menuConfig.js +12 -0
  93. package/dist/ui/panel.d.ts +1 -1
  94. package/dist/ui/panel.js +3 -21
  95. package/dist/ui/radial/RadialBadge.d.ts +17 -0
  96. package/dist/ui/radial/RadialBadge.js +43 -0
  97. package/dist/ui/radial/RadialBreadcrumb.d.ts +12 -0
  98. package/dist/ui/radial/RadialBreadcrumb.js +18 -0
  99. package/dist/ui/radial/RadialButton.d.ts +61 -0
  100. package/dist/ui/radial/RadialButton.js +102 -0
  101. package/dist/ui/radial/RadialMenu.d.ts +38 -0
  102. package/dist/ui/radial/RadialMenu.js +168 -0
  103. package/dist/ui/radial/RadialPill.d.ts +18 -0
  104. package/dist/ui/radial/RadialPill.js +15 -0
  105. package/dist/ui/radial/index.d.ts +16 -0
  106. package/dist/ui/radial/index.js +18 -0
  107. package/dist/ui/radial/radialMenuStore.d.ts +31 -0
  108. package/dist/ui/radial/radialMenuStore.js +122 -0
  109. package/dist/ui/radial/radialMenuViewport.d.ts +6 -0
  110. package/dist/ui/radial/radialMenuViewport.js +59 -0
  111. package/dist/ui/radial/useRadialMenu.d.ts +35 -0
  112. package/dist/ui/radial/useRadialMenu.js +107 -0
  113. package/dist/ui/showcase.d.ts +14 -6
  114. package/dist/ui/showcase.js +13 -21
  115. package/dist/ui/tokens.d.ts +5 -19
  116. package/dist/ui/tokens.js +5 -21
  117. package/dist/ui.d.ts +14 -0
  118. package/dist/ui.js +15 -0
  119. package/package.json +145 -146
@@ -0,0 +1,521 @@
1
+ export const jokers = [
2
+ { "name": "Joker", "pos": { "x": 0, "y": 0 } }, { "name": "Greedy Joker", "pos": { "x": 6, "y": 1 } }, { "name": "Lusty Joker", "pos": { "x": 7, "y": 1 } }, { "name": "Wrathful Joker", "pos": { "x": 8, "y": 1 } }, { "name": "Gluttonous Joker", "pos": { "x": 9, "y": 1 } }, { "name": "Jolly Joker", "pos": { "x": 2, "y": 0 } }, { "name": "Zany Joker", "pos": { "x": 3, "y": 0 } }, { "name": "Mad Joker", "pos": { "x": 4, "y": 0 } }, { "name": "Crazy Joker", "pos": { "x": 5, "y": 0 } }, { "name": "Droll Joker", "pos": { "x": 6, "y": 0 } }, { "name": "Sly Joker", "pos": { "x": 0, "y": 14 } }, { "name": "Wily Joker", "pos": { "x": 1, "y": 14 } }, { "name": "Clever Joker", "pos": { "x": 2, "y": 14 } }, { "name": "Devious Joker", "pos": { "x": 3, "y": 14 } }, { "name": "Crafty Joker", "pos": { "x": 4, "y": 14 } }, { "name": "Half Joker", "pos": { "x": 7, "y": 0 } }, { "name": "Joker Stencil", "pos": { "x": 2, "y": 5 } }, { "name": "Four Fingers", "pos": { "x": 6, "y": 6 } }, { "name": "Mime", "pos": { "x": 4, "y": 1 } }, { "name": "Credit Card", "pos": { "x": 5, "y": 1 } }, { "name": "Ceremonial Dagger", "pos": { "x": 5, "y": 5 } }, { "name": "Banner", "pos": { "x": 1, "y": 2 } }, { "name": "Mystic Summit", "pos": { "x": 2, "y": 2 } }, { "name": "Marble Joker", "pos": { "x": 3, "y": 2 } }, { "name": "Loyalty Card", "pos": { "x": 4, "y": 2 } }, { "name": "8 Ball", "pos": { "x": 0, "y": 5 } }, { "name": "Misprint", "pos": { "x": 6, "y": 2 } }, { "name": "Dusk", "pos": { "x": 4, "y": 7 } }, { "name": "Raised Fist", "pos": { "x": 8, "y": 2 } }, { "name": "Chaos the Clown", "pos": { "x": 1, "y": 0 } }, { "name": "Fibonacci", "pos": { "x": 1, "y": 5 } }, { "name": "Steel Joker", "pos": { "x": 7, "y": 2 } }, { "name": "Scary Face", "pos": { "x": 2, "y": 3 } }, { "name": "Abstract Joker", "pos": { "x": 3, "y": 3 } }, { "name": "Delayed Gratification", "pos": { "x": 4, "y": 3 } }, { "name": "Hack", "pos": { "x": 5, "y": 2 } }, { "name": "Pareidolia", "pos": { "x": 6, "y": 3 } }, { "name": "Gros Michel", "pos": { "x": 7, "y": 6 } }, { "name": "Even Steven", "pos": { "x": 8, "y": 3 } }, { "name": "Odd Todd", "pos": { "x": 9, "y": 3 } }, { "name": "Scholar", "pos": { "x": 3, "y": 6 } }, { "name": "Business Card", "pos": { "x": 1, "y": 4 } }, { "name": "Supernova", "pos": { "x": 2, "y": 4 } }, { "name": "Ride the Bus", "pos": { "x": 1, "y": 6 } }, { "name": "Space Joker", "pos": { "x": 3, "y": 5 } }, { "name": "Egg", "pos": { "x": 0, "y": 10 } }, { "name": "Burglar", "pos": { "x": 1, "y": 10 } }, { "name": "Blackboard", "pos": { "x": 2, "y": 10 } }, { "name": "Runner", "pos": { "x": 3, "y": 10 } }, { "name": "Ice Cream", "pos": { "x": 4, "y": 10 } }, { "name": "DNA", "pos": { "x": 5, "y": 10 } }, { "name": "Splash", "pos": { "x": 6, "y": 10 } }, { "name": "Blue Joker", "pos": { "x": 7, "y": 10 } }, { "name": "Sixth Sense", "pos": { "x": 8, "y": 10 } }, { "name": "Constellation", "pos": { "x": 9, "y": 10 } }, { "name": "Hiker", "pos": { "x": 0, "y": 11 } }, { "name": "Faceless Joker", "pos": { "x": 1, "y": 11 } }, { "name": "Green Joker", "pos": { "x": 2, "y": 11 } }, { "name": "Superposition", "pos": { "x": 3, "y": 11 } }, { "name": "To Do List", "pos": { "x": 4, "y": 11 } }, { "name": "Cavendish", "pos": { "x": 5, "y": 11 } }, { "name": "Card Sharp", "pos": { "x": 6, "y": 11 } }, { "name": "Red Card", "pos": { "x": 7, "y": 11 } }, { "name": "Madness", "pos": { "x": 8, "y": 11 } }, { "name": "Square Joker", "pos": { "x": 9, "y": 11 } }, { "name": "Seance", "pos": { "x": 0, "y": 12 } }, { "name": "Riff-raff", "pos": { "x": 1, "y": 12 } }, { "name": "Vampire", "pos": { "x": 2, "y": 12 } }, { "name": "Shortcut", "pos": { "x": 3, "y": 12 } }, { "name": "Hologram", "pos": { "x": 4, "y": 12 } }, { "name": "Vagabond", "pos": { "x": 5, "y": 12 } }, { "name": "Baron", "pos": { "x": 6, "y": 12 } }, { "name": "Cloud 9", "pos": { "x": 7, "y": 12 } }, { "name": "Rocket", "pos": { "x": 8, "y": 12 } }, { "name": "Obelisk", "pos": { "x": 9, "y": 12 } }, { "name": "Midas Mask", "pos": { "x": 0, "y": 13 } }, { "name": "Luchador", "pos": { "x": 1, "y": 13 } }, { "name": "Photograph", "pos": { "x": 2, "y": 13 } }, { "name": "Gift Card", "pos": { "x": 3, "y": 13 } }, { "name": "Turtle Bean", "pos": { "x": 4, "y": 13 } }, { "name": "Erosion", "pos": { "x": 5, "y": 13 } }, { "name": "Reserved Parking", "pos": { "x": 6, "y": 13 } }, { "name": "Mail In Rebate", "pos": { "x": 7, "y": 13 } }, { "name": "To the Moon", "pos": { "x": 8, "y": 13 } }, { "name": "Hallucination", "pos": { "x": 9, "y": 13 } }, { "name": "Fortune Teller", "pos": { "x": 7, "y": 5 } }, { "name": "Juggler", "pos": { "x": 0, "y": 1 } }, { "name": "Drunkard", "pos": { "x": 1, "y": 1 } }, { "name": "Stone Joker", "pos": { "x": 9, "y": 0 } }, { "name": "Golden Joker", "pos": { "x": 9, "y": 2 } }, { "name": "Lucky Cat", "pos": { "x": 5, "y": 14 } }, { "name": "Baseball Card", "pos": { "x": 6, "y": 14 } }, { "name": "Bull", "pos": { "x": 7, "y": 14 } }, { "name": "Diet Cola", "pos": { "x": 8, "y": 14 } }, { "name": "Trading Card", "pos": { "x": 9, "y": 14 } }, { "name": "Flash Card", "pos": { "x": 0, "y": 15 } }, { "name": "Popcorn", "pos": { "x": 1, "y": 15 } }, { "name": "Spare Trousers", "pos": { "x": 4, "y": 15 } }, { "name": "Ancient Joker", "pos": { "x": 7, "y": 15 } }, { "name": "Ramen", "pos": { "x": 2, "y": 15 } }, { "name": "Walkie Talkie", "pos": { "x": 8, "y": 15 } }, { "name": "Seltzer", "pos": { "x": 3, "y": 15 } }, { "name": "Castle", "pos": { "x": 9, "y": 15 } }, { "name": "Smiley Face", "pos": { "x": 6, "y": 15 } }, { "name": "Campfire", "pos": { "x": 5, "y": 15 } }, { "name": "Golden Ticket", "pos": { "x": 5, "y": 3 } }, { "name": "Mr. Bones", "pos": { "x": 3, "y": 4 } }, { "name": "Acrobat", "pos": { "x": 2, "y": 1 } }, { "name": "Sock and Buskin", "pos": { "x": 3, "y": 1 } }, { "name": "Swashbuckler", "pos": { "x": 9, "y": 5 } }, { "name": "Troubadour", "pos": { "x": 0, "y": 2 } }, { "name": "Certificate", "pos": { "x": 8, "y": 8 } }, { "name": "Smeared Joker", "pos": { "x": 4, "y": 6 } }, { "name": "Throwback", "pos": { "x": 5, "y": 7 } }, { "name": "Hanging Chad", "pos": { "x": 9, "y": 6 } }, { "name": "Rough Gem", "pos": { "x": 9, "y": 7 } }, { "name": "Bloodstone", "pos": { "x": 0, "y": 8 } }, { "name": "Arrowhead", "pos": { "x": 1, "y": 8 } }, { "name": "Onyx Agate", "pos": { "x": 2, "y": 8 } }, { "name": "Glass Joker", "pos": { "x": 1, "y": 3 } }, { "name": "Showman", "pos": { "x": 6, "y": 5 } }, { "name": "Flower Pot", "pos": { "x": 0, "y": 6 } }, { "name": "Blueprint", "pos": { "x": 0, "y": 3 } }, { "name": "Wee Joker", "pos": { "x": 0, "y": 4 } }, { "name": "Merry Andy", "pos": { "x": 8, "y": 0 } }, { "name": "Oops! All 6s", "pos": { "x": 5, "y": 6 } }, { "name": "The Idol", "pos": { "x": 6, "y": 7 } }, { "name": "Seeing Double", "pos": { "x": 4, "y": 4 } }, { "name": "Matador", "pos": { "x": 4, "y": 5 } }, { "name": "Hit the Road", "pos": { "x": 8, "y": 5 } }, { "name": "The Duo", "pos": { "x": 5, "y": 4 } }, { "name": "The Trio", "pos": { "x": 6, "y": 4 } }, { "name": "The Family", "pos": { "x": 7, "y": 4 } }, { "name": "The Order", "pos": { "x": 8, "y": 4 } }, { "name": "The Tribe", "pos": { "x": 9, "y": 4 } }, { "name": "Stuntman", "pos": { "x": 8, "y": 6 } }, { "name": "Invisible Joker", "pos": { "x": 1, "y": 7 } }, { "name": "Brainstorm", "pos": { "x": 7, "y": 7 } }, { "name": "Satellite", "pos": { "x": 8, "y": 7 } }, { "name": "Shoot the Moon", "pos": { "x": 2, "y": 6 } }, { "name": "Drivers License", "pos": { "x": 0, "y": 7 } }, { "name": "Cartomancer", "pos": { "x": 7, "y": 3 } }, { "name": "Astronomer", "pos": { "x": 2, "y": 7 } }, { "name": "Burnt Joker", "pos": { "x": 3, "y": 7 } }, { "name": "Bootstraps", "pos": { "x": 9, "y": 8 } }, { "name": "Canio", "pos": { "x": 3, "y": 8 } }, { "name": "Triboulet", "pos": { "x": 4, "y": 8 } }, { "name": "Yorick", "pos": { "x": 5, "y": 8 } }, { "name": "Chicot", "pos": { "x": 6, "y": 8 } }, { "name": "Perkeo", "pos": { "x": 7, "y": 8 } }
3
+ ];
4
+ export const jokerFaces = [
5
+ {
6
+ "name": "Hologram",
7
+ "pos": { "x": 2, "y": 9 },
8
+ "animated": true
9
+ },
10
+ { "name": "Canio", "pos": { "x": 3, "y": 9 }, "animated": true },
11
+ { "name": "Triboulet", "pos": { "x": 4, "y": 9 }, "animated": true },
12
+ { "name": "Yorick", "pos": { "x": 5, "y": 9 }, "animated": true },
13
+ { "name": "Chicot", "pos": { "x": 6, "y": 9 }, "animated": true },
14
+ { "name": "Perkeo", "pos": { "x": 7, "y": 9 }, "animated": true },
15
+ ];
16
+ export const consumablesFaces = [
17
+ {
18
+ "name": "The Soul",
19
+ "pos": { "x": 0, "y": 1 },
20
+ "animated": true
21
+ },
22
+ ];
23
+ export const boosterPacks = [
24
+ { "name": "Arcana Pack", "pos": { "x": 0, "y": 0 } },
25
+ { "name": "Arcana Pack two", "pos": { "x": 1, "y": 0 } },
26
+ { "name": "Arcana Pack three", "pos": { "x": 2, "y": 0 } },
27
+ { "name": "Arcana Pack four", "pos": { "x": 3, "y": 0 } },
28
+ { "name": "Celestial Pack", "pos": { "x": 0, "y": 1 } },
29
+ { "name": "Celestial Pack two", "pos": { "x": 1, "y": 1 } },
30
+ { "name": "Celestial Pack three", "pos": { "x": 2, "y": 1 } },
31
+ { "name": "Celestial Pack four", "pos": { "x": 3, "y": 1 } },
32
+ { "name": "Jumbo Arcana Pack", "pos": { "x": 0, "y": 2 } },
33
+ { "name": "Jumbo Arcana Pack two", "pos": { "x": 1, "y": 2 } },
34
+ { "name": "Mega Arcana Pack", "pos": { "x": 2, "y": 2 } },
35
+ { "name": "Mega Arcana Pack two", "pos": { "x": 3, "y": 2 } },
36
+ { "name": "Jumbo Celestial Pack", "pos": { "x": 0, "y": 3 } },
37
+ { "name": "Jumbo Celestial Pack two", "pos": { "x": 1, "y": 3 } },
38
+ { "name": "Mega Celestial Pack", "pos": { "x": 2, "y": 3 } },
39
+ { "name": "Mega Celestial Pack two", "pos": { "x": 3, "y": 3 } },
40
+ { "name": "Spectral Pack", "pos": { "x": 0, "y": 4 } },
41
+ { "name": "Spectral Pack two", "pos": { "x": 1, "y": 4 } },
42
+ { "name": "Jumbo Spectral Pack", "pos": { "x": 2, "y": 4 } },
43
+ { "name": "Mega Spectral Pack", "pos": { "x": 3, "y": 4 } },
44
+ { "name": "blank", "pos": { "x": 0, "y": 5 } },
45
+ { "name": "blank", "pos": { "x": 1, "y": 5 } },
46
+ { "name": "blank", "pos": { "x": 2, "y": 5 } },
47
+ { "name": "blank", "pos": { "x": 3, "y": 5 } },
48
+ { "name": "Standard Pack", "pos": { "x": 0, "y": 6 } },
49
+ { "name": "Standard Pack two", "pos": { "x": 1, "y": 6 } },
50
+ { "name": "Standard Pack three", "pos": { "x": 2, "y": 6 } },
51
+ { "name": "Standard Pack four", "pos": { "x": 3, "y": 6 } },
52
+ { "name": "Jumbo Standard Pack", "pos": { "x": 0, "y": 7 } },
53
+ { "name": "Jumbo Standard Pack two", "pos": { "x": 1, "y": 7 } },
54
+ { "name": "Mega Standard Pack", "pos": { "x": 2, "y": 7 } },
55
+ { "name": "Mega Standard Pack two", "pos": { "x": 3, "y": 7 } },
56
+ { "name": "Buffoon Pack", "pos": { "x": 0, "y": 8 } },
57
+ { "name": "Buffoon Pack two", "pos": { "x": 1, "y": 8 } },
58
+ { "name": "Jumbo Buffoon Pack", "pos": { "x": 2, "y": 8 } },
59
+ { "name": "Mega Buffoon Pack", "pos": { "x": 3, "y": 8 } },
60
+ ];
61
+ export const tarotsAndPlanets = [
62
+ { "name": "The Fool", "pos": { "x": 0, "y": 0 } }, { "name": "The Magician", "pos": { "x": 1, "y": 0 } }, { "name": "The High Priestess", "pos": { "x": 2, "y": 0 } }, { "name": "The Empress", "pos": { "x": 3, "y": 0 } }, { "name": "The Emperor", "pos": { "x": 4, "y": 0 } }, { "name": "The Hierophant", "pos": { "x": 5, "y": 0 } }, { "name": "The Lovers", "pos": { "x": 6, "y": 0 } }, { "name": "The Chariot", "pos": { "x": 7, "y": 0 } }, { "name": "Justice", "pos": { "x": 8, "y": 0 } }, { "name": "The Hermit", "pos": { "x": 9, "y": 0 } }, { "name": "The Wheel of Fortune", "pos": { "x": 0, "y": 1 } }, { "name": "Strength", "pos": { "x": 1, "y": 1 } }, { "name": "The Hanged Man", "pos": { "x": 2, "y": 1 } }, { "name": "Death", "pos": { "x": 3, "y": 1 } }, { "name": "Temperance", "pos": { "x": 4, "y": 1 } }, { "name": "The Devil", "pos": { "x": 5, "y": 1 } }, { "name": "The Tower", "pos": { "x": 6, "y": 1 } }, { "name": "The Star", "pos": { "x": 7, "y": 1 } }, { "name": "The Moon", "pos": { "x": 8, "y": 1 } }, { "name": "The Sun", "pos": { "x": 9, "y": 1 } }, { "name": "Judgement", "pos": { "x": 0, "y": 2 } }, { "name": "The World", "pos": { "x": 1, "y": 2 } }, { "name": "Mercury", "pos": { "x": 0, "y": 3 } }, { "name": "Venus", "pos": { "x": 1, "y": 3 } }, { "name": "Earth", "pos": { "x": 2, "y": 3 } }, { "name": "Mars", "pos": { "x": 3, "y": 3 } }, { "name": "Jupiter", "pos": { "x": 4, "y": 3 } }, { "name": "Saturn", "pos": { "x": 5, "y": 3 } }, { "name": "Uranus", "pos": { "x": 6, "y": 3 } }, { "name": "Neptune", "pos": { "x": 7, "y": 3 } }, { "name": "Pluto", "pos": { "x": 8, "y": 3 } }, { "name": "Planet X", "pos": { "x": 9, "y": 2 } }, { "name": "Ceres", "pos": { "x": 8, "y": 2 } }, { "name": "Eris", "pos": { "x": 3, "y": 2 } }, { "name": "Familiar", "pos": { "x": 0, "y": 4 } }, { "name": "Grim", "pos": { "x": 1, "y": 4 } }, { "name": "Incantation", "pos": { "x": 2, "y": 4 } }, { "name": "Talisman", "pos": { "x": 3, "y": 4 } }, { "name": "Aura", "pos": { "x": 4, "y": 4 } }, { "name": "Wraith", "pos": { "x": 5, "y": 4 } }, { "name": "Sigil", "pos": { "x": 6, "y": 4 } }, { "name": "Ouija", "pos": { "x": 7, "y": 4 } }, { "name": "Ectoplasm", "pos": { "x": 8, "y": 4 } }, { "name": "Immolate", "pos": { "x": 9, "y": 4 } }, { "name": "Ankh", "pos": { "x": 0, "y": 5 } }, { "name": "Deja Vu", "pos": { "x": 1, "y": 5 } }, { "name": "Hex", "pos": { "x": 2, "y": 5 } }, { "name": "Trance", "pos": { "x": 3, "y": 5 } }, { "name": "Medium", "pos": { "x": 4, "y": 5 } }, { "name": "Cryptid", "pos": { "x": 5, "y": 5 } }, { "name": "The Soul", "pos": { "x": 2, "y": 2 } }, { "name": "Black Hole", "pos": { "x": 9, "y": 3 } }
63
+ ];
64
+ export const tags = [
65
+ { "name": "Uncommon Tag", "pos": { "x": 0, "y": 0 } }, { "name": "Rare Tag", "pos": { "x": 1, "y": 0 } }, { "name": "Negative Tag", "pos": { "x": 2, "y": 0 } }, { "name": "Foil Tag", "pos": { "x": 3, "y": 0 } }, { "name": "Holographic Tag", "pos": { "x": 0, "y": 1 } }, { "name": "Polychrome Tag", "pos": { "x": 1, "y": 1 } }, { "name": "Investment Tag", "pos": { "x": 2, "y": 1 } }, { "name": "Voucher Tag", "pos": { "x": 3, "y": 1 } }, { "name": "Boss Tag", "pos": { "x": 0, "y": 2 } }, { "name": "Standard Tag", "pos": { "x": 1, "y": 2 } }, { "name": "Charm Tag", "pos": { "x": 2, "y": 2 } }, { "name": "Meteor Tag", "pos": { "x": 3, "y": 2 } }, { "name": "Buffoon Tag", "pos": { "x": 4, "y": 2 } }, { "name": "Handy Tag", "pos": { "x": 1, "y": 3 } }, { "name": "Garbage Tag", "pos": { "x": 2, "y": 3 } }, { "name": "Ethereal Tag", "pos": { "x": 3, "y": 3 } }, { "name": "Coupon Tag", "pos": { "x": 4, "y": 0 } }, { "name": "Double Tag", "pos": { "x": 5, "y": 0 } }, { "name": "Juggle Tag", "pos": { "x": 5, "y": 1 } }, { "name": "D6 Tag", "pos": { "x": 5, "y": 3 } }, { "name": "Top-up Tag", "pos": { "x": 4, "y": 1 } }, { "name": "Speed Tag", "pos": { "x": 0, "y": 3 } }, { "name": "Orbital Tag", "pos": { "x": 5, "y": 2 } }, { "name": "Economy Tag", "pos": { "x": 4, "y": 3 } }
66
+ ];
67
+ export const vouchers = [
68
+ { "name": "Overstock", "pos": { "x": 0, "y": 0 } }, { "name": "Clearance Sale", "pos": { "x": 3, "y": 0 } }, { "name": "Hone", "pos": { "x": 4, "y": 0 } }, { "name": "Reroll Surplus", "pos": { "x": 0, "y": 2 } }, { "name": "Crystal Ball", "pos": { "x": 2, "y": 2 } }, { "name": "Telescope", "pos": { "x": 3, "y": 2 } }, { "name": "Grabber", "pos": { "x": 5, "y": 0 } }, { "name": "Wasteful", "pos": { "x": 6, "y": 0 } }, { "name": "Tarot Merchant", "pos": { "x": 1, "y": 0 } }, { "name": "Planet Merchant", "pos": { "x": 2, "y": 0 } }, { "name": "Seed Money", "pos": { "x": 1, "y": 2 } }, { "name": "Blank", "pos": { "x": 7, "y": 0 } }, { "name": "Magic Trick", "pos": { "x": 4, "y": 2 } }, { "name": "Hieroglyph", "pos": { "x": 5, "y": 2 } }, { "name": "Director's Cut", "pos": { "x": 6, "y": 2 } }, { "name": "Paint Brush", "pos": { "x": 7, "y": 2 } }, { "name": "Overstock Plus", "pos": { "x": 0, "y": 1 } }, { "name": "Liquidation", "pos": { "x": 3, "y": 1 } }, { "name": "Glow Up", "pos": { "x": 4, "y": 1 } }, { "name": "Reroll Glut", "pos": { "x": 0, "y": 3 } }, { "name": "Omen Globe", "pos": { "x": 2, "y": 3 } }, { "name": "Observatory", "pos": { "x": 3, "y": 3 } }, { "name": "Nacho Tong", "pos": { "x": 5, "y": 1 } }, { "name": "Recyclomancy", "pos": { "x": 6, "y": 1 } }, { "name": "Tarot Tycoon", "pos": { "x": 1, "y": 1 } }, { "name": "Planet Tycoon", "pos": { "x": 2, "y": 1 } }, { "name": "Money Tree", "pos": { "x": 1, "y": 3 } }, { "name": "Antimatter", "pos": { "x": 7, "y": 1 } }, { "name": "Illusion", "pos": { "x": 4, "y": 3 } }, { "name": "Petroglyph", "pos": { "x": 5, "y": 3 } }, { "name": "Retcon", "pos": { "x": 6, "y": 3 } }, { "name": "Palette", "pos": { "x": 7, "y": 3 } }
69
+ ];
70
+ export const bosses = [
71
+ { "name": "Small Blind", "pos": { "x": 0, "y": 0 } }, { "name": "Big Blind", "pos": { "x": 0, "y": 1 } }, { "name": "The Ox", "pos": { "x": 0, "y": 2 } }, { "name": "The Hook", "pos": { "x": 0, "y": 7 } }, { "name": "The Mouth", "pos": { "x": 0, "y": 18 } }, { "name": "The Fish", "pos": { "x": 0, "y": 5 } }, { "name": "The Club", "pos": { "x": 0, "y": 4 } }, { "name": "The Manacle", "pos": { "x": 0, "y": 8 } }, { "name": "The Tooth", "pos": { "x": 0, "y": 22 } }, { "name": "The Wall", "pos": { "x": 0, "y": 9 } }, { "name": "The House", "pos": { "x": 0, "y": 3 } }, { "name": "The Mark", "pos": { "x": 0, "y": 23 } }, { "name": "Cerulean Bell", "pos": { "x": 0, "y": 26 } }, { "name": "The Wheel", "pos": { "x": 0, "y": 10 } }, { "name": "The Arm", "pos": { "x": 0, "y": 11 } }, { "name": "The Psychic", "pos": { "x": 0, "y": 12 } }, { "name": "The Goad", "pos": { "x": 0, "y": 13 } }, { "name": "The Water", "pos": { "x": 0, "y": 14 } }, { "name": "The Eye", "pos": { "x": 0, "y": 17 } }, { "name": "The Plant", "pos": { "x": 0, "y": 19 } }, { "name": "The Needle", "pos": { "x": 0, "y": 20 } }, { "name": "The Head", "pos": { "x": 0, "y": 21 } }, { "name": "Verdant Leaf", "pos": { "x": 0, "y": 28 } }, { "name": "Violet Vessel", "pos": { "x": 0, "y": 29 } }, { "name": "The Window", "pos": { "x": 0, "y": 6 } }, { "name": "The Serpent", "pos": { "x": 0, "y": 15 } }, { "name": "The Pillar", "pos": { "x": 0, "y": 16 } }, { "name": "The Flint", "pos": { "x": 0, "y": 24 } }, { "name": "Amber Acorn", "pos": { "x": 0, "y": 27 } }, { "name": "Crimson Heart", "pos": { "x": 0, "y": 25 } }
72
+ ];
73
+ export const editionMap = {
74
+ "Foil": 1,
75
+ "Holographic": 2,
76
+ "Polychrome": 3
77
+ };
78
+ export const stickerMap = {
79
+ "Eternal": { x: 0, y: 0 },
80
+ "Perishable": { x: 0, y: 2 },
81
+ "Rental": { x: 1, y: 2 }
82
+ };
83
+ export const options = [
84
+ "Negative Tag",
85
+ "Foil Tag",
86
+ "Holographic Tag",
87
+ "Polychrome Tag",
88
+ "Rare Tag",
89
+ "Golden Ticket",
90
+ "Mr. Bones",
91
+ "Acrobat",
92
+ "Sock and Buskin",
93
+ "Swashbuckler",
94
+ "Troubadour",
95
+ "Certificate",
96
+ "Smeared Joker",
97
+ "Throwback",
98
+ "Hanging Chad",
99
+ "Rough Gem",
100
+ "Bloodstone",
101
+ "Arrowhead",
102
+ "Onyx Agate",
103
+ "Glass Joker",
104
+ "Showman",
105
+ "Flower Pot",
106
+ "Blueprint",
107
+ "Wee Joker",
108
+ "Merry Andy",
109
+ "Oops! All 6s",
110
+ "The Idol",
111
+ "Seeing Double",
112
+ "Matador",
113
+ "Hit the Road",
114
+ "The Duo",
115
+ "The Trio",
116
+ "The Family",
117
+ "The Order",
118
+ "The Tribe",
119
+ "Stuntman",
120
+ "Invisible Joker",
121
+ "Brainstorm",
122
+ "Satellite",
123
+ "Shoot the Moon",
124
+ "Driver's License",
125
+ "Cartomancer",
126
+ "Astronomer",
127
+ "Burnt Joker",
128
+ "Bootstraps",
129
+ "Overstock Plus",
130
+ "Liquidation",
131
+ "Glow Up",
132
+ "Reroll Glut",
133
+ "Omen Globe",
134
+ "Observatory",
135
+ "Nacho Tong",
136
+ "Recyclomancy",
137
+ "Tarot Tycoon",
138
+ "Planet Tycoon",
139
+ "Money Tree",
140
+ "Antimatter",
141
+ "Illusion",
142
+ "Petroglyph",
143
+ "Retcon",
144
+ "Palette"
145
+ ];
146
+ export const blinds = ['Small Blind', 'Big Blind', 'Boss Blind'];
147
+ export const blindsCamelCase = ['smallBlind', 'bigBlind', 'bossBlind'];
148
+ export const SeedsWithLegendary = [
149
+ "HPR8Q7K",
150
+ "5YVHAEP",
151
+ "8QBRTPD",
152
+ "9Q2HBUB",
153
+ "9UDETXN",
154
+ "6V8UBX5",
155
+ "VWFNSGW",
156
+ "FV9N9PP",
157
+ "OM4C5SX",
158
+ "BXQOI99",
159
+ "IQPMXNX",
160
+ "4RZ1CIM",
161
+ "7L7ZJHF",
162
+ "QPJ176G",
163
+ "519H44C",
164
+ "5F5VIL1",
165
+ "8N63SBG",
166
+ "5HVI3RM",
167
+ "YL97MTJ",
168
+ "V7IBVQM",
169
+ "ZMQE7AM",
170
+ "5DZSEDQ",
171
+ "OLKJ6ZW",
172
+ "FDFRIK8",
173
+ "V27PHNU",
174
+ "8QEHFLN",
175
+ "CT29RU9",
176
+ "JSN8UI4",
177
+ "OR1XXE3",
178
+ "GPANZA5",
179
+ "DAGKUXJ",
180
+ "1G919GL",
181
+ "JNC47DS",
182
+ "JAIYELM",
183
+ "DMS6GPP",
184
+ "X3KXB3D",
185
+ "Z4PTQ4X",
186
+ "O8QQ89F",
187
+ "K7ABT43",
188
+ "OXLBWJV",
189
+ "CXWQUJV",
190
+ "95A6WF3",
191
+ "54M4758",
192
+ "DZRFNI3",
193
+ "W782DK9",
194
+ "9DG2M8J",
195
+ "8LDYE6L",
196
+ "TICC34H",
197
+ "XBRFZKS",
198
+ "Y9UKTTA",
199
+ "XYWPLPZ",
200
+ "MGIJUOH",
201
+ "MB72QHG",
202
+ "7H5OLS7",
203
+ "6T1X6IO",
204
+ "5N29KQR",
205
+ "QEJR5A5",
206
+ "7XSZ21E",
207
+ "7ODNKXP",
208
+ "Y3UNH78",
209
+ "NSBHHH2",
210
+ "KGR6MNH",
211
+ "7OBR7KH",
212
+ "SZ8C677",
213
+ "MCP64VU",
214
+ "WN7ICR5",
215
+ "M2YPX2F",
216
+ "6RK2SUK",
217
+ "KA3ZAVR",
218
+ "AQOWYID",
219
+ "6YNJUPC",
220
+ "G96MEMU",
221
+ "Z3969N4",
222
+ "I1JGYJL",
223
+ "PJJEZM8",
224
+ "G2VZEU1",
225
+ "E6P8GSO",
226
+ "6A3YDL3",
227
+ "TVXXZ4O",
228
+ "OF22B56",
229
+ "88WSHRC",
230
+ "ETZ3Y2N",
231
+ "X8D6EQ7",
232
+ "JF4LQ7V",
233
+ "2NYI4SU",
234
+ "4BFW92V",
235
+ "YTKDNEO",
236
+ "23SQMC3",
237
+ "E3FC4Y6",
238
+ "AC5AB3X",
239
+ "XZNP87K",
240
+ "5ERISFD",
241
+ "6LZ38CE",
242
+ "OEIKDUR",
243
+ "9RVOERB",
244
+ "1MEF2D3",
245
+ "2OSNAHM",
246
+ "VO2XQNN",
247
+ "YK1KHCJ",
248
+ "BLL8N3C",
249
+ "LALC2D1",
250
+ "HHMBAKQ",
251
+ "MWEQI4T",
252
+ "4BHOFUT",
253
+ "5RTYDUK",
254
+ "1K7CBVU",
255
+ "WRK4MTV",
256
+ "9GJS6GC",
257
+ "ZJWK17V",
258
+ "ASZQXSY",
259
+ "CZV21QS",
260
+ "5H2SJ4L",
261
+ "XZESAEH",
262
+ "KY244RQ",
263
+ "6R7F7XW",
264
+ "ZEFRY57",
265
+ "UN89E4O",
266
+ "JXM4RIA",
267
+ "1SSIK3U",
268
+ "XO4G3PW",
269
+ "PZKFEYF",
270
+ "OL37Y2U",
271
+ "JQ6A2IA",
272
+ "LBVEFKS",
273
+ "SENGKQX",
274
+ "AWRXF7I",
275
+ "B7WCUM9",
276
+ "T3ALPGL",
277
+ "VNBI32O",
278
+ "F9AT8KX",
279
+ "FXLX35X",
280
+ "SU1DQDZ",
281
+ "9ZEC4VU",
282
+ "6E5WYI5",
283
+ "J4LW7TE",
284
+ "QYRBDXB",
285
+ "78JDKTS",
286
+ "RGDRFBE",
287
+ "YDXYS4X",
288
+ "2XJTXUH",
289
+ "YQXIRUC",
290
+ "M1N42MR",
291
+ "H11OF18",
292
+ "6WPP8YO",
293
+ "TZWQHMY",
294
+ "CCZNW71",
295
+ "1TKK31U",
296
+ "8SPGISR",
297
+ "ZSJYNLP",
298
+ "J6M5F3Z",
299
+ "E5N1FIV",
300
+ "F4JW8MD",
301
+ "I3WH3QE",
302
+ "UKTCITC",
303
+ "R4OOQBE",
304
+ "Z2NU11N",
305
+ "QJRXOCU",
306
+ "6YSNVQ7",
307
+ "AOM6X5J",
308
+ "764XZ9J",
309
+ "UPTGH54",
310
+ "IDBT3GC",
311
+ "39LTQ2M",
312
+ "K5NUFWC",
313
+ "N63CQ57",
314
+ "FKWWG6P",
315
+ "7HMKAXU",
316
+ "AY49MMT",
317
+ "387E9ZH",
318
+ "91HXAQR",
319
+ "SMGSXH5",
320
+ "X26N6W8",
321
+ "N7NVIMH",
322
+ "JQI6QEA",
323
+ "PT1D5OZ",
324
+ "89NM5Z1",
325
+ "DCLEWYW",
326
+ "DCU5K1S",
327
+ "JB4XK1I",
328
+ "911DRN2",
329
+ "3PX3PT2",
330
+ "SGKL6X6",
331
+ "S9SUZ32",
332
+ "ZZJMP7X",
333
+ "X34Z8ML",
334
+ "BJKQ4Q3",
335
+ "LEUR6FM",
336
+ "495IZI7",
337
+ "W8AY7LF",
338
+ "ML3KVYY",
339
+ "AISL9JC",
340
+ "M7UC5XX",
341
+ "KR1PIKM",
342
+ "WJH3PBJ",
343
+ "WONYS4V",
344
+ "P89V2OY",
345
+ "74DZFRT",
346
+ "2NRYBHJ",
347
+ "7WRIXML",
348
+ "7ZO64T1",
349
+ "4S2WM23",
350
+ "JGKYTFA",
351
+ "5IKHUDB",
352
+ "EEQPNLN",
353
+ "YIVC5Q1",
354
+ "ERXPOQW",
355
+ "YE3H58O",
356
+ "BL7U2CH",
357
+ "FJ4H1K6",
358
+ "Y58AEO7",
359
+ "YL7Q4A5",
360
+ "L89SWRJ",
361
+ "8W1QOX1",
362
+ "NEVXPAV",
363
+ "4UYEC8Z",
364
+ "PFH7CSO",
365
+ "2STPA3I",
366
+ "IX6AJFR",
367
+ "Z2JOX9X",
368
+ "NFQRHOA",
369
+ "U6V2MY6",
370
+ "DXJVQQA",
371
+ "CED3Z7T",
372
+ "SFZ1KCM",
373
+ "66MU9BQ",
374
+ "7JVPOL1",
375
+ "ALWYMKW",
376
+ "55QOI27",
377
+ "FIZRGML",
378
+ "VCSO13X",
379
+ "QPINMDM",
380
+ "BXQ35VP",
381
+ "O4DC65E",
382
+ "GV24UU4",
383
+ "LHJFLN4",
384
+ "SP5NXMU",
385
+ "SJDYWHU",
386
+ "HSYACD9",
387
+ "4NJMAUT",
388
+ "3S7WESR",
389
+ "D3SRYIV",
390
+ "RB3OUPO",
391
+ "1OA9OU3",
392
+ "2YYKQDL",
393
+ "6CSBFSJ",
394
+ "JLWDTQ7",
395
+ "FQXGT8R",
396
+ "76B7GT2",
397
+ "1GAHG3M",
398
+ "LXFG7XN",
399
+ "4WXAJGN",
400
+ "GAJ5BKF",
401
+ "8VY5194",
402
+ "WKRYCTU",
403
+ "7UKKPRK",
404
+ "8JJ8BI2",
405
+ "1YXYDZ2",
406
+ "W2JNKFT",
407
+ "WNNY4IR",
408
+ "GOXRQGA",
409
+ "HV6MUXN",
410
+ "UFRHVWS",
411
+ "FQDVKV8",
412
+ "OU9AZCY",
413
+ "OIM9AO1",
414
+ "BLAZS5B",
415
+ "R1MN19C",
416
+ "1J7QHQT",
417
+ "S6X74PQ",
418
+ "UZRRHNJ",
419
+ "ZHMO2DV",
420
+ "8Y4YUO6",
421
+ "5M3Q6LA",
422
+ "G2ND5UF",
423
+ "BSVLSMF",
424
+ "8R3PVX9",
425
+ "JQ9UC84",
426
+ "NGU52B5",
427
+ "963FGYO",
428
+ "TKILSRE",
429
+ "5WO7G4O",
430
+ "UVA9G8M",
431
+ "6OWFFVA",
432
+ "W6HTJLV",
433
+ "CMMBQLP",
434
+ "98EFT57",
435
+ ];
436
+ export const popularSeeds = [
437
+ "U8RJYV6N",
438
+ '7LB2WVPK',
439
+ 'PHQ8P93R',
440
+ '8Q47WV6K',
441
+ 'CRNWYUXA',
442
+ "2K9H9HN",
443
+ "ALEEB"
444
+ ];
445
+ export var LOCATIONS;
446
+ (function (LOCATIONS) {
447
+ LOCATIONS["SHOP"] = "SHOP";
448
+ LOCATIONS["PACK"] = "PACK";
449
+ LOCATIONS["MISC"] = "MISC";
450
+ LOCATIONS["VOUCHER"] = "VOUCHER";
451
+ })(LOCATIONS || (LOCATIONS = {}));
452
+ export var LOCATION_TYPES;
453
+ (function (LOCATION_TYPES) {
454
+ LOCATION_TYPES["SHOP"] = "SHOP";
455
+ LOCATION_TYPES["PACK"] = "PACK";
456
+ LOCATION_TYPES["CARD"] = "CARD";
457
+ })(LOCATION_TYPES || (LOCATION_TYPES = {}));
458
+ export const EVENT_UNLOCKS = [
459
+ {
460
+ name: "Stone Joker",
461
+ condition: "Have at least one stone card in deck",
462
+ },
463
+ {
464
+ name: "Steel Joker",
465
+ condition: "Have at least one steel card in deck",
466
+ },
467
+ {
468
+ name: "Glass Joker",
469
+ condition: "Have at least one glass card in deck",
470
+ },
471
+ {
472
+ name: "Golden Ticket",
473
+ condition: "Have at least one Gold Card in deck",
474
+ },
475
+ {
476
+ name: "Lucky Cat",
477
+ condition: "Have at least one lucky card in deck",
478
+ },
479
+ {
480
+ name: "Planet X",
481
+ condition: "Play five of a kind",
482
+ },
483
+ {
484
+ name: "Ceres",
485
+ condition: "Play flush house",
486
+ },
487
+ {
488
+ name: "Eris",
489
+ condition: "Play flush five",
490
+ },
491
+ {
492
+ name: "Cavendish",
493
+ condition: "Gros Michel must go extinct",
494
+ }
495
+ ];
496
+ export const tagDescriptions = {
497
+ "Uncommon Tag": "The next shop will have a free Uncommon Joker.",
498
+ "Rare Tag": "The next shop will have a free Rare Joker.",
499
+ "Negative Tag": "The next base edition Joker you find in a Shop becomes Negative (+1 joker slot) and free.",
500
+ "Foil Tag": "The next base edition Joker you find in a Shop becomes Foil (+50 Chips) and free.",
501
+ "Holographic Tag": "The next base edition Joker you find in a Shop becomes Holographic (+10 Mult) and free.",
502
+ "Polychrome Tag": "The next base edition Joker you find in a Shop becomes Polychrome (X1.5 Mult) and free.",
503
+ "Investment Tag": "Gain $25 after defeating the next Boss Blind.",
504
+ "Voucher Tag": "Adds a Voucher to the next Shop.",
505
+ "Boss Tag": "Re-rolls the next Boss Blind.",
506
+ "Standard Tag": "Immediately open a free Mega Standard Pack.",
507
+ "Charm Tag": "Immediately open a free Mega Arcana Pack.",
508
+ "Meteor Tag": "Immediately open a free Mega Celestial Pack.",
509
+ "Buffoon Tag": "Immediately open a free Mega Buffoon Pack.",
510
+ "Handy Tag": "Gain $1 for each hand played this run.",
511
+ "Garbage Tag": "Gain $1 for each unused discard this run.",
512
+ "Ethereal Tag": "Immediately open a free Spectral Pack.",
513
+ "Coupon Tag": "In the next shop, initial Jokers, Consumables Cards and Booster Packs are free ($0).",
514
+ "Double Tag": "Gives a copy of the next Tag selected (excluding Double Tags).",
515
+ "Juggle Tag": "+3 Hand Size for the next round only.",
516
+ "D6 Tag": "In the next Shop, Rerolls start at $0.",
517
+ "Top-up Tag": "Create up to 2 Common Jokers (if you have space).",
518
+ "Speed Tag": "Gives $5 for each Blind you've skipped this run.",
519
+ "Orbital Tag": "Upgrades a specified random Poker Hand by three levels.",
520
+ "Economy Tag": "Doubles your money (adds a maximum of $40).",
521
+ };
@@ -0,0 +1,11 @@
1
+ export declare const DECK_OPTIONS: string[];
2
+ export declare const STAKE_OPTIONS: string[];
3
+ export declare const ANTE_OPTIONS: number[];
4
+ export declare const SLOT_OPTIONS: number[];
5
+ export declare const RANK_OPTIONS: string[];
6
+ export declare const SUIT_OPTIONS: string[];
7
+ export declare const ENHANCEMENT_OPTIONS: string[];
8
+ export declare const EDITION_OPTIONS: string[];
9
+ export declare const SEAL_OPTIONS: string[];
10
+ export declare const CLAUSE_TYPES: string[];
11
+ export declare const SOURCE_OPTIONS: string[];
@@ -0,0 +1,17 @@
1
+ // UI Options derived from local constants (Blueprint retired)
2
+ export const DECK_OPTIONS = ['Red', 'Blue', 'Yellow', 'Green', 'Black', 'Magic', 'Nebula', 'Ghost', 'Abandoned', 'Checkered', 'Painted', 'Anaglyph', 'Plasma', 'Erratic'];
3
+ export const STAKE_OPTIONS = ['White', 'Red', 'Green', 'Black', 'Blue', 'Purple', 'Orange', 'Gold'];
4
+ export const ANTE_OPTIONS = [1, 2, 3, 4, 5, 6, 7, 8];
5
+ export const SLOT_OPTIONS = [1, 2, 3, 4, 5];
6
+ export const RANK_OPTIONS = ['2', '3', '4', '5', '6', '7', '8', '9', '10', 'Jack', 'Queen', 'King', 'Ace'];
7
+ export const SUIT_OPTIONS = ['Spades', 'Hearts', 'Diamonds', 'Clubs'];
8
+ export const ENHANCEMENT_OPTIONS = ['Bonus', 'Mult', 'Wild', 'Glass', 'Steel', 'Lucky', 'Stone', 'Gold'];
9
+ export const EDITION_OPTIONS = ['Foil', 'Holographic', 'Polychrome', 'Negative'];
10
+ export const SEAL_OPTIONS = ['Gold', 'Red', 'Blue', 'Purple'];
11
+ export const CLAUSE_TYPES = [
12
+ 'Joker', 'Tarot', 'Planet', 'Spectral', 'Voucher', 'Tag', 'Boss', 'Standardcard', 'StandardCard'
13
+ ];
14
+ export const SOURCE_OPTIONS = [
15
+ 'shop', 'arcana_pack', 'celestial_pack', 'spectral_pack', 'buffoon_pack', 'standard_pack',
16
+ 'uncommon_tag', 'rare_tag', 'top_up_tag', 'emperor', 'vagabond', 'judgement', 'wraith'
17
+ ];
@@ -0,0 +1,4 @@
1
+ export declare function useDragScroll(): {
2
+ ref: import("react").RefObject<HTMLDivElement | null>;
3
+ isDragging: boolean;
4
+ };
@@ -0,0 +1,48 @@
1
+ import { useRef, useState, useEffect } from 'react';
2
+ export function useDragScroll() {
3
+ const ref = useRef(null);
4
+ const [isDragging, setIsDragging] = useState(false);
5
+ const [startX, setStartX] = useState(0);
6
+ const [scrollLeft, setScrollLeft] = useState(0);
7
+ useEffect(() => {
8
+ const element = ref.current;
9
+ if (!element)
10
+ return;
11
+ const handleMouseDown = (e) => {
12
+ setIsDragging(true);
13
+ setStartX(e.pageX - element.offsetLeft);
14
+ setScrollLeft(element.scrollLeft);
15
+ element.style.cursor = 'grabbing';
16
+ element.style.userSelect = 'none';
17
+ };
18
+ const handleMouseLeave = () => {
19
+ setIsDragging(false);
20
+ if (element)
21
+ element.style.cursor = 'grab';
22
+ };
23
+ const handleMouseUp = () => {
24
+ setIsDragging(false);
25
+ if (element)
26
+ element.style.cursor = 'grab';
27
+ };
28
+ const handleMouseMove = (e) => {
29
+ if (!isDragging)
30
+ return;
31
+ e.preventDefault();
32
+ const x = e.pageX - element.offsetLeft;
33
+ const walk = (x - startX) * 2;
34
+ element.scrollLeft = scrollLeft - walk;
35
+ };
36
+ element.addEventListener('mousedown', handleMouseDown);
37
+ element.addEventListener('mouseleave', handleMouseLeave);
38
+ element.addEventListener('mouseup', handleMouseUp);
39
+ element.addEventListener('mousemove', handleMouseMove);
40
+ return () => {
41
+ element.removeEventListener('mousedown', handleMouseDown);
42
+ element.removeEventListener('mouseleave', handleMouseLeave);
43
+ element.removeEventListener('mouseup', handleMouseUp);
44
+ element.removeEventListener('mousemove', handleMouseMove);
45
+ };
46
+ }, [isDragging, startX, scrollLeft]);
47
+ return { ref, isDragging };
48
+ }