import { Card } from '../../../interfaces' import Set from '../XY' const card: Card = { name: { en: "Chesnaught", fr: "Blindépique", }, illustrator: "5ban Graphics", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 652, ], hp: 160, types: [ "Grass", ], evolveFrom: { en: "Quilladin", fr: "Boguérisse", }, stage: "Stage2", abilities: [ { type: "Ability", name: { en: "Spiky Shield", fr: "Pico-Défense", }, effect: { en: "If this Pokémon is your Active Pokémon and is damaged by an opponent’s attack (even if this Pokémon is Knocked Out), put 3 damage counters on the Attacking Pokémon.", fr: "Si ce Pokémon est votre Pokémon Actif et qu’il subit les dégâts d’une attaque de votre adversaire (même si ce Pokémon est mis K.O.), placez 3 marqueurs de dégâts sur le Pokémon Attaquant.", }, }, ], attacks: [ { cost: [ "Grass", "Grass", "Colorless", "Colorless", ], name: { en: "Touchdown", fr: "Touchdown", }, effect: { en: "Heal 20 damage from this Pokémon.", fr: "Soignez 20 dégâts à ce Pokémon.", }, damage: 90, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], retreat: 4, } export default card