1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-02 12:19:53 +00:00

78 lines
1.5 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 '../SWSH Black Star Promos'
const card: Card = {
set: Set,
name: {
en: "Pikachu V",
fr: "Pikachu V",
es: "Pikachu V",
it: "Pikachu V",
pt: "Pikachu V",
de: "Pikachu V"
},
illustrator: "Ryota Murayama",
rarity: "None",
category: "Pokemon",
hp: 190,
types: ["Lightning"],
attacks: [{
name: {
en: "Pika Ball",
fr: "Pika Ball",
es: "Pika Ball",
it: "Pikasfera",
pt: "Bola Pikachu",
de: "Pikaball"
},
damage: 30,
cost: ["Lightning"]
}, {
name: {
en: "Circle Circuit",
fr: "Cercle Électrik",
es: "Circuito Circular",
it: "Elettroruota",
pt: "Circuito Circular",
de: "Rundparcours"
},
effect: {
en: "This attack does 30 damage for each of your Benched Pokémon.",
fr: "Cette attaque inflige 30 dégâts pour chacun de vos Pokémon de Banc.",
es: "Este ataque hace 30 puntos de daño por cada uno de tus Pokémon en Banca.",
it: "Questo attacco infligge 30 danni per ogni Pokémon nella tua panchina.",
pt: "Este ataque causa 30 pontos de dano para cada Pokémon no seu Banco.",
de: "Diese Attacke fügt für jedes Pokémon auf deiner Bank 30 Schadenspunkte zu."
},
damage: "30×",
cost: ["Lightning", "Lightning"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
stage: "Basic",
dexId: [25],
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
},
regulationMark: "D",
suffix: "V"
}
export default card