import { Card } from '../../../interfaces' import Set from '../Dragon' const card: Card = { name: { en: "Bagon", fr: "Draby" }, illustrator: "Mitsuhiro Arita", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 371, ], hp: 50, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Water", ], name: { en: "Paralyzing Gaze", fr: "Regard paralysant" }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Paralysé." }, }, { cost: [ "Fire", "Colorless", ], name: { en: "Combustion", fr: "Fournaise" }, damage: 20, }, ], weaknesses: [ { type: "Colorless", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-30" }, { type: "Fire", value: "-30" }, ], } export default card