mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
* some fixes Signed-off-by: Avior <github@avior.me> * Some more changes Signed-off-by: Avior <github@avior.me> * u Signed-off-by: Avior <github@avior.me> * continuing update Signed-off-by: Avior <github@avior.me> * Finished ? Signed-off-by: Avior <github@avior.me> * Removed files that were not meant to be * Remoed even more files
78 lines
1.5 KiB
TypeScript
78 lines
1.5 KiB
TypeScript
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: "Pika Ball",
|
||
de: "Pikaball"
|
||
},
|
||
|
||
damage: 30,
|
||
cost: ["Lightning"]
|
||
}, {
|
||
name: {
|
||
en: "Circle Circuit",
|
||
fr: "Cercle Électrik",
|
||
es: "Circuito Circular",
|
||
it: "Elettroruota",
|
||
pt: "Circle Circuit",
|
||
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: "This attack does 30 damage for each of your Benched Pokémon.",
|
||
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
|