1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 00:29:19 +00:00

feat: Add Fusion Strike (#162)

Signed-off-by: Avior <github@avior.me>
This commit is contained in:
2021-11-12 12:42:38 +01:00
committed by GitHub
parent a0792cd72f
commit 2be1cb2be9
285 changed files with 16346 additions and 0 deletions

View File

@ -0,0 +1,90 @@
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: "Ultra Rare",
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"
},
damage: "30+",
effect: {
en: "This attack does 30 more damage for each Lightning Energy attached to all of your Pokémon.",
fr: "Cette attaque inflige 30 dégâts supplémentaires pour chaque Énergie Lightning attachée à tous vos Pokémon.",
es: "Este ataque hace 30 puntos de daño más por cada Energía Lightning unida a todos tus Pokémon.",
it: "Questo attacco infligge 30 danni in più per ogni Energia Lightning assegnata ai tuoi Pokémon.",
de: "Diese Attacke fügt für jede an alle deine Pokémon angelegte Lightning-Energie 30 Schadenspunkte mehr zu."
}
}, {
cost: ["Lightning", "Lightning", "Colorless"],
name: {
en: "Max Bolt",
fr: "Foudromax",
es: "Maxirrelámpago",
it: "Dynafulmine",
de: "Dyna-Elektroblitz"
},
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."
}
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card