mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
63 lines
1.3 KiB
TypeScript
63 lines
1.3 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Stellar Crown"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Vikavolt",
|
|
fr: "Lucanon",
|
|
es: "Vikavolt",
|
|
it: "Vikavolt",
|
|
pt: "Vikavolt",
|
|
de: "Donarion"
|
|
},
|
|
|
|
rarity: "Uncommon",
|
|
category: "Pokemon",
|
|
hp: 160,
|
|
types: ["Lightning"],
|
|
stage: "Stage2",
|
|
|
|
attacks: [{
|
|
cost: ["Lightning"],
|
|
|
|
name: {
|
|
en: "Volt Switch",
|
|
fr: "Change-Éclair",
|
|
es: "Voltiocambio",
|
|
it: "Invertivolt",
|
|
pt: "Troca Elétrica",
|
|
de: "Voltwechsel"
|
|
},
|
|
|
|
effect: {
|
|
en: "Switch this Pokémon with 1 of your Benched Lightning Pokémon.",
|
|
fr: "Échangez ce Pokémon contre l'un de vos Pokémon Lightning de Banc.",
|
|
es: "Cambia este Pokémon por uno de tus Pokémon Lightning en Banca.",
|
|
it: "Scambia questo Pokémon con un Pokémon Lightning della tua panchina.",
|
|
pt: "Troque este Pokémon por 1 dos seus Pokémon Lightning no Banco.",
|
|
de: "Tausche dieses Pokémon gegen 1 Lightning-Pokémon auf deiner Bank aus."
|
|
},
|
|
|
|
damage: 90
|
|
}, {
|
|
cost: ["Lightning", "Lightning", "Colorless", "Colorless"],
|
|
|
|
name: {
|
|
en: "Sparking Strike",
|
|
fr: "Frappe Étincelante",
|
|
es: "Golpe Chispeante",
|
|
it: "Colpo Scintilla",
|
|
pt: "Golpe Cintilante",
|
|
de: "Funkenschlag"
|
|
},
|
|
|
|
damage: 240
|
|
}],
|
|
|
|
retreat: 1,
|
|
regulationMark: "H"
|
|
}
|
|
|
|
export default card |