import { Card } from "../../../interfaces" import Set from "../Wisdom of Sea and Sky" const card: Card = { set: Set, name: { en: "Togetic" }, illustrator: "Atsuko Nishida", rarity: "Two Diamond", category: "Pokemon", hp: 90, types: ["Psychic"], evolveFrom: { en: "Togepi" }, description: { en: "They say that it will appear before kindhearted,\ncaring people and shower them with happiness." }, stage: "Stage1", attacks: [{ name: { en: "Speed Dive" }, damage: 30, cost: ["Colorless", "Colorless"] }], weaknesses: [{ type: "Metal", value: "+20" }], retreat: 1 } export default card