-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathachievements.jsx
More file actions
827 lines (826 loc) · 21.5 KB
/
achievements.jsx
File metadata and controls
827 lines (826 loc) · 21.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
import {
CompassIcon,
TerminalWindowIcon,
PaintBrushIcon,
GameControllerIcon,
ColumnsIcon,
SunglassesIcon,
UserIcon,
LightningIcon,
SkullIcon,
BookOpenIcon,
BookBookmarkIcon,
BooksIcon,
GhostIcon,
EyeSlashIcon,
ChalkboardIcon,
CastleTurretIcon,
MartiniIcon,
TimerIcon,
LogIcon,
KanbanIcon,
PhoneIcon,
ShuffleIcon,
QuestionMarkIcon,
TrashIcon,
MetronomeIcon,
SpadeIcon,
HeartIcon,
DiamondIcon,
EyeIcon,
TargetIcon,
BrainIcon,
YinYangIcon,
ArrowsClockwiseIcon,
CirclesFourIcon,
} from '@phosphor-icons/react';
export const ACHIEVEMENTS = [
{
id: 'hello_world',
title: 'Hello World',
description: 'Welcome to Fezcodex.',
icon: <CompassIcon size={32} weight="duotone" />,
category: 'Exploration',
},
{
id: 'curious_soul',
title: 'Curious Soul',
description: 'Visited the About Me page to learn who is behind this.',
icon: <UserIcon size={32} weight="duotone" />,
category: 'Exploration',
},
{
id: 'author_aficionado',
title: 'Author Aficionado',
description: 'Explored the authors of From Serfs and Frauds.',
icon: <UserIcon size={32} weight="duotone" />,
category: 'Exploration',
},
{
id: 'hide_and_seek_master',
title: 'Hide and Seek Master',
description: 'Hid all roadmap status columns.',
icon: <EyeSlashIcon size={32} weight="duotone" />,
category: 'Exploration',
},
{
id: 'log_diver',
title: 'Log Diver',
description: 'Explored the logs.',
icon: <LogIcon size={32} weight="duotone" />,
category: 'Exploration',
},
{
id: 'news_hound',
title: 'News Hound',
description: 'Checked out the latest news and updates.',
icon: <CompassIcon size={32} weight="duotone" />,
category: 'Exploration',
},
{
id: 'path_finder',
title: 'Path Finder',
description: 'Navigated to the Roadmap page.',
icon: <KanbanIcon size={32} weight="duotone" />,
category: 'Exploration',
},
{
id: 'project_pioneer',
title: 'Project Pioneer',
description: 'Discovered the projects page.',
icon: <TerminalWindowIcon size={32} weight="duotone" />,
category: 'Exploration',
},
{
id: 'story_explorer',
title: 'Story Explorer',
description: 'Did you hear about the Serfs?',
icon: <BookOpenIcon size={32} weight="duotone" />,
category: 'Exploration',
},
{
id: 'time_traveler',
title: 'Time Traveler',
description: 'Changelogs?',
icon: <TimerIcon size={32} weight="duotone" />,
category: 'Exploration',
},
{
id: 'avid_reader',
title: 'Avid Reader',
description: 'Read 5 different blog posts.',
icon: <BookBookmarkIcon size={32} weight="duotone" />,
category: 'Content',
},
{
id: 'bookworm',
title: 'Bookworm',
description: 'Read 10 different blog posts. Impressive!',
icon: <BooksIcon size={32} weight="duotone" />,
category: 'Content',
},
{
id: 'milord',
title: 'Mi Lord',
description: 'Read 30 different blog posts. Mi Lord!',
icon: <CastleTurretIcon size={32} weight="duotone" />,
category: 'Content',
},
{
id: 'novice_reader',
title: 'Novice Reader',
description: 'Read your first blog post.',
icon: <BookOpenIcon size={32} weight="duotone" />,
category: 'Content',
},
{
id: 'scholar',
title: 'Scholar',
description: 'Read 20 different blog posts. Impressive!',
icon: <ChalkboardIcon size={32} weight="duotone" />,
category: 'Content',
},
{
id: 'power_user',
title: 'Power User',
description: 'Visited the Settings page.',
icon: <LightningIcon size={32} weight="duotone" />,
category: 'Tools',
},
{
id: 'the_hacker',
title: 'The Hacker',
description: 'Opened the Command Palette.',
icon: <TerminalWindowIcon size={32} weight="duotone" />,
category: 'Tools',
},
{
id: 'time_teller',
title: 'Time Teller',
description: 'I want to know the time.',
icon: <TimerIcon size={32} weight="duotone" />,
category: 'Tools',
},
{
id: 'glitch_hunter',
title: 'Glitch Hunter',
description: 'Discovered the Dystopian Glitch mode.',
icon: <SkullIcon size={32} weight="duotone" />,
category: 'Visuals',
},
{
id: 'retro_futurist',
title: 'Retro Futurist',
description: 'Enabled Vaporwave or Cyberpunk mode.',
icon: <SunglassesIcon size={32} weight="duotone" />,
category: 'Visuals',
},
{
id: 'retro_gamer',
title: 'Retro Gamer',
description: 'Enabled Game Boy mode.',
icon: <GameControllerIcon size={32} weight="duotone" />,
category: 'Visuals',
},
{
id: 'the_architect',
title: 'The Architect',
description: 'Enabled Blueprint or Hellenic mode.',
icon: <ColumnsIcon size={32} weight="duotone" />,
category: 'Visuals',
},
{
id: 'the_artist',
title: 'The Artist',
description: 'Enabled Sketchbook mode.',
icon: <PaintBrushIcon size={32} weight="duotone" />,
category: 'Visuals',
},
{
id: 'and_heartbreak',
title: '& Heartbreak',
description: 'And my head keeps spinning.',
icon: <ShuffleIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'sos_signal',
title: 'A Universal plea',
description: 'THE universal plea.',
icon: <PhoneIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'all_eyez_on_me',
title: 'All Eyez On Me',
description: 'California knows how to party.',
icon: <ShuffleIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'barcode_man',
title: 'Barcode Man',
description: 'Beep beep on the back of the head',
icon: <PhoneIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'black',
title: 'Black',
description: 'Total darkness.',
icon: <QuestionMarkIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'boing',
title: 'Boing...',
description: 'Jumbo Jet.',
icon: <QuestionMarkIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'ctu_agent',
title: 'CTU Agent',
description: 'The clock is ticking...',
icon: <PhoneIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'call_me_generic',
title: 'Call Me Generic',
description: 'It is just 3 number repeating...',
icon: <PhoneIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'card_shark',
title: 'Card Shark',
description: 'Scored over 7 in Higher or Lower.',
icon: <SpadeIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'chaos_theory',
title: 'Chaos Theory',
description: 'The world shifts beneath your feet.',
icon: <ArrowsClockwiseIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'combo_breaker',
title: 'Combo Breaker',
description: 'Faster than a goldfish.',
icon: <LightningIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'critical_hit',
title: 'Critical Hit',
description: 'Nat...',
icon: <QuestionMarkIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'cyber_homie',
title: 'Cyber Home',
description: "There's no place like Cyber Home. Home Sweet Home",
icon: <QuestionMarkIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'daisy_daisy',
title: 'Daisy, Daisy',
description: "I'm afraid I can't do that",
icon: <ShuffleIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'dealing_with_a_kid',
title: 'Dealing With a Kid',
description: 'Oh, grow up...',
icon: <PhoneIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'devil',
title: 'Devil',
description: 'Did you try to summon more evil? What the hell...',
icon: <PhoneIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'dont_google',
title: "Don't Google",
description: "Don't Google It.",
icon: <ShuffleIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'dystopian_are_we',
title: 'Dystopian, Are We',
description: 'Is Big Brother still watching...',
icon: <PhoneIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'echo_in_the_void',
title: 'Echo in the Void',
description: 'Call out where no one listens.',
icon: <GhostIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'eidetic_memory',
title: 'Eidetic Memory',
description: 'Completed Memory Game in 18 moves or less.',
icon: <TargetIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'elite',
title: 'Elite',
description: 'elite...',
icon: <ShuffleIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'code_1337',
title: 'Elite Error',
description: 'Death came with a code.',
icon: <TerminalWindowIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'entropy_increaser',
title: 'Entropy Increaser',
description: 'Disorder is inevitable.',
icon: <CirclesFourIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'fast_eyes',
title: 'Fast Eyes',
description: 'Shut and open the eyes quickly.',
icon: <ShuffleIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'bsod',
title: 'Fatal Error',
description: '0x00000000',
icon: <SkullIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'feeling_lucky',
title: 'Feeling Lucky',
description: 'Surprise.',
icon: <ShuffleIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'feline',
title: 'Feline',
description: 'Feline on the line.',
icon: <QuestionMarkIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'galatasaray',
title: 'Galatasaray',
description: '1905',
icon: <PhoneIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'glitch_in_the_matrix',
title: 'Glitch in the Matrix',
description: 'Seek the paths that do not exist.',
icon: <SkullIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'her_daim',
title: 'Her Daim...',
description: 'A hidden achievement',
icon: <GhostIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'high_roller',
title: 'High Roller',
description: 'Scored over 14 in Higher or Lower.',
icon: <HeartIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'human_metronome',
title: 'Human Metronome',
description: 'Steady as a rock.',
icon: <MetronomeIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'immersive_sim_door_code',
title: 'Immersive Sim Door Code',
description: 'Looking Glass Studios loves Fahrenheit',
icon: <PhoneIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'indestructible',
title: 'Indestructible',
description: 'and it broke the floor...',
icon: <ShuffleIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'invaded_england',
title: 'Invaded England',
description: 'You just invaded England.',
icon: <ShuffleIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'ketchup',
title: 'Ketchup',
description: 'The Slow Pour. Good things come to those who wait.',
icon: <ShuffleIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'kobe',
title: 'Kobe',
description: 'Kobe...',
icon: <PhoneIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'konami_code',
title: 'Konami Code',
description: 'The classic sequence.',
icon: <GameControllerIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'leave_no_stone_unturned',
title: 'Leave No Stone Unturned',
description: 'Check application version.',
icon: <MartiniIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'legendary_gambler',
title: 'Legendary Gambler',
description: 'Scored over 20 in Higher or Lower.',
icon: <DiamondIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'm_for_murder',
title: 'M for Murder',
description: 'Murder on the line.',
icon: <PhoneIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'mind_palace',
title: 'Mind Palace',
description: 'Completed Memory Game in 14 moves or less.',
icon: <BrainIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'moms_spaghetti',
title: "Mom's Spaghetti",
description: 'Put your hands up for it.',
icon: <ShuffleIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'mr_halo_himself',
title: 'Mr. Halo Himself',
description: 'The SPARTAN is calling...',
icon: <PhoneIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'do_a_barrel_roll',
title: 'My Head Spinning',
description: 'You spin my head right round, right round.',
icon: <ArrowsClockwiseIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'new_dc_universe',
title: 'New DC Universe',
description: 'Let me reset the DC Universe',
icon: <PhoneIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'night_owl',
title: 'Night Owl',
description: 'The witching hour approaches.',
icon: <EyeIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'not_found',
title: 'Not Found',
description: 'Not Found',
icon: <PhoneIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'ocean',
title: 'Ocean',
description:
'and George Clooney and Matt Damon and Julia Roberts and Brat Pitt and Andy Garcia and Bernie Mac...',
icon: <QuestionMarkIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'on_the_beat',
title: 'On the Beat',
description: 'Achieved exactly 90 BPM in the BPM Guesser.',
icon: <MetronomeIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'one_less_problem',
title: 'One Less Problem',
description: "but this rotary phone ain't one.",
icon: <ShuffleIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'open_24_hours',
title: 'Open 24 Hours',
description: "We're open 24 hours.",
icon: <ShuffleIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'operator',
title: 'Operator',
description: 'Looking for assistance?',
icon: <PhoneIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'perfect_timing',
title: 'Perfect Timing',
description: 'Stopped the stopwatch at exactly 10.00 seconds.',
icon: <TimerIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'pie',
title: 'Pie',
description: '3 is just enough.',
icon: <PhoneIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'rip_and_tear',
title: 'Rip and Tear',
description: 'Until it is done.',
icon: <QuestionMarkIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'cheater',
title: 'Rule Breaker',
description: 'Admitting it is the first step.',
icon: <SkullIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'savage',
title: 'Savage',
description: 'Because we ran out of soda...',
icon: <QuestionMarkIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'sharp_eye',
title: 'Sharp Eye',
description: 'Completed Memory Game in 24 moves or less.',
icon: <EyeIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'skyrim',
title: 'Skyrim',
description: 'Cannot get a better day to release the most released game',
icon: <PhoneIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'some_bodies_gonna_get_it',
title: 'Some Bodies Gonna Get It',
description: 'Mark Henry enters the ring...',
icon: <ShuffleIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'speaking_clock',
title: 'Speaking Clock',
description: 'A Speaking Clock that does not really tell time.',
icon: <PhoneIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'system',
title: 'System',
description:
"Delete It. To make your computer run faster. (Don't actually do this).",
icon: <QuestionMarkIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'teapot',
title: 'Teapot',
description: 'because it is a teapot.',
icon: <QuestionMarkIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'the_answer',
title: 'The Answer',
description:
'The Answer to the Ultimate Question of Life, the Universe, and Everything',
icon: <PhoneIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'the_cartographer',
title: 'The Cartographer',
description: 'Map the territory.',
icon: <CompassIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'the_emergency',
title: 'The Emergency',
description: 'Is everything okay?',
icon: <PhoneIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'the_holo_grammy',
title: 'The Holo-Grammy',
description: 'I’ll be right by your side.',
icon: <ShuffleIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'the_last_good_gen',
title: 'The Last Good Generation',
description: 'Playstation won after this...',
icon: <QuestionMarkIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'the_medium',
title: 'The Medium',
description:
'Successfully communicated with the code spirit and broke the infinite loop.',
icon: <GhostIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'the_monitor',
title: 'The Monitor',
description: 'You are the reclaimer.',
icon: <ShuffleIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'the_number_of_monkeys',
title: 'The Number of Monkeys',
description: 'Ask Bruce.',
icon: <ShuffleIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'the_order',
title: 'The Order',
description: 'It will be done, my lord',
icon: <ShuffleIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'the_paradox',
title: 'The Paradox',
description: 'Look for the tool within the tool.',
icon: <QuestionMarkIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'the_real_retro_gamer',
title: 'The Real Retro Gamer',
description: 'One button, one joystick, infinite fun.',
icon: <QuestionMarkIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'truth_is_out_there',
title: 'The Truth Is Out There',
description: "You're Naruto-running straight into the base.",
icon: <ShuffleIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'the_void_stares_back',
title: 'The Void Stares Back',
description: 'Stare into the abyss...',
icon: <EyeIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'the_worst_agent',
title: 'The Worst Agent',
description: 'If 1.5 is the answer, What is the question?',
icon: <PhoneIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'time_traveller_system',
title: 'Time Traveller',
description: 'Go back to where it all began.',
icon: <TimerIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'trinity_calling',
title: 'Trinity Calling',
description: 'A Matrix reference, in this day and age...',
icon: <PhoneIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'van_halen',
title: 'Van Halen',
description: 'Rock on.',
icon: <QuestionMarkIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'wireless',
title: 'Wireless',
description: 'Trying to connect a rotary phone to the router? Good luck.',
icon: <QuestionMarkIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'www',
title: 'World Wide Web',
description: 'Unencrypted browsing? Living on the edge',
icon: <QuestionMarkIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'you_smart',
title: 'You are not Stupid',
description: 'and You Know Math',
icon: <QuestionMarkIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'zen',
title: 'Zen',
description: 'Turned it into a proper garden.',
icon: <YinYangIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'east_side',
title: 'East Side',
description: 'Opened the Right Side.',
icon: <ColumnsIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'su-done',
title: 'Privilege Escalation',
description: 'Escalate your privileges in a new environment',
icon: <TerminalWindowIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'clean_slate',
title: 'Clean Slate',
description: 'Tabula Rasa.',
icon: <TrashIcon size={32} weight="duotone" />,
category: 'Secret',
},
{
id: 'access_granted',
title: 'Access Granted',
description: 'Decrypted the hidden terminal sequence.',
icon: <TerminalWindowIcon size={32} weight="duotone" />,
category: 'Secret',
},
];