1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

38 lines
649 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Crown Zenith"
const card: Card = {
set: Set,
name: {
en: "Friends in Sinnoh",
fr: "Amis de Sinnoh",
es: "Amigos de Sinnoh",
it: "Amici a Sinnoh",
pt: "Amigos em Sinnoh",
de: "Freunde aus Sinnoh"
},
rarity: "Ultra Rare",
category: "Trainer",
effect: {
en: "Draw 3 cards.",
fr: "Piochez 3 cartes.",
es: "Roba 3 cartas.",
it: "Pesca tre carte.",
pt: "Compre 3 cartas.",
de: "Ziehe 3 Karten."
},
trainerType: "Supporter",
regulationMark: "F",
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card