import { Card } from '../../../interfaces' import Set from '../Forbidden Light' const card: Card = { name: { en: "Cubone", fr: "Osselait", }, illustrator: "sowsow", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 104, ], hp: 60, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Burdensome Bone", fr: "Os Pesant", }, effect: { en: "This Pokémon can't attack during your next turn.", fr: "Ce Pokémon ne peut pas attaquer pendant votre prochain tour.", }, damage: 40, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], retreat: 2, } export default card