import { Card } from '../../../interfaces' import Set from '../Darkness Ablaze' const card: Card = { name: { en: "Hoopa", }, illustrator: "so-taro", rarity: "Rare", category: "Pokemon", set: Set, hp: 120, types: [ "Darkness", ], attacks: [ { cost: [ "Darkness", ], name: { en: "Assault Gate", }, effect: { en: "If this Pokémon didn’t move from the Bench to the Active Spot this turn, this attack does nothing. This attack’s damage isn’t affected by Weakness.", }, damage: 90, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], retreat: 2, } export default card