1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon e500777516 Started to add variants information for the two most recent sets
Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
2021-07-21 12:16:52 +02:00

40 lines
922 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Chilling Reign'
const card: Card = {
set: Set,
name: {
fr: "Apia",
en: "Honey",
es: "Tania",
it: "Tania",
pt: "Mel",
de: "Enia"
},
illustrator: "Ryuta Fuse",
rarity: "Ultra Rare",
category: "Trainer",
effect: {
fr: "Piochez une carte pour chacun des Pokémon-V de Banc de votre adversaire.",
en: "Draw a card for each of your opponents Benched Pokémon V.",
es: "Roba 1 carta por cada uno de los Pokémon V en Banca de tu rival.",
it: "Pesca una carta per ciascuno dei Pokémon-V nella panchina del tuo avversario.",
pt: "Compre 1 carta para cada Pokémon V no Banco do seu oponente.",
de: "Ziehe 1 Karte für jedes Pokémon-V auf der Bank deines Gegners."
},
trainerType: "Supporter",
regulationMark: "E",
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card