1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-25 09:29:55 +00:00

95 lines
2.3 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

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 "../Fusion Strike"
const card: Card = {
set: Set,
name: {
en: "Boltund VMAX",
fr: "Fulgudog VMAX",
es: "Boltund VMAX",
it: "Boltund VMAX",
pt: "Boltund VMAX",
de: "Bellektro VMAX"
},
rarity: "Holo Rare VMAX",
category: "Pokemon",
hp: 320,
types: ["Lightning"],
evolveFrom: {
en: "Boltund V",
fr: "Fulgudog-V",
es: "Boltund V",
it: "Boltund-V",
pt: "Boltund V",
de: "Bellektro-V"
},
stage: "VMAX",
retreat: 2,
regulationMark: "E",
illustrator: "PLANETA Tsuji",
attacks: [{
cost: ["Lightning", "Colorless"],
name: {
en: "Bolt Storm",
fr: "Tempête Éclair",
es: "Tormenta de Relámpagos",
it: "Fulmintempesta",
de: "Elektrosturm",
pt: "Tempestade Relampejante"
},
damage: "30+",
effect: {
en: "This attack does 30 more damage for each {L} Energy attached to all of your Pokémon.",
fr: "Cette attaque inflige 30 dégâts supplémentaires pour chaque Énergie {L} attachée à tous vos Pokémon.",
es: "Este ataque hace 30 puntos de daño más por cada Energía {L} unida a todos tus Pokémon.",
it: "Questo attacco infligge 30 danni in più per ogni Energia {L} assegnata ai tuoi Pokémon.",
de: "Diese Attacke fügt für jede an alle deine Pokémon angelegte {L}-Energie 30 Schadenspunkte mehr zu.",
pt: "Este ataque causa 30 pontos de dano a mais para cada Energia {L} ligada a todos os seus Pokémon."
}
}, {
cost: ["Lightning", "Lightning", "Colorless"],
name: {
en: "Max Bolt",
fr: "Foudromax",
es: "Maxirrelámpago",
it: "Dynafulmine",
de: "Dyna-Elektroblitz",
pt: "Corisco Max"
},
damage: 230,
effect: {
en: "During your next turn, this Pokémon can't use Max Bolt.",
fr: "Pendant votre prochain tour, ce Pokémon ne peut pas utiliser Foudromax.",
es: "Durante tu próximo turno, este Pokémon no puede usar Maxirrelámpago.",
it: "Durante il tuo prossimo turno, questo Pokémon non può usare Dynafulmine.",
de: "Während deines nächsten Zuges kann dieses Pokémon Dyna-Elektroblitz nicht einsetzen.",
pt: "Durante o seu próximo turno, este Pokémon não poderá usar Corisco Max."
}
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card