1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 21:02:15 +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

38 lines
1.3 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 '../Battle Styles'
const card: Card = {
set: Set,
name: {
en: "Phoebe",
fr: "Spectra",
es: "Fátima",
it: "Ester",
pt: "Spectra",
de: "Antonia"
},
rarity: "Secret Rare",
category: "Trainer",
effect: {
en: "During this turn, damage from your Pokémon VMAXs attacks isnt affected by any effects on your opponents Active Pokémon.",
fr: "Pendant ce tour, les dégâts des attaques de vos Pokémon-VMAX ne sont affectés par aucun effet en action sur le Pokémon Actif de votre adversaire.",
es: "Durante este turno, el daño de los ataques de tus Pokémon VMAX no se ve afectado por ningún efecto en el Pokémon Activo de tu rival.",
it: "Durante questo turno, i danni degli attacchi dei tuoi Pokémon-VMAX non sono influenzati da alcun effetto presente sul Pokémon attivo del tuo avversario.",
pt: "Durante este turno, o dano dos ataques dos seus Pokémon VMAX não é afetado por quaisquer efeitos no Pokémon Ativo do seu oponente.",
de: "Während dieses Zuges wird der Schaden durch Attacken deiner Pokémon-VMAX durch Effekte auf dem Aktiven Pokémon deines Gegners nicht verändert."
},
trainerType: "Supporter",
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card