Spaces:
Running
Running
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", | |
] | |
def get_available_achievements(cls) -> List[str]: | |
return cls.achievements_list | |