import { Card } from '../../../interfaces' import Set from '../Dragon' const card: Card = { name: { en: "Bagon", fr: "Draby", de: "Kindwurm" }, 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", de: "Paralyzing Gaze" }, 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é.", de: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed." }, }, { cost: [ "Fire", "Colorless", ], name: { en: "Combustion", fr: "Fournaise", de: "Combustion" }, damage: 20, }, ], weaknesses: [ { type: "Colorless", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-30" }, { type: "Fire", value: "-30" }, ], } export default card