sendou.ink/utils/enums.js
Kalle 6100f389d5
New UI (#105)
* compiles but looks ugly

* create sr record working version

* validate and tsify

* chakra ui v 1.0 icon fixes

* new ui first ver

* remove unused icon

* remove imports , color picker work

* color picker done

* set bg color proper

* suggests vouches page

* remove unused deps

* voting history page

* build analyzer improvements

* calendar page new

* footer stay down

* ui refresh stuff

* x trends dont show tier if no weapons

* draft cup page new look

* plus faq page

* cra 4 beta

* top logo placed center

* weapon images new import style

* top nav aling correctly in mobile resolution

* nav changes

* update chakra ui

* add arrows

* import t

* add translations

* top500 logo

* mobile nav
2020-09-26 16:03:26 +03:00

33 lines
547 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 }