This repository was archived by the owner on Apr 23, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdjmax_respect_v_game.py
More file actions
1214 lines (1124 loc) · 33.1 KB
/
djmax_respect_v_game.py
File metadata and controls
1214 lines (1124 loc) · 33.1 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
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
from __future__ import annotations
import functools
from typing import List
from dataclasses import dataclass
from Options import OptionSet
from ..game import Game
from ..game_objective_template import GameObjectiveTemplate
from ..enums import KeymastersKeepGamePlatforms
@dataclass
class DJMaxRespectVArchipelagoOptions:
djmax_respect_v_dlc_owned: DJMaxRespectVDLCOwned
class DJMaxRespectVGame(Game):
name = "DJMax Respect V"
platform = KeymastersKeepGamePlatforms.PC
platforms_other = [
KeymastersKeepGamePlatforms.XONE,
KeymastersKeepGamePlatforms.XSX,
]
is_adult_only_or_unrated = False
options_cls = DJMaxRespectVArchipelagoOptions
def optional_game_constraint_templates(self) -> List[GameObjectiveTemplate]:
return [
GameObjectiveTemplate(
label="Position Change: POSITION Fader: FADER Chaos: CHAOS",
data={
"POSITION": (self.position_changes, 1),
"FADER": (self.faders, 1),
"CHAOS": (self.chaos, 1),
},
),
]
def game_objective_templates(self) -> List[GameObjectiveTemplate]:
return [
GameObjectiveTemplate(
label="Get a B Rating or higher on BUTTON mode for the following song: SONG",
data={
"BUTTON": (self.button_modes, 1),
"SONG": (self.songs, 1),
},
is_time_consuming=False,
is_difficult=False,
weight=2,
),
GameObjectiveTemplate(
label="Get an A Rating or higher on BUTTON mode for the following song: SONG",
data={
"BUTTON": (self.button_modes, 1),
"SONG": (self.songs, 1),
},
is_time_consuming=False,
is_difficult=False,
weight=4,
),
GameObjectiveTemplate(
label="Get an S Rating on BUTTON mode for the following song: SONG",
data={
"BUTTON": (self.button_modes, 1),
"SONG": (self.songs, 1),
},
is_time_consuming=False,
is_difficult=True,
weight=1,
),
GameObjectiveTemplate(
label="Get Max Combo on BUTTON mode for the following song: SONG",
data={
"BUTTON": (self.button_modes, 1),
"SONG": (self.songs, 1),
},
is_time_consuming=False,
is_difficult=True,
weight=1,
),
]
@property
def dlc_owned(self) -> List[str]:
return sorted(self.archipelago_options.djmax_respect_v_dlc_owned.value)
@property
def has_dlc_portable_3(self) -> bool:
return "Portable 3" in self.dlc_owned
@property
def has_dlc_trilogy(self) -> bool:
return "Trilogy" in self.dlc_owned
@property
def has_dlc_clazziquai(self) -> bool:
return "Clazziquai" in self.dlc_owned
@property
def has_dlc_black_square(self) -> bool:
return "Black Square" in self.dlc_owned
@property
def has_dlc_v_extension(self) -> bool:
return "V Extension" in self.dlc_owned
@property
def has_dlc_v_extension_2(self) -> bool:
return "V Extension 2" in self.dlc_owned
@property
def has_dlc_v_extension_3(self) -> bool:
return "V Extension 3" in self.dlc_owned
@property
def has_dlc_v_extension_4(self) -> bool:
return "V Extension 4" in self.dlc_owned
@property
def has_dlc_v_extension_5(self) -> bool:
return "V Extension 5" in self.dlc_owned
@property
def has_dlc_v_liberty(self) -> bool:
return "V Liberty" in self.dlc_owned
@property
def has_dlc_v_liberty_2(self) -> bool:
return "V Liberty 2" in self.dlc_owned
@property
def has_dlc_emotional_sense(self) -> bool:
return "Emotional Sense" in self.dlc_owned
@property
def has_dlc_technika(self) -> bool:
return "Technika" in self.dlc_owned
@property
def has_dlc_technika_2(self) -> bool:
return "Technika 2" in self.dlc_owned
@property
def has_dlc_technika_3(self) -> bool:
return "Technika 3" in self.dlc_owned
@property
def has_dlc_technika_tune_q(self) -> bool:
return "Technika Tune & Q" in self.dlc_owned
@property
def has_dlc_chunithm(self) -> bool:
return "Chunithm" in self.dlc_owned
@property
def has_dlc_cytus(self) -> bool:
return "Cytus" in self.dlc_owned
@property
def has_dlc_deemo(self) -> bool:
return "Deemo" in self.dlc_owned
@property
def has_dlc_ez2on(self) -> bool:
return "Ez2On" in self.dlc_owned
@property
def has_dlc_groove_coaster(self) -> bool:
return "Groove Coaster" in self.dlc_owned
@property
def has_dlc_muse_dash(self) -> bool:
return "Muse Dash" in self.dlc_owned
@property
def has_dlc_estimate(self) -> bool:
return "Estimate" in self.dlc_owned
@property
def has_dlc_falcom(self) -> bool:
return "Falcom" in self.dlc_owned
@property
def has_dlc_girls_frontline(self) -> bool:
return "Girls' Frontline" in self.dlc_owned
@property
def has_dlc_maple_story(self) -> bool:
return "Maple Story" in self.dlc_owned
@property
def has_dlc_nexon(self) -> bool:
return "Nexon" in self.dlc_owned
@property
def has_dlc_tekken(self) -> bool:
return "Tekken" in self.dlc_owned
@property
def has_dlc_clear_pass(self) -> bool:
return "Clear Pass" in self.dlc_owned
@functools.cached_property
def songs_respect(self) -> List[str]:
return [
"2Nite",
"Always",
"Armored Phantom",
"Beautiful Day",
"Beyond Yourself",
"Binary World",
"BlackCat",
"Bullet, Wanted!",
"Child of Night",
"Dont Die",
"Enter the Universe",
"Far East Princess",
"Fly Away",
"glory day",
"Groovin Up",
"Heavenly",
"KILLER BEE",
"Kung Brother",
"Liar",
"Lift You Up",
"Mulch",
"NB RANGER - Virgin Force",
"Only for You",
"OPEN FIRE",
"Over Your Dream",
"quixotic",
"Remains Of Doom",
"Royal Clown",
"Runaway",
"Running girl",
"Rutin (GOTH Wild Electro Remix)",
"Secret Dejavu",
"Shadow Flower",
"Soar ~Stay With Me~",
"The Feelings",
"The Lost Story",
"The Obliterator",
"Tok! Tok! Tok!",
"U.A.D",
"v o l d e n u i t",
"Void",
"waiting for me",
"Waiting for you",
"Were All Gonna Die",
"WHY",
]
@functools.cached_property
def songs_respect_v(self) -> List[str]:
return [
"Airlock",
"Alone (Marshmello)",
"Alone (Nauts)",
"Angelic Tears",
"Aurora Borealis",
"Bleed",
"BlueWhite",
"Boom!",
"Can We Talk (Broken Dog Leg Mix)",
"Celestial Tears",
"Chemical Slave",
"comet",
"Dance of the Dead",
"Dancin Planet",
"Dark Lightning",
"Daylight",
"Flowering",
"From Hell to Breakfast",
"Get Jinxed",
"Ghost Voices",
"Grid System",
"I want You ~Twinkle Twinkle Sunshine~",
"IM ALIVE",
"Kamui",
"Karma",
"Kingdom",
"Mozart Symphony No. 40 1st Mvt.",
"Mr. Lonely",
"Neon 1989 (ESTi REmix)",
"OrBiTal",
"POP/STARS",
"Relation Again (ESTis Remix)",
"RockSTAR",
"Sad Machine",
"So Happy",
"SOUL LADY",
"SURVIVOR",
"To Be With You",
"Watch Your Step",
]
@functools.cached_property
def songs_portable_1(self) -> List[str]:
return [
"A.I",
"Ask to Wind",
"Ask to Wind ~Live Mix~",
"Astro Fight",
"BlythE",
"Bright Dream",
"Can We Talk",
"Catch Me",
"Chrono Breakers",
"CnP",
"Dreadnought",
"Elastic STAR",
"End of the Moonlight",
"Enemy Storm",
"Eternal Memory",
"Every Morning",
"Extreme Z4",
"FEAR",
"Fever GJ",
"FTR",
"Funky Chups",
"Futurism",
"HAMSIM",
"JBG",
"Jupiter Driving",
"KUDA",
"Lemonade",
"Lets Go Baby",
"Light House",
"Long Vacation",
"Luv Flow",
"MASAI",
"Memory of Beach",
"Minimal Life",
"NB RANGER",
"Never Say",
"OBLIVION",
"OBLIVION ~Rockin Night Style~",
"ON",
"One the Love",
"Out Law",
"Para-Q",
"Piano Concerto No. 1",
"Ray of Illuminati",
"RED",
"REVENGE",
"Road Of Death",
"Rock Or Die",
"Save My Dream",
"SIN",
"SIN ~The Last Scene~",
"Sunny Side",
"Sunny Side ~Deepn Soul Mix~",
"Temptation",
"Triple Zoe",
"Ya! Party!",
]
@functools.cached_property
def songs_portable_2(self) -> List[str]:
return [
"A Lie",
"Another DAY",
"Brain Storm",
"Brandnew Days",
"Brave it Out",
"Bye Bye Love",
"Chain of Gravity",
"Cherokee",
"DIVINE SERVICE",
"Dream of You",
"Fallen Angel",
"Fentanest",
"For Seasons",
"For the IKARUS",
"Get on Top",
"GET OUT",
"Good Bye",
"Heart Beat",
"Hello Pinky",
"Higher",
"Ladymade Star",
"Lost nfound",
"Memoirs",
"Mess it Up",
"Midnight Blood",
"Miles",
"Minus 3",
"My Alias",
"NANO RISK",
"NB POWER",
"NB Rangers -Returns-",
"Negative Nature",
"Nightmare",
"Phantom Of Sky",
"plastic method",
"Right Now",
"Rocka-a-doodle-doo",
"Rolling On the Duck",
"Seeker",
"Showtime",
"Smoky Quartz",
"sO mUCH iN LUV",
"SQUEEZE",
"STALKER",
"StarFish",
"Stay with Me",
"Sunset Rider",
"Syriana",
"Taekwonburi",
"WhiteBlue",
"Yellowberry -AJ Mix-",
"Yo Creo Que Si",
"Your Own Miracle",
]
@functools.cached_property
def songs_guilty_gear(self) -> List[str]:
return [
"Break a Spell",
"Holy Orders (Be Just Or Be Dead)",
"Marionette",
]
def songs_base(self) -> List[str]:
return sorted(
self.songs_respect
+ self.songs_respect_v
+ self.songs_portable_1
+ self.songs_portable_2
+ self.songs_guilty_gear
)
@functools.cached_property
def songs_portable_3(self) -> List[str]:
return [
"Become Myself",
"Break!",
"Desperado ~Nu Skool Mix~",
"Enemy Storm ~Dark Jungle Mix~",
"Everything",
"glory day (Minotorment Remix)",
"glory day -JHS Remix-",
"Gone Astray",
"Hanz up!",
"IF",
"Leave me alone",
"Luv Flow ~Funky House Mix~",
"Luv is True",
"MASAI ~Electro House Mix~",
"Mellow D Fantasy",
"NB Ranger Nonstop Remix",
"Out Law Reborn",
"Raise me up",
"Season (Warm Mix)",
"SuperSonic ~Mr. Funky Dirty Planet Remix ~",
"The Rain Maker",
"Waiting for the Sun",
"Your Smile",
"ZET ~Mr. Funky Remix~",
]
@functools.cached_property
def songs_trilogy(self) -> List[str]:
return [
"A Lie ~Deep Inside Mix~",
"Bye Bye Love ~Nu Jazz Mix~",
"Catch You",
"For Seasons ~Air Guitar Mix~",
"GET OUT ~Hip Noodle Mix~",
"Memory of Wind",
"Mind Control",
"My Jealousy",
"NB Girls",
"Nevermind",
"sO mUCH iN LUV ~Melodic Twister Mix~",
"Someday",
"STOP",
"Streetlight",
"Syriana ~Blast Wave Mix~",
"Talk! Talk!",
"The One",
"Ventilator",
"Yo Creo Que Si ~Live House Version~",
"Your Own Miracle ~Disco House Mix~",
"ZET",
]
@functools.cached_property
def songs_clazziquai(self) -> List[str]:
return [
"Closer",
"Coastal Tempo",
"Color",
"Come to me",
"Creator",
"DARK ENVY",
"Electronics",
"Fate",
"First Kiss",
"Flea",
"Forever",
"Freedom",
"Here in the Moment",
"Here in the Moment ~Extended Mix~",
"In My Heart",
"Love Mode",
"Lover (CE Style)",
"Proposed, Flower, Wolf",
"Rising The Sonic",
"Tell Me",
"The Clear Blue Sky",
"The Night Stage",
"To You",
"Urban Night (hYO)",
"Y (CE Style)",
]
@functools.cached_property
def songs_black_square(self) -> List[str]:
return [
"Airwave ~Extended Mix~",
"ANALYS",
"Beat U Down",
"Colours of Sorrow",
"Cypher Gate",
"Desperado",
"Fermion",
"Fever Pitch Girl",
"Get Down",
"Grave Consequence",
"Heart of Witch",
"In my Dream",
"Jealousy",
"Keys to the World",
"Lovely hands",
"Lover (BS Style)",
"PDM",
"Proposed, Flower, Wolf part. 2",
"Ready Now",
"Rutin",
"Secret World",
"Y (BS Style)",
]
@functools.cached_property
def songs_v_extension(self) -> List[str]:
return [
"Attack",
"BLACK GOLD",
"Do it",
"Dream it",
"Fancy Night",
"FIGHT NIGHT (feat. Calyae)",
"Kensei",
"Lisrim",
"Lost Serenity",
"Lost Temple",
"Maharajah -fenomeno edition-",
"Misty ErA",
"Move Yourself",
"NANAIRO",
"Never Die",
"Remember Me",
"Space Challenger",
"Vile Requiem",
"welcome to the space (feat. Jisun)",
"WONDER $LOT 777",
]
@functools.cached_property
def songs_v_extension_2(self) -> List[str]:
return [
"Arcade Love",
"Chrysanthemum",
"Cocked Pistol",
"Daydream",
"FALLING IN LOVE",
"Flowering ~Original Ver.~",
"Forgotten",
"Ive got a feeling",
"Imaginary dance",
"Melonaid",
"Memories of dreams",
"Never let you go",
"Odysseus",
"Over Me",
"Red Eyes",
"Sweet On You",
"Underwater Castle",
"Vertical Floating",
"Voyage (SOPHI)",
"Wont back Down",
"Zero to the hunnit",
]
@functools.cached_property
def songs_v_extension_3(self) -> List[str]:
return [
"#mine (feat. Riho Iwamoto)",
"Bambi - DJMAX Edit -",
"Bright Future",
"Charming World",
"Disappearing Act",
"Emerge",
"Every Day ~ Every Night",
"Fundamental",
"KICK IT",
"Misty Era Mui",
"Moment (feat. Nauts)",
"NB RANGERS - Destiny",
"Plasma Sphere",
"Secret",
"Set Me Free",
"Space Dream (feat. J.O.Y)",
"STEP",
"Tic! Tac! Toe!",
"Winners",
"Zero-Break",
]
@functools.cached_property
def songs_v_extension_4(self) -> List[str]:
return [
"!!New Game Start!!",
"ADDICT!ON (DJMAX Edit)",
"Back to the oldschool",
"Deadly Bomber",
"DIE IN",
"Dont Cry",
"Gloxinia",
"Hello",
"Hyper Drive",
"Hypernaid",
"Karma ~Original Ver.~",
"Like a Fool",
"Love.Game.Money",
"LUV",
"New World",
"Stay Alive",
"Stolen Memory",
"The Four Seasons Summer 2017",
"To Where You Are",
"Vertical Eclipse",
"Weaponize",
]
@functools.cached_property
def songs_v_extension_5(self) -> List[str]:
return [
"3 33",
"Accelerate",
"Behemoth",
"Carrot Carrot",
"Critical Point",
"ECiLA",
"glory MAX -to the MAXimum-",
"God Machine",
"Inside the Light",
"My Wonderland",
"Over the Starlight",
"Paradise",
"Peac Comes At a Price",
"Pitter-patter",
"Revenger",
"Rhapsody for the VEndetta",
"Right Time",
"Rocket Launcher",
"S.A.V.E",
"Shining Light (fest. Shabel Tonya)",
]
@functools.cached_property
def songs_v_liberty(self) -> List[str]:
return [
"Away",
"Basement",
"Bestie",
"Break Out",
"Broken Sphere",
"Cold Generation",
"Confessions in Another World ~Pan Remix~",
"Cotton Candy Soda",
"Diomedes",
"Final Hour (Game Ver.)",
"Final Round",
"Follow Me",
"Growing Pains [ScreaM Records]",
"Licrom",
"Omen",
"Petunia",
"Rhythm In My Head",
"Song For You",
"Synchronize",
"TRAP",
]
@functools.cached_property
def songs_v_liberty_2(self) -> List[str]:
return [
"1! 2! 3! 4! Streaming rn CHU!",
"B!G_BANG CHALLENGE",
"break it down!",
"Cata (feat. NC.A)",
"Cheonmasan",
"Delusion (fet. SOONHO)",
"ELIXIR",
"Hikari (feat. Negoto Bunnyla)",
"Kakera",
"Krush",
"Love or Die",
"Mad (feat. WaMi)",
"MADNESS (feat. U1)",
"Misty Er'A ~One Day~",
"Outcast (feat. BIRA)",
"Pull The Trigger",
"RIPPER",
"Rocket Ride",
"Saga Script",
"TOXIC (feat. Shabel Tonya)",
]
@functools.cached_property
def songs_emotional_sense(self) -> List[str]:
return [
"Cosmic Elevator",
"Feel (DJ Mocha)",
"Knowledge System",
"Real Over Drive",
"Space of Soul",
"Super lovely",
"Urban Night (Electronic Boutique)",
"Yo! Max!",
]
@functools.cached_property
def songs_technika(self) -> List[str]:
return [
"Access",
"Area 7",
"Beyond the Future",
"Dear my Lady",
"DJMAX",
"Do you want it",
"Fury",
"HEXAD",
"Honeymoon",
"I want You",
"Landscape",
"Melody",
"Play the Future",
"Remember",
"Shoreline",
"SON OF SUN",
"SON OF SUN ~Extended Mix~",
"SuperSonic",
"Sweet Shining Shooting Star",
"The Last Dance",
"Thor",
"Voyage (makou)",
]
@functools.cached_property
def songs_technika_2(self) -> List[str]:
return [
"Airwave",
"BEE-U-TIFUL",
"Burn it Down",
"Cosmic Fantastic Lovesong",
"Cozy Quilt",
"D2",
"Dream of Winds",
"Dual Strikers",
"End of Mythology",
"Eternal Fantasy",
"La Campanella Nu Rave",
"Love is Beautiful",
"MonoXide",
"Nova ~Mr. Funky Remix~",
"Put Em Up",
"Puzzler",
"Rage Of Demon",
"Say it from your heart",
"Sweet Dream",
"The Guilty",
"Thor ~Extended Mix~",
"Trip",
"XLASHER",
"Y ~Extended Mix~",
]
@functools.cached_property
def songs_technika_3(self) -> List[str]:
return [
"A Life With You",
"AD2222",
"AD2222 ~Extended Mix~",
"ALiCE",
"Angel",
"Bamboo on Bamboo",
"Black Swan",
"Dark Prism",
"Dream Again",
"EGG",
"EGG ~Extended Mix~",
"Emblem",
"Fallin in LUV",
"Feel Ma Beat",
"Ghost",
"Give Me 5",
"Heart Beat Part. 2",
"Kung-Fu Rider",
"My Heart, My Soul",
"Now a NEW Day",
"Out of CTRL",
"Over the Rainbow",
"Right Back",
"Showdown (LeeZu)",
"SigNalize",
"Supernova",
"Supersonic 2011",
"Wanna Be Your Lover",
"Xeus",
"You & Me",
]
@functools.cached_property
def songs_technika_tune_q(self) -> List[str]:
return [
"A Song of Sixpence",
"Back to Life",
"Deborah",
"Eternal Fantasy (Miya Vocal Mix)",
"Festa Nova",
"Kal_wrnw",
"LovePanic",
"Luv Yourself",
"Mukilteo Beach",
"Never Ending TECHNIKA",
"Renovation",
"Retention",
"Shining My Boy",
"Silent Clarity",
"Starlight Garden",
"Take on Me",
"Techno Racer",
"The MAX",
"Thor (Deepin Absonant Mix)",
"VORTEX",
]
@functools.cached_property
def songs_chunithm(self) -> List[str]:
return [
"Cyberozar",
"Garakuta Doll Play",
"Ikazuchi",
"Ray Tuning",
"The wheel to the right",
"Trrricksters!!",
]
@functools.cached_property
def songs_cytus(self) -> List[str]:
return [
"AXION",
"CODE NAME ZERO",
"conflict",
"EMber",
"Entrance",
"L",
"Les Parfums de LAmour",
"Mammal",
"Myosotis",
"Old Gold",
"Shoot out",
"Ververg",
]
@functools.cached_property
def songs_deemo(self) -> List[str]:
return [
"Angelic Sphere",
"ANiMA",
"Dream",
"Legacy",
"Magnolia",
"Nine point eight",
"Sairai",
"Undo",
"Utopiosphere",
"YUBIKIRI-GENMAN",
]
@functools.cached_property
def songs_ez2on(self) -> List[str]:
return [
"A Site De La Rue",
"Appeal",
"Aquaris",
"Back for more",
"Complex",
"Envy Mask",
"Feel (Kang Eun Soo / eridanus)",
"Lie Lie",
"LIMBO",
"Look out ~Here comes my love~",
"Metagalactic",
"Nihilism",
"Sand Storm",
"Showdown (Andy Lee)",
"Sparrow",
"Stay",
"Weird Wave",
"Zeroize",
]
@functools.cached_property
def songs_groove_coaster(self) -> List[str]:
return [
"Black MInD",
"Good Night, Bad Luck.",
"Got more raves?",
"Groove Prayer",
"HB-axeleration",
"Marry me, Nightmare",
"ouroboros -twin stroke of the end-",
"OVER THE NIGHT",
"Satisfaction",
"Warrior",
]
@functools.cached_property
def songs_muse_dash(self) -> List[str]:
return [
"Bang!!",
"can you feel it",
"Comet Coaster",
"Cthugha",
"DataErr0r",
"Dysthymia",
"ENERGY SYNERGY MATRIX",
"Koi no Moonlight",
"Lights of Muse",
"MUSEDASH!!!!",
"Pancake is Love",
"PUPA",
"tape/stop/night",
"The 90s Decision",
"XING",
]
@functools.cached_property
def songs_estimate(self) -> List[str]:
return [
"HELIX",
"In My Heart ~EsTi Remix~",
"Obelisque",
"pit-a-pet",
"U-NIVUS",
]
@functools.cached_property
def songs_falcom(self) -> List[str]:
return [
"Ashita e no Koudou",
"Blue Destination",
"GENESIS BEYOND THE BEGINNING",
"Inevitable Struggle",
"NORSE WIND",
"Silver Will",
"STEP AHEAD",
"SUNSHINE COASTLINE",
"TO MAKE THE END OF BATTLE",
"To the Future.",
]
@functools.cached_property
def songs_girls_frontline(self) -> List[str]:
return [
"Barbarous Funera",
"Frontline",
"What am I fighting for?",
]
@functools.cached_property
def songs_maple_story(self) -> List[str]:
return [
"Ariant ~ned Remix~",
"Catch Your Dreams!",
"Dynamic Universe",
"Fairytale ~Pan Remix~",
"Frozen Link",
"Leafre (EDM ver.)",