1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-01 07:12:08 +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

99 lines
2.2 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 '../Rebel Clash'
const card: Card = {
name: {
en: "Vikavolt",
fr: "Lucanon",
es: "Vikavolt",
it: "Vikavolt",
pt: "Vikavolt",
de: "Donarion"
},
illustrator: "kawayoo",
rarity: "Rare",
category: "Pokemon",
set: Set,
evolveFrom: {
en: "Charjabug",
fr: "Chrysapile"
},
attacks: [
{
cost: [
"Lightning",
"Colorless",
"Colorless",
],
name: {
en: "Powerful Storm",
fr: "Tempête Puissante",
es: "Tormenta Recia",
it: "Tempestona",
pt: "Tempestade Poderosa",
de: "Mächtiger Sturm"
},
effect: {
en: "This attack does 20 more damage for each Energy attached to all of your Pokémon.",
fr: "Cette attaque inflige 20 dégâts supplémentaires pour chaque Énergie attachée à tous vos Pokémon.",
es: "Este ataque hace 20 puntos de daño más por cada Energía unida a todos tus Pokémon.",
it: "Questo attacco infligge 20 danni in più per ogni Energia assegnata ai tuoi Pokémon.",
pt: "Este ataque causa 20 pontos de dano a mais para cada Energia ligada a todos os seus Pokémon.",
de: "Diese Attacke fügt für jede an alle deine Pokémon angelegte Energie 20 Schadenspunkte mehr zu."
},
damage: "60+",
},
{
cost: [
"Lightning",
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Thunder Jolt Beam",
fr: "Secousse Tonnerre Lumineuse",
es: "Rayo Sacudida Atronadora",
it: "Raggio Scoppiotuono",
pt: "Feixe de Choque do Trovão",
de: "Donnerrüttlerstrahl"
},
effect: {
en: "This Pokémon also does 30 damage to itself.",
fr: "Ce Pokémon sinflige aussi 30 dégâts.",
es: "Este Pokémon también se hace 30 puntos de daño a sí mismo.",
it: "Questo Pokémon infligge anche 30 danni a se stesso.",
pt: "Este Pokémon também causa 30 pontos de dano a si mesmo.",
de: "Dieses Pokémon fügt auch sich selbst 30 Schadenspunkte zu."
},
damage: 170,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
retreat: 2,
hp: 150,
types: ["Lightning"],
regulationMark: "D",
variants: {
normal: false,
reverse: true,
holo: true,
firstEdition: false
}
}
export default card