mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-07 09:47:51 +00:00
* fix: Add SV08 Surging Sparks card variants * fix: Fix validate by adding 'abbreviation' to Set interface
37 lines
1.3 KiB
TypeScript
37 lines
1.3 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Surging Sparks"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Lisia's Appeal",
|
|
fr: "Charme d'Atalante",
|
|
es: "Atracción de Ariana",
|
|
it: "Fascino di Orthilla",
|
|
pt: "Apelo da Elisia",
|
|
de: "Xenias Aufruf"
|
|
},
|
|
|
|
rarity: "Uncommon",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
en: "Switch in 1 of your opponent's Benched Basic Pokémon to the Active Spot. If you do, the new Active Pokémon is now Confused.",
|
|
fr: "Envoyez l'un des Pokémon de Banc de base de votre adversaire sur le Poste Actif. Dans ce cas, le nouveau Pokémon Actif est maintenant Confus.",
|
|
es: "Cambia 1 de los Pokémon Básicos en Banca de tu rival por el Pokémon que esté en el Puesto Activo. Si lo haces, el nuevo Pokémon Activo pasa a estar Confundido.",
|
|
it: "Sostituisci uno dei Pokémon Base nella panchina del tuo avversario con il suo Pokémon in posizione attiva. Se lo fai, il nuovo Pokémon attivo viene confuso.",
|
|
pt: "Mande 1 dos Pokémon Básicos no Banco do seu oponente para o Campo Ativo. Se fizer isto, o novo Pokémon Ativo agora estará Confuso.",
|
|
de: "Wechsle 1 Basis-Pokémon von der Bank deines Gegners in die Aktive Position ein. Wenn du das machst, ist das neue Aktive Pokémon jetzt verwirrt."
|
|
},
|
|
|
|
trainerType: "Supporter",
|
|
regulationMark: "H",
|
|
|
|
variants: {
|
|
holo: false
|
|
}
|
|
}
|
|
|
|
export default card
|