import { Card } from '../../../interfaces' import Set from '../POP Series 3' const card: Card = { name: { en: "Forretress", }, illustrator: "Midori Harada", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 205, ], hp: 70, types: [ "Grass", ], stage: "Stage1", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Tackle", }, damage: 20, }, { cost: [ "Grass", "Grass", "Colorless", ], name: { en: "Toxic", }, effect: { en: "The Defending Pokémon is now Poisoned. Put 2 damage counters instead of 1 on the Defending Pokémon between turns.", }, damage: 20, }, ], weaknesses: [ { type: "Fire" }, ], retreat: 2, variants: { normal: false, reverse: false, holo: false, firstEdition: false } } export default card