import { Card } from '../../../interfaces' import Set from '../Delta Species' const card: Card = { name: { en: "Cubone", }, illustrator: "Yukiko Baba", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 104, ], hp: 50, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Beat", }, damage: 10, }, { name: { en: "Rage", }, effect: { en: "Does 10 damage plus 10 more damage for each damage counter on Cubone.", }, damage: 10, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], } export default card