import { Card } from '../../../interfaces' import Set from '../Deoxys' const card: Card = { name: { en: "Bagon", }, illustrator: "Takao Unno", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 371, ], hp: 50, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Fire", ], name: { en: "Singe", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Burned.", }, }, { cost: [ "Water", ], name: { en: "Doubleslap", }, effect: { en: "Flip 2 coins. This attack does 10 damage times the number of heads.", }, damage: 10, }, ], weaknesses: [ { type: "Colorless", value: "×2" }, ], resistances: [ { type: "Fire", value: "-30" }, { type: "Fighting", value: "-30" }, ], } export default card