import { Card } from '../../../interfaces' import Set from '../Shining Legends' const card: Card = { name: { en: "Hoopa", fr: "Hoopa", }, illustrator: "TOKIYA", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 720, ], hp: 120, types: [ "Darkness", ], stage: "Basic", abilities: [ { type: "Ability", name: { en: "Scoundrel Guard", fr: "Protection Malicieuse", }, effect: { en: "Prevent all effects of attacks, including damage, done to this Pokémon by your opponent's Pokémon-GX or Pokémon-EX.", fr: "Évitez tous les effets d’attaques, y compris les dégâts, infligés à ce Pokémon par les Pokémon-GX ou les Pokémon-EX de votre adversaire.", }, }, ], attacks: [ { cost: [ "Darkness", "Colorless", "Colorless", ], name: { en: "Super Psy Bolt", fr: "Super Psy", }, damage: 80, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Psychic", value: "-20" }, ], retreat: 2, } export default card