import { Card } from '../../../interfaces' import Set from '../Arceus' const card: Card = { name: { en: "Bagon", }, illustrator: "Naoyo Kimura", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 371, ], types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Smash Kick", }, damage: 10, }, { cost: [ "Fire", "Colorless", ], name: { en: "Super Singe", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Burned.", }, damage: 20, }, ], weaknesses: [ { type: "Colorless", value: "+10" }, ], retreat: 1, } export default card