tournament-helper-bot/data_objects/tetrio_ranks.js

24 lines
234 B
JavaScript
Raw Permalink Normal View History

2024-12-28 14:04:25 +00:00
const tetrioRanks = [
"d",
"d+",
"c-",
"c",
"c+",
"b-",
"b",
"b+",
"a-",
"a",
"a+",
"s-",
"s",
"s+",
"ss",
"u",
"x",
"x+"
];
module.exports = {
tetrioRanks
}