import { Card } from '../../../interfaces' import Set from '../Promos' const card: Card = { name: { en: "Rockruff", }, illustrator: "Hideki Ishikawa", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 744, ], hp: 50, types: [ "Fightning", ], stage: "Basic", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Bite", }, damage: 30, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], } export default card