import { Card } from '../../../interfaces' import Set from '../Holon Phantoms' const card: Card = { name: { en: "Exeggcute δ", fr: "Noeunoeuf δ ESPÈCES DELTA" }, illustrator: "Atsuko Nishida", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 102, ], hp: 50, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Rollout", fr: "Roulade" }, damage: 10, }, { cost: [ "Fighting", "Colorless", ], name: { en: "Pebble Throw", fr: "Jet de caillou" }, effect: { en: "Choose 1 of your opponent's Benched Pokémon. This attack does 20 damage to that Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", fr: "Choisissez 1 des Pokémon de Banc de votre adversaire. Cette attaque lui inflige 20 dégâts. (Vous ne pouvez pas appliquer la Faiblesse et la Résistance aux Pokémon de Banc.)" }, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], } export default card