import { Card } from '../../../interfaces' import Set from '../Promos' const card: Card = { name: { en: "Blacephalon", }, illustrator: "Shin Nagasawa", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 806, ], hp: 110, types: [ "Psychic", ], stage: "Basic", attacks: [ { cost: [ "Psychic", "Colorless", ], name: { en: "Fireworks Bomb", }, effect: { en: "Put 4 damage counters on your opponent's Pokémon in any way you like. If your opponent has exactly 3 Prize cards remaining, put 12 damage counters on them instead.", }, }, ], weaknesses: [ { type: "Darkness", value: "×2" }, ], resistances: [ { type: "Fightning", value: "-20" }, ], } export default card