File size: 1,384 Bytes
a5a667b
 
7b96f10
a5a667b
 
 
 
 
 
 
 
b2171a6
 
 
a5a667b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7b96f10
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
from typing import List


class Achievement:
    achievements_list = [
        "participation_star",
        "star_score_settler",
        "interstellar_traveler_I",
        "interstellar_traveler_II",
        "interstellar_traveler_III",
        "interstellar_traveler_IV",
        "climbers_club_I",
        "climbers_club_II",
        "climbers_club_III",
        "star_cluster_detector",
        "starry_vigilante",
        "planetary_decoder",
        "galactic_librarian",
        "energy_enthusiast_I",
        "energy_enthusiast_II",
        "energy_enthusiast_III",
        "energy_enthusiast_IV",
        "knowledge_planet_explorer_I",
        "knowledge_planet_explorer_II",
        "scientific_expedition_explorer_I",
        "scientific_expedition_explorer_II",
        "cultural_celebration_explorer_I",
        "cultural_celebration_explorer_II",
        "youth_literature_explorer_I",
        "youth_literature_explorer_II",
        "path_to_wealth_explorer_I",
        "path_to_wealth_explorer_II",
        "cultivation_universe_explorer_I",
        "cultivation_universe_explorer_II",
        "electronic_and_information_college_explorer_I",
        "electronic_and_information_college_explorer_II",
        "star_warrior",
        "routine_checker",
    ]

    @classmethod
    def get_available_achievements(cls) -> List[str]:
        return cls.achievements_list