import { Card } from '../../../interfaces' import Set from '../HeartGold SoulSilver' const card: Card = { name: { en: "Donphan", fr: "Donphan", }, illustrator: "Kent Kanetsuna", rarity: "Ultra Rare", category: "Pokemon", set: Set, dexId: [ 232, ], hp: 120, types: [ "Fighting", ], evolveFrom: { en: "Phanpy", fr: "Phanpy", }, stage: "Stage1", abilities: [ { type: "Poke-BODY", name: { en: "Exoskeleton", fr: "Exosquelette", }, effect: { en: "Any damage done to Donphan by attacks is reduced by 20 (after applying Weakness and Resistance).", fr: "Tout dégât infligé à Donphan par des attaques est réduit de 20 (après application de la Faiblesse et de la Résistance).", }, }, ], attacks: [ { cost: [ "Fighting", ], name: { en: "Earthquake", fr: "Séisme", }, effect: { en: "Does 10 damage to each of your Benched Pokémon. (Don’t apply Weakness and Resistance for Benched Pokémon.)", fr: "Inflige 10 dégâts à chacun des Pokémon de votre Banc. (N’appliquez ni la Faiblesse ni la Résistance aux Pokémon du Banc.)", }, damage: 60, }, { cost: [ "Fighting", "Fighting", "Fighting", ], name: { en: "Heavy Impact", fr: "Gros impact", }, damage: 90, }, ], weaknesses: [ { type: "Water", value: "×2" }, ], resistances: [ { type: "Lightning", value: "-20" }, ], retreat: 4, suffix: "Prime", variants: { normal: false, reverse: false, holo: true, firstEdition: false } } export default card