import { Card } from "../../../interfaces" import Set from "../Celestial Guardians" const card: Card = { set: Set, name: { en: "Maractus" }, illustrator: "Kagemaru Himeno", rarity: "One Diamond", category: "Pokemon", hp: 90, types: ["Grass"], description: { en: "With noises that could be mistaken for the rattles of maracas, it creates an upbeat rhythm, startling bird Pokémon and making them fly off in a hurry." }, stage: "Basic", attacks: [{ name: { en: "Sting" }, damage: 40, cost: ["Grass", "Colorless"] }], weaknesses: [{ type: "Fire", value: "+20" }], retreat: 1 } export default card