import { Card } from '../../../interfaces' import Set from '../Unbroken Bonds' const card: Card = { name: { en: "Rattata", fr: "Rattata", }, illustrator: "Eri Yamaki", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 19, ], hp: 30, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Gnaw", fr: "Ronge", }, damage: 30, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], retreat: 1, } export default card