mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
* fix: Add SV08 Surging Sparks card variants * fix: Fix validate by adding 'abbreviation' to Set interface
76 lines
2.5 KiB
TypeScript
76 lines
2.5 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Surging Sparks"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Kilowattrel ex",
|
|
fr: "Fulgulairo-ex",
|
|
es: "Kilowattrel ex",
|
|
it: "Kilowattrel-ex",
|
|
pt: "Kilowattrel ex",
|
|
de: "Voltrean-ex"
|
|
},
|
|
|
|
rarity: "Double rare",
|
|
category: "Pokemon",
|
|
hp: 260,
|
|
types: ["Lightning"],
|
|
stage: "Stage1",
|
|
|
|
attacks: [{
|
|
cost: ["Lightning"],
|
|
|
|
name: {
|
|
en: "Return Charge",
|
|
fr: "Charge Retour",
|
|
es: "Carga de Retorno",
|
|
it: "Carica di Ritorno",
|
|
pt: "Carga de Retorno",
|
|
de: "Rückkehrladung"
|
|
},
|
|
|
|
effect: {
|
|
en: "Switch this Pokémon with 1 of your Benched Pokémon. If you do, attach up to 2 Basic Lightning Energy cards from your hand to this Pokémon.",
|
|
fr: "Échangez ce Pokémon contre l'un de vos Pokémon de Banc. Dans ce cas, attachez jusqu'à 2 cartes Énergie Lightning de base de votre main à ce Pokémon.",
|
|
es: "Cambia este Pokémon por uno de tus Pokémon en Banca. Si lo haces, une hasta 2 cartas de Energía Lightning Básica de tu mano a este Pokémon.",
|
|
it: "Scambia questo Pokémon con uno della tua panchina. Se lo fai, assegna a questo Pokémon fino a due carte Energia base Lightning dalla tua mano.",
|
|
pt: "Troque este Pokémon por 1 dos seus Pokémon no Banco. Se fizer isto, ligue até 2 cartas de Energia Lightning Básica da sua mão a este Pokémon.",
|
|
de: "Tausche dieses Pokémon gegen 1 Pokémon auf deiner Bank aus. Wenn du das machst, lege bis zu 2 Basis-Lightning-Energiekarten aus deiner Hand an dieses Pokémon an."
|
|
}
|
|
}, {
|
|
cost: ["Colorless", "Colorless"],
|
|
|
|
name: {
|
|
en: "Thunder Lance",
|
|
fr: "Lance Foudre",
|
|
es: "Asta Trueno",
|
|
it: "Lanciabolide",
|
|
pt: "Estaca do Trovão",
|
|
de: "Donnerlanze"
|
|
},
|
|
|
|
effect: {
|
|
en: "This attack does 40 more damage for each Lightning Energy attached to this Pokémon.",
|
|
fr: "Cette attaque inflige 40 dégâts supplémentaires pour chaque Énergie Lightning attachée à ce Pokémon.",
|
|
es: "Este ataque hace 40 puntos de daño más por cada Energía Lightning unida a este Pokémon.",
|
|
it: "Questo attacco infligge 40 danni in più per ogni Energia Lightning assegnata a questo Pokémon.",
|
|
pt: "Este ataque causa 40 pontos de dano a mais para cada Energia Lightning ligada a este Pokémon.",
|
|
de: "Diese Attacke fügt für jede an dieses Pokémon angelegte Lightning-Energie 40 Schadenspunkte mehr zu."
|
|
},
|
|
|
|
damage: "40+"
|
|
}],
|
|
|
|
retreat: 0,
|
|
regulationMark: "H",
|
|
|
|
variants: {
|
|
normal: false,
|
|
reverse: false
|
|
}
|
|
}
|
|
|
|
export default card
|