mirror of
https://github.com/BlossomiShymae/clean-cuts.git
synced 2025-12-06 18:20:47 +01:00
11 lines
252 B
TypeScript
11 lines
252 B
TypeScript
export default function useRarities(value: any) {
|
|
const rarities: any = {
|
|
"1": "Rare",
|
|
"2": "Epic",
|
|
"3": "Legendary",
|
|
"4": "Mythic",
|
|
"5": "Ultimate"
|
|
};
|
|
if (Object.hasOwn(rarities, value)) return rarities[value];
|
|
return "";
|
|
} |