import { Card } from '../../../interfaces' import Set from '../BREAKthrough' const card: Card = { name: { en: "Cubone", fr: "Osselait", }, illustrator: "Sumiyoshi Kizuki", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 104, ], hp: 70, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Fighting", "Colorless", ], name: { en: "Whimsy Tackle", fr: "Charge Bizarre", }, effect: { en: "Flip a coin. If tails, this attack does nothing.", fr: "Lancez une pièce. Si c'est pile, cette attaque ne fait rien.", }, damage: 50, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], retreat: 2, } export default card