1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-16 05:29:55 +00:00
Florian Bouillon 9138eedb16
Add swsh variants (#42)
* Updated Kalos Starter Set data

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Fixed XY set

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Fixed some more XY sets

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Added the rest of the SWSH variants

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-02 12:34:21 +00:00

95 lines
2.1 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Darkness Ablaze'
const card: Card = {
name: {
en: "Vikavolt V",
fr: "Lucanon V",
es: "Vikavolt V",
it: "Vikavolt V",
pt: "Vikavolt V",
de: "Donarion V"
},
illustrator: "Ayaka Yoshida",
rarity: "Rare",
category: "Pokemon",
set: Set,
hp: 210,
types: [
"Lightning",
],
attacks: [
{
cost: [
"Lightning",
"Colorless",
],
name: {
en: "Paralyzing Bolt",
fr: "Éclair Paralysant",
es: "Rayo Paralizante",
it: "Lampo Paralizzante",
pt: "Raio Paralisante",
de: "Lähmender Blitz"
},
effect: {
en: "During your opponents next turn, they cant play any Item cards from their hand.",
fr: "Pendant le prochain tour de votre adversaire, il ne peut pas jouer de cartes Objet de sa main.",
es: "Durante el próximo turno de tu rival, este no puede jugar ninguna carta de Objeto de su mano.",
it: "Durante il prossimo turno del tuo avversario, questi non può giocare le carte Strumento che ha in mano.",
pt: "Durante o próximo turno do seu oponente, ele(a) não poderá jogar nenhuma carta de Item da própria mão.",
de: "Dein Gegner kann während seines nächsten Zuges keine Itemkarten aus seiner Hand spielen."
},
damage: 50,
},
{
cost: [
"Lightning",
"Lightning",
"Colorless",
],
name: {
en: "Super Zap Cannon",
fr: "Super Élecanon",
es: "Superelectrocañón",
it: "Falcecannone Super",
pt: "Supercanhão Zap",
de: "Super-Blitzkanone"
},
effect: {
en: "Discard 2 Energy from this Pokémon.",
fr: "Défaussez 2 Énergies de ce Pokémon.",
es: "Descarta 2 Energías de este Pokémon.",
it: "Scarta due Energie da questo Pokémon.",
pt: "Descarte 2 Energias deste Pokémon.",
de: "Lege 2 Energien von diesem Pokémon auf deinen Ablagestapel."
},
damage: 190,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
retreat: 3,
regulationMark: "D",
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card