import { Card } from '../../../interfaces' import Set from '../Roaring Skies' const card: Card = { name: { en: "Bagon", fr: "Draby", }, illustrator: "kirisAki", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 371, ], hp: 60, types: [ "Dragon", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Leer", fr: "Groz'Yeux", }, effect: { en: "Flip a coin. If heads, your opponent’s Active Pokémon is now Paralyzed.", fr: "Lancez une pièce. Si c'est face, le Pokémon Actif de votre adversaire est maintenant Paralysé.", }, }, { cost: [ "Fire", "Water", ], name: { en: "Almost Flight", fr: "Tentative d'Envol", }, effect: { en: "This Pokémon does 10 damage to itself.", fr: "Ce Pokémon s'inflige 10 dégâts.", }, damage: 30, }, ], weaknesses: [ { type: "Fairy", value: "×2" }, ], retreat: 1, } export default card