1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon 2be1cb2be9
feat: Add Fusion Strike (#162)
Signed-off-by: Avior <github@avior.me>
2021-11-12 12:42:38 +01:00

60 lines
978 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Fusion Strike"
const card: Card = {
set: Set,
name: {
en: "Boltund V",
fr: "Fulgudog V",
es: "Boltund V",
it: "Boltund V",
pt: "Boltund V",
de: "Bellektro V"
},
rarity: "Ultra Rare",
category: "Pokemon",
hp: 200,
types: ["Lightning"],
stage: "Basic",
suffix: "V",
retreat: 1,
regulationMark: "E",
illustrator: "Eske Yoshinob",
attacks: [{
cost: ["Lightning"],
name: {
en: "Smash Turn"
},
damage: 30,
effect: {
en: "You may switch this Pokémon with 1 of your Benched Pokémon."
}
}, {
cost: ["Lightning", "Lightning", "Colorless"],
name: {
en: "Electrobullet"
},
damage: 120,
effect: {
en: "This attack also does 30 damage to 1 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)"
}
}],
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card