import { Card } from '../../../interfaces' import Set from '../Ultra Prism' const card: Card = { name: { en: "Buneary", fr: "Laporeille", }, illustrator: "Kagemaru Himeno", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 427, ], hp: 60, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Weak Kneed", fr: "Genoux Tremblants", }, effect: { en: "If the Defending Pokémon tries to attack during your opponent's next turn, your opponent flips a coin. If tails, that attack does nothing.", fr: "Si le Pokémon Défenseur essaie d’attaquer pendant le prochain tour de votre adversaire, ce dernier lance une pièce. Si c’est pile, son attaque ne fait rien.", }, }, { cost: [ "Colorless", ], name: { en: "Skip", fr: "Sautiller", }, damage: 10, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], retreat: 1, } export default card