mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-09 12:13:10 -05:00
33 lines
550 B
JavaScript
33 lines
550 B
JavaScript
const salmonRunRecordWildcards = [
|
|
"ONE_WILDCARD",
|
|
"FOUR_WILCARDS",
|
|
"FOUR_GOLDEN_WILDCARDS",
|
|
];
|
|
|
|
const salmonRunRecordCategories = [
|
|
"TOTAL",
|
|
"TOTAL_NO_NIGHT",
|
|
"PRINCESS",
|
|
"NT_NORMAL",
|
|
"HT_NORMAL",
|
|
"LT_NORMAL",
|
|
"NT_RUSH",
|
|
"HT_RUSH",
|
|
"LT_RUSH",
|
|
"NT_FOG",
|
|
"HT_FOG",
|
|
"LT_FOG",
|
|
"NT_GOLDIE",
|
|
"HT_GOLDIE",
|
|
"LT_GOLDIE",
|
|
"NT_GRILLERS",
|
|
"HT_GRILLERS",
|
|
"LT_GRILLERS",
|
|
"NT_MOTHERSHIP",
|
|
"HT_MOTHERSHIP",
|
|
"LT_MOTHERSHIP",
|
|
"LT_COHOCK",
|
|
];
|
|
|
|
module.exports = { salmonRunRecordWildcards, salmonRunRecordCategories };
|