import { Card } from "../../../interfaces" import Set from "../Wisdom of Sea and Sky" const card: Card = { set: Set, name: { en: "Pineco" }, illustrator: "Suwama Chiaki", rarity: "One Diamond", category: "Pokemon", hp: 60, types: ["Grass"], description: { en: "It looks just like a pinecone. Its shell protects it\nfrom bird Pokémon that peck it by mistake." }, stage: "Basic", attacks: [{ name: { en: "Ram" }, damage: 30, cost: ["Colorless", "Colorless"] }], weaknesses: [{ type: "Fire", value: "+20" }], retreat: 1 } export default card