import { Card } from '../../../interfaces' import Set from '../Promos' const card: Card = { name: { en: "Rockruff", }, illustrator: "match", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 744, ], hp: 60, types: [ "Fightning", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Tackle", }, damage: 10, }, { cost: [ "Fightning", "Colorless", ], name: { en: "Rock Throw", }, damage: 20, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], } export default card