import { Card } from '../../../interfaces' import Set from '../Burning Shadows' const card: Card = { name: { en: "Heracross", fr: "Scarhino", }, illustrator: "Shin Nagasawa", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 214, ], hp: 110, types: [ "Grass", ], stage: "Basic", abilities: [ { type: "Ability", name: { en: "Guts", fr: "Cran", }, effect: { en: "If this Pokémon would be Knocked Out by damage from an attack, flip a coin. If heads, this Pokémon is not Knocked Out, and its remaining HP becomes 10.", fr: "Si les dégâts d’une attaque peuvent mettre ce Pokémon K.O., lancez une pièce. Si c’est face, ce Pokémon n’est pas mis K.O., mais il n’a plus que 10 PV.", }, }, ], attacks: [ { cost: [ "Grass", "Grass", ], name: { en: "Pitch", fr: "Lancer", }, effect: { en: "Your opponent switches their Active Pokémon with 1 of their Benched Pokémon.", fr: "Votre adversaire échange son Pokémon Actif avec l’un de ses Pokémon de Banc.", }, damage: 50, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], retreat: 2, } export default card