1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-21 15:49:55 +00:00
Florian Bouillon c52ed815bb
feat: Add Scarlet & Violet Promos (#607)
* feat: ADd set datas

Signed-off-by: Avior <git@avior.me>

* feat: Add cards

Signed-off-by: Avior <git@avior.me>

---------

Signed-off-by: Avior <git@avior.me>
2024-12-03 09:32:33 +01:00

32 lines
904 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../SVP Black Star Promos"
const card: Card = {
set: Set,
name: {
en: "Picnicker",
fr: "Fan de Pique-Nique",
es: "Dominguera",
it: "Fan dei picnic",
pt: "Fã de Piquenique",
de: "Picknickerin"
},
rarity: "None",
category: "Trainer",
effect: {
en: "Flip a coin. If heads, draw 4 cards. If tails, draw 2 cards.",
fr: "Lancez une pièce. Si c'est face, piochez 4 cartes. Si c'est pile, piochez 2 cartes.",
es: "Lanza 1 moneda. Si sale cara, roba 4 cartas. Si sale cruz, roba 2 cartas.",
it: "Lancia una moneta. Se esce testa, pesca quattro carte. Se esce croce, pesca due carte.",
pt: "Jogue uma moeda. Se sair cara, compre 4 cartas. Se sair coroa, compre 2 cartas.",
de: "Wirf 1 Münze. Ziehe bei Kopf 4 Karten. Ziehe bei Zahl 2 Karten."
},
trainerType: "Supporter",
regulationMark: "H"
}
export default card