import { Card } from '../../../interfaces' import Set from '../Darkness Ablaze' const card: Card = { name: { en: "Rookidee", }, illustrator: "Hitoshi Ariga", rarity: "Common", category: "Pokemon", set: Set, hp: 60, types: [ "Colorless", ], attacks: [ { cost: [ "Colorless", ], name: { en: "Pluck", }, effect: { en: "Before doing damage, discard all Pokémon Tools from your opponent’s Active Pokémon.", }, damage: 10, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-30" }, ], retreat: 1, } export default card