import { Card } from '../../../interfaces' import Set from '../Promos' const card: Card = { name: { en: "Garchomp-EX", fr: "Carchacrok-EX", }, illustrator: "Ryo Ueda", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 445, ], hp: 170, types: [ "Dragon", ], suffix: "EX", attacks: [ { cost: [ "Fightning", "Colorless", ], name: { en: "Dual Chop", fr: "Double Baffe", }, effect: { en: "Flip 2 coins. This attack does 30 damage times the number of heads.", fr: "Lancez 2 pièces. Cette attaque inflige 30 dégâts multipliés par le nombre de côtés face.", }, damage: 30, }, { cost: [ "Water", "Fightning", "Colorless", ], name: { en: "Power Blast", fr: "Violente Déflagration", }, effect: { en: "Discard an Energy attached to this Pokémon.", fr: "Défaussez une Énergie attachée à ce Pokémon.", }, damage: 120, }, ], weaknesses: [ { type: "Fairy", value: "×2" }, ], retreat: 2, } export default card