import { Card } from '../../../interfaces' import Set from '../Arceus' const card: Card = { name: { en: "Buneary", }, illustrator: "sui", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 427, ], types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Bunny Hop", }, effect: { en: "Choose 1 of your opponent's Pokémon that doesn't have any damage counters on it. This attack does 20 damage to that Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", }, }, ], weaknesses: [ { type: "Fighting", value: "+10" }, ], retreat: 1, } export default card