1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-04 08:32:10 +00:00
Florian Bouillon 3c93a3534c
Some checks failed
Build / build (push) Failing after 59s
feat: Add Scarlet & violet three first sets (#446)
2023-11-12 14:56:22 +01:00

32 lines
848 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Paldea Evolved"
const card: Card = {
set: Set,
name: {
fr: "Albert",
en: "Falkner",
es: "Pegaso",
it: "Valerio",
pt: "Falkner",
de: "Falk"
},
rarity: "Uncommon",
category: "Trainer",
effect: {
fr: "Piochez 2 cartes. Si vous avez un Stade en jeu, piochez 2 cartes supplémentaires.",
en: "Draw 2 cards. If you have a Stadium in play, draw 2 more cards.",
es: "Roba 2 cartas. Si tienes un Estadio en juego, roba 2 cartas más.",
it: "Pesca due carte. Se hai in gioco una carta Stadio, pesca altre due carte.",
pt: "Compre 2 cartas. Se você tiver um Estádio em jogo, compre 2 cartas a mais.",
de: "Ziehe 2 Karten. Wenn du eine Stadionkarte im Spiel hast, ziehe 2 Karten mehr."
},
trainerType: "Supporter",
regulationMark: "G"
}
export default card