Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 41 additions & 1 deletion src/trophy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,47 @@ export class MultipleLangTrophy extends Trophy {
new RankCondition(
RANK.SECRET,
"Rainbow Lang User",
10,
50,
),
new RankCondition(
RANK.SSS,
"Lengendary Polyglot",
40,
),
new RankCondition(
RANK.SS,
"Master Polyglot",
30,
),
new RankCondition(
RANK.S,
"Expert Polyglot",
25
),
new RankCondition(
RANK.AAA,
"Fluent",
20
),
new RankCondition(
RANK.AA,
"Versatile Coder",
15
),
new RankCondition(
RANK.A,
"Language Explorer",
10
),
new RankCondition(
RANK.B,
"Learning the Languages",
5
),
new RankCondition(
RANK.C,
"Bilingual",
2,
),
];
super(score, rankConditions);
Expand Down