import { Card } from '../../../interfaces' import Set from '../Aquapolis' const card: Card = { name: { en: "Donphan", }, illustrator: "Mitsuhiro Arita", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 232, ], hp: 80, types: [ "Fighting", ], evolveFrom: { en: "Phanpy", }, stage: "Stage1", attacks: [ { cost: [ "Fighting", ], name: { en: "Earthquake", }, effect: { en: "Does 10 damage to each of your Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", }, damage: 30, }, { cost: [ "Colorless", "Colorless", "Colorless", ], name: { en: "Double Stab", }, effect: { en: "Flip 2 coins. This attack does 40 damage times the number of heads.", }, damage: 40, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], resistances: [ { type: "Lightning", value: "-30" }, ], } export default card