import { Card } from '../../../interfaces' import Set from '../Legendary Treasures' const card: Card = { name: { en: "Genesect", }, illustrator: "Ayaka Yoshida", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 649, ], hp: 110, types: [ "Grass", ], stage: "Basic", attacks: [ { cost: [ "Grass", ], name: { en: "Slash", }, damage: 20, }, { cost: [ "Colorless", "Colorless", "Colorless", "Colorless", ], name: { en: "Gaia Blaster", }, effect: { en: "Does 20 more damage for each Grass Energy attached to this Pokémon.", }, damage: 50, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], retreat: 1 } export default card