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
1.1 KiB
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: "Adriane",
en: "Flannery",
es: "Candela",
it: "Fiammetta",
pt: "Flannery",
de: "Flavia"
},
illustrator: "Ryuta Fuse",
rarity: "Ultra Rare",
category: "Trainer",
effect: {
fr: "Défaussez une Énergie spéciale de lun des Pokémon de votre adversaire, et défaussez un Stade en jeu.",
en: "Discard a Special Energy from 1 of your opponents Pokémon, and discard a Stadium in play.",
es: "Descarta 1 Energía Especial de 1 de los Pokémon de tu rival y descarta un Estadio en juego.",
it: "Scarta unEnergia speciale da uno dei Pokémon del tuo avversario e una carta Stadio in gioco.",
pt: "Descarte 1 Energia Especial de 1 dos Pokémon do seu oponente e descarte 1 Estádio em jogo.",
de: "Lege 1 Spezial-Energie von 1 Pokémon deines Gegners auf seinen Ablagestapel und lege 1 Stadionkarte im Spiel auf den Ablagestapel."
},
trainerType: "Supporter",
regulationMark: "E",
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card