import { Card } from "../../../interfaces" import Set from "../Space-Time Smackdown" const card: Card = { set: Set, name: { en: "Kricketune" }, illustrator: "Naoyo Kimura", rarity: "One Diamond", category: "Pokemon", hp: 90, types: ["Grass"], evolveFrom: { en: "Kricketot" }, description: { en: "By allowing its cry to resonate in the hollow of its belly, it produces a captivating sound." }, stage: "Stage1", attacks: [{ name: { en: "Entrancing Melody" }, damage: 50, cost: ["Grass", "Colorless"], effect: { en: "Your opponent's Active Pokémon is now Confused." } }], weaknesses: [{ type: "Fire", value: "+20" }], retreat: 1 } export default card