mirror of
https://github.com/tcgdex/compiler.git
synced 2025-04-22 10:42:09 +00:00
11 lines
295 B
TypeScript
11 lines
295 B
TypeScript
import Rarity from "../db/interfaces/Rarity";
|
|
import { Langs } from "../db/interfaces/LangList";
|
|
import { raritySimple } from "./rarities/rarity";
|
|
|
|
export function rarityToRaritySimple(rarity: Rarity, lang: Langs): raritySimple {
|
|
return {
|
|
id: rarity,
|
|
name: Rarity.toLang(rarity, lang)
|
|
}
|
|
}
|