Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: move hearthstone to tiertypes #4635

Merged
merged 2 commits into from
Aug 26, 2024
Merged
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
62 changes: 10 additions & 52 deletions standard/tier/wikis/hearthstone/tier_data.lua
Original file line number Diff line number Diff line change
Expand Up @@ -40,81 +40,39 @@ return {
link = 'C-Tier Tournaments',
category = 'C-Tier Tournaments',
},
{
value = '5',
sort = 'A5',
name = 'D-Tier',
short = 'D',
link = 'D-Tier Tournaments',
category = 'D-Tier Tournaments',
},
[''] = {
value = nil,
sort = 'B2',
name = 'Undefined',
short = '?',
},

-- for legacy reasons until hearthstone switches to standardized tier/tiertype
monthly = {
value = 'Monthly',
sort = 'A6',
name = 'Monthly',
short = 'Mon.',
link = 'Monthly Tournaments',
category = 'Monthly Tournaments',
},
weekly = {
value = 'Weekly',
sort = 'A7',
name = 'Weekly',
short = 'Week.',
link = 'Weekly Tournaments',
category = 'Weekly Tournaments',
},
qualifier = {
value = 'Qualifier',
sort = 'A8',
name = 'Qualifier',
short = 'Qual.',
link = 'Qualifier Tournaments',
category = 'Qualifier Tournaments',
},
misc = {
value = 'Misc',
sort = 'A9',
name = 'Misc',
short = 'Misc',
link = 'Miscellaneous Tournaments',
category = 'Miscellaneous Tournaments',
},
showmatch = {
value = 'Showmatch',
sort = 'B1',
name = 'Showmatch',
short = 'Showm.',
link = 'Showmatches',
category = 'Showmatch Tournaments',
},
},

tierTypes = {
monthly = {
value = 'Monthly',
sort = 'A6',
sort = 'A5',
name = 'Monthly',
short = 'Mon.',
link = 'Monthly Tournaments',
category = 'Monthly Tournaments',
},
weekly = {
value = 'Weekly',
sort = 'A7',
sort = 'A6',
name = 'Weekly',
short = 'Week.',
link = 'Weekly Tournaments',
category = 'Weekly Tournaments',
},
daily = {
value = 'Daily',
sort = 'A7',
name = 'Daily',
short = 'Day.',
link = 'Daily Tournaments',
category = 'Daily Tournaments',
},
qualifier = {
value = 'Qualifier',
sort = 'A8',
Expand Down
Loading