import { Card } from '../../../interfaces' import Set from '../Champion\'s Path' const card: Card = { name: { en: "Rockruff", fr: "Rocabot" }, illustrator: "Naoyo Kimura", rarity: "Common", category: "Pokemon", set: Set, hp: 70, types: [ "Fighting", ], attacks: [ { cost: [ "Colorless", ], name: { en: "Collect", fr: "Collecte" }, effect: { en: "Draw a card.", fr: "Piochez une carte." }, }, { cost: [ "Fighting", "Colorless", ], name: { en: "Bite", fr: "Morsure" }, damage: 20, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], retreat: 1, } export default card