import { Card } from '../../../interfaces' import Set from '../Undaunted' const card: Card = { name: { en: "Pineco", fr: "Pomdepik", de: "Tannza" }, illustrator: "Kagemaru Himeno", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 204, ], hp: 60, types: [ "Grass", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Rollout", fr: "Roulade", de: "Walzer" }, damage: 10, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], retreat: 2, description: { en: "It hangs and waits for flying insect prey to come near. It does not move about much on its own." }, variants: { normal: true, reverse: true, holo: false, firstEdition: false } } export default card