mlpcardgame/src/mlpccg/card.ts

6 lines
154 B
TypeScript

const imgBaseURL = "https://mcg.zyg.ovh/images/cards/";
export function cardImageURL(cardid: string): string {
return `${imgBaseURL}${cardid}.webp`;
}