mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
78 lines
2.0 KiB
TypeScript
78 lines
2.0 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Lost Origin"
|
|
|
|
const card: Card = {
|
|
dexId: [25],
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Pikachu V",
|
|
fr: "Pikachu V",
|
|
es: "Pikachu V",
|
|
it: "Pikachu V",
|
|
pt: "Pikachu V",
|
|
de: "Pikachu V"
|
|
},
|
|
|
|
rarity: "Ultra Rare",
|
|
category: "Pokemon",
|
|
hp: 190,
|
|
types: ["Lightning"],
|
|
stage: "Basic",
|
|
suffix: "V",
|
|
|
|
attacks: [{
|
|
cost: ["Lightning"],
|
|
|
|
name: {
|
|
en: "Charge",
|
|
fr: "Chargeur",
|
|
es: "Carga",
|
|
it: "Sottocarica",
|
|
pt: "Carga",
|
|
de: "Ladevorgang"
|
|
},
|
|
|
|
effect: {
|
|
en: "Search your deck for up to 2 Lightning Energy cards and attach them to this Pokémon. Then, shuffle your deck.",
|
|
fr: "Cherchez dans votre deck jusqu'à 2 cartes Énergie Lightning, puis attachez-les à ce Pokémon. Mélangez ensuite votre deck.",
|
|
es: "Busca en tu baraja hasta 2 cartas de Energía Lightning y únelas a este Pokémon. Después, baraja las cartas de tu baraja.",
|
|
it: "Cerca nel tuo mazzo fino a due carte Energia Lightning e assegnale a questo Pokémon. Poi rimischia le carte del tuo mazzo.",
|
|
pt: "Procure por até 2 cartas de Energia Lightning no seu baralho e ligue-as a este Pokémon. Em seguida, embaralhe o seu baralho.",
|
|
de: "Durchsuche dein Deck nach bis zu 2 Lightning-Energiekarten und lege sie an dieses Pokémon an. Mische anschließend dein Deck."
|
|
}
|
|
}, {
|
|
cost: ["Lightning", "Lightning", "Colorless"],
|
|
|
|
name: {
|
|
en: "Thunderbolt",
|
|
fr: "Tonnerre",
|
|
es: "Rayo",
|
|
it: "Fulmine",
|
|
pt: "Relâmpago",
|
|
de: "Donnerblitz"
|
|
},
|
|
|
|
effect: {
|
|
en: "Discard all Energy from this Pokémon.",
|
|
fr: "Défaussez toute l'Énergie de ce Pokémon.",
|
|
es: "Descarta todas las Energías de este Pokémon.",
|
|
it: "Scarta tutte le Energie da questo Pokémon.",
|
|
pt: "Descarte todas as Energias deste Pokémon.",
|
|
de: "Lege alle Energien von diesem Pokémon auf deinen Ablagestapel."
|
|
},
|
|
|
|
damage: 200
|
|
}],
|
|
|
|
retreat: 1,
|
|
regulationMark: "D",
|
|
|
|
variants: {
|
|
"normal": false,
|
|
"reverse": false,
|
|
"holo": true
|
|
}
|
|
}
|
|
|
|
export default card |