import { Card } from '../../../interfaces' import Set from '../Dragon' const card: Card = { name: { en: "Pineco", }, illustrator: "Hajime Kusajima", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 204, ], hp: 40, types: [ "Grass", ], stage: "Basic", abilities: [ { type: "Poke-BODY", name: { en: "Exoskeleton", }, effect: { en: "Any damage done to Pineco by attacks is reduced by 10. (after applying Weakness and Resistance).", }, }, ], attacks: [ { cost: [ "Grass", "Colorless", ], name: { en: "Tackle", }, damage: 20, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], } export default card