import { Card } from '../../../interfaces' import Set from '../Sword & Shield' const card: Card = { name: { en: "Boltund", fr: "Fulgudog", }, illustrator: "Kouki Saitou", rarity: "Rare", category: "Pokemon", set: Set, hp: 120, types: [ "Lightning", ], evolveFrom: { en: "Yamper", fr: "Voltoutou", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Bite", fr: "Morsure", }, damage: 50, }, { cost: [ "Lightning", "Lightning", "Colorless", ], name: { en: "Electrodash", fr: "Sprint Électrique", }, effect: { en: "During your next turn, this Pokémon can't attack.", fr: "Pendant votre prochain tour, ce Pokémon ne peut pas attaquer.", }, damage: 160, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], } export default card