import { Card } from "../../../interfaces" import Set from "../Wisdom of Sea and Sky" const card: Card = { set: Set, name: { en: "Donphan ex" }, illustrator: "PLANETA Yamashita", rarity: "Four Diamond", category: "Pokemon", hp: 160, types: ["Fighting"], evolveFrom: { en: "Phanpy" }, stage: "Stage1", suffix: "EX", attacks: [{ name: { en: "Gigantic Press" }, damage: 50, cost: ["Fighting"], effect: { en: "If this Pokémon has at least 2 extra {F} Energy attached, this attack does 60 more damage." } }], weaknesses: [{ type: "Grass", value: "+20" }], retreat: 3 } export default card